What is the equation of the tangent line of #f(x)=x^2-2/x# at #x=1#?
1 Answer
You can do this two ways: Newton's Linearization method, or the "normal" way.
NORMAL WAY
#f'(x) = 2x + 2/(x^2)#
#f'(1) = 2 + 2 = 4#
The tangent line must pass through
#f(1) = 1^2 - 2/1 = -1#
So the tangent line passes through
#(Deltay)/(Deltax) = (y_2 - (-1))/(0 - 1) = 4#
#-4 = y_2 + 1#
#y_2 = -5#
Thus, another point on the tangent line is
LINEARIZATION METHOD
#f_T(a) = f(a) + f'(a)(x-a)#
#color(blue)(f_T(1)) = f(1) + f'(1)(x-1)#
All you need is to plug in
#f(1) = 1^2 - 2/1 = -1#
#f'(1) = 2 + 2/1^2 = 4#
#f_T(1) = -1 + 4(x - 1)#
#= color(blue)(4x - 5)#
This one is a bit more formulaic and might require less thinking for some people. Try whichever method works for you.