(1/10)^ x = 100
If we solve this equation by taking log base 10 we get:
x log10 (1/10) = log10(100)
-x = 2
x = -2
Similarly if we solve it by taking log base 1/10 we get:
log 1/10 ((1/10)^x) = log 1/10 (100)
x = -2
The problem comes when the equation becomes an inequality:
(1/10)^ x < 100
Solving via log10:
x log10 (1/10) < log10 (100)
-x < 2
x > -2 (notice the change in inequality because of mult/div by -1 or add/subtract across)
This is the correct solution if we check by substitution e.g. let x = -1, then (1/10) ^ -1 = 10, and 10 < 100
However if we try and solve the inequality taking log base 1/10:
(1/10)^ x < 100
log1/10 ((1/10)^x) < log1/10 (100)
x < -2

Can anyone prove to me why taking a log of a fractional base when dealing with inequalities means we must change the inequality sign? Beyond merely showing what I already did with log10.