Hoe do you differentiate #f(x)=ln(1/x^2) - ln(1/x^3) #?

1 Answer
Nov 12, 2015

By using logarithmic properties to create one natural log, then using #d(ln(u)) = (d(u))/u#

Explanation:

The derivative of a log #ln(u)# is the derivative of #u# divided by #u#. (#(du)/u#)

For the sake of ease, I'm going to change the equation to #f(x) = ln(x^-2) - ln(x^-3)# so that I may use the power rule instead of going through the entirety of the quotient rule. Remember it's better to work smart, not hard.

So we're going to go through each term in the equation and take the derivative of it.

The derivative of #ln(x^-2)# is #(-2x^-3)/x^-2# which simplifies to #-2/x#.

The derivative of #ln(x^-3)# is #(-3x^-4)/x^-3# which simplifies to #-3/x#.

Now that we have our derivatives of each term, let's go back to our equation.

#f(x) = ln(x^-2) - ln(x^-3)#
#f'(x) = d(ln(x^-2)) - d(ln(x^-3))#
#f'(x) = (-2/x) - (-3/x)#
#f'(x) = -2/x + 3/x#
#f'(x) = 1/x#

Now, that is the correct answer, but after finishing this problem, I realized that I worked hard, and not smart. This problem becomes a whole lot easier when we implement the log rules, specifically #ln(a)-ln(b)=ln(a/b)#.

So implementing this...

#ln(1/x^2)-ln(1/x^3) = ln((1/x^2)/(1/x^3)) = ln(x^3/x^2) = ln(x)#

And very simply, the derivative of #ln(x)# is #(1/x)#.