Michael K. answered 03/12/21
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Logarithms are fanciful ways to reduce the operation type to allow for manipulating large and small numbers more efficiently.
log10(100) = log10(102) = 2
They reduce exponentiation to multiplication/division and change multiplication/division to addition/subtraction
So,
log(x10y16/z16) can be seen as a multiplication and a division. Multiplication becomes addition and division becomes subtraction...
log(x10y16/z16) = log(x10) + log(y16) - log(z16)
Now exponentiation is reduced (as shown in the example above) by bring down the exponent to become a multiplier.
log(x10y16/z16) = log(x10) + log(y16) - log(z16) = 10log(x) + 16log(y) - 16log(z)
So A = 10, B = 16, and C = -16 when fit to the expression Alog(x) + Blog(y) + Clog(z)