the biggest thing to remember with logarithms is that they "undo" exponentiation. Treat exponentiation and logarithms together they way you would treat multiplication and division, or addition and subtraction.
Here are the important rules to remember:
loga (ab) = b
aloga(b) = b
those are the only formulas we need for this question.
5*11n-2 = 59
11n-2 = 59/5
log11( 11n-2 ) = log11( 59/5 )
n - 2 = log11( 59/5 )
n = log11( 59/5 ) + 2
if you want to change to loge (usually written as just log), you can use this "change of base" formula:
logb(x) = loga(x) / loga(b)
so using that eqution
n = log11( 59/5 ) + 2 = (log(59/5) / log(11)) + 2
here is the second part.
98x-10 = 43
98x = 53
log9(98x) = log9(53)
8x = log9(53)
x = log9(53)/8
x = (log(53)/log(9))/8
x = log(53)/(8*log(9))
(you could simplify this more using the fact that log(9) = log(32) = 2*log(3), but that isnt so important)
if you are curious, here is the reason why the change of base formula is true:
http://mathforum.org/library/drmath/view/70648.html
hope that helps!