Finding the second derivative of a function (implicit differentiation)

876 Views Asked by At

I am not sure if I got the correct answer or not. It was a homework from my textbook, and it does not have answers for even number questions...

Original Function: $x^2y-4x=5$
$\frac{dy}{dx}$ = $\frac{4-2xy}{x^2}$

It seems I got to finding the dy/dx part correctly according to wolfram alpha
Heres the steps to finding $\frac{dy^2}{d^2x}$

  1. $\frac{(x^2)(-2y-2x\frac{dy}{dx}) - ((-2xy+4)(2x))}{x^4}$
  2. $\frac{(x^2)(-2y-2x\frac{4-2xy}{x^2}) - ((-2xy+4)(2x))}{x^4}$
  3. $\frac{(-2x^2y+4x^2y-8x) - (-4x^2y+8x)}{x^4}$
  4. $\frac{6x^2y-16x}{x^4}$
  5. $\frac{6(5+4x)-16x}{x^4}$
  6. $\frac{30+24x-16x}{x^4}$
  7. $\frac{30+8x}{x^4}$ = $\frac{dy^2}{d^2x}$

Can anyone tell me if I did it correctly?

2

There are 2 best solutions below

1
On BEST ANSWER

Hint

You properly obtained by implicit differentiation $$y'(x)=\frac{4-2xy(x)}{x^2}$$ So, take the derivative wrt $x$ and obtain $$y''(x)=\frac{-2 x y'(x)-2 y(x)}{x^2}-\frac{2 (4-2 x y(x))}{x^3}=\frac{2 x \left(y(x)-x y'(x)\right)-8}{x^3}$$ Now, if you want to plug $y'(x)$, just do it.

If I may suggest, remember that it is almost always the first derivative which can be difficult to obtain. Later, chain rule, product and quotient rules are your best friends.

2
On

i have also $y'=\frac{4-2xy}{x^2}$ and by the quotient rule $y''=\frac{(-2y-2xy')x^2-(4-2xy)2x}{x^4}$ plugging $y''$ in the equation above we obtain $y''=\frac{\left(-2y-2x\left(\frac{4-2xy}{x^2}\right)\right)x^2-(4-2xy)2x}{x^4}$ simplifying this we get $y''=\frac{6xy-16}{x^3}$