While I strongly recommend you follow the above advice for being simpler (especially the advice on logarithm notation; I had some brief mental confusion before I realized you weren't actually trying to take base-10 logarithms of a base-2 exponentiation
), another minor note that sticks out to me and may come up again in another problem is how you moved from step 2 to step 3. It looks like you took the logarithm of both sides in an attempt to simplify. However, here's something to note: while
log(B
C) = C * log(B),
it is absolutely not true in the general case that
log(A * B
C) = C * log(A * B).
The reason is because A * B
C is not the same thing as (A*B)
C. You need to work from the outside in. The former in its simplest form is simply two things multiplied together, so you need to break up that multiplication first. First, you need to split up the multiplication using the product rule:
log(A*B) = log(A) + log(B)
Thus, what you would find is that...
log(A * B
C)
= log(A) + log(B
C)
Product rule = log(A) + C * log(B)
Power ruleNow, let's show the difference with the other equation. If you were trying to handle (A*B)
C, the exponention is the outermost operation, so it needs to be broken first to get to the multiplicative nougat inside.
log (A*B)
C = C * log(A*B)
Power rule = C * (log A + log B)
Product rule = C * log A + C * log B
Multiplicative distribution