0

I was just curious about how I could implicitly differentiate $sqrt(x+y) = 3x$ without squaring both sides first. Obviously, if I square both sides first, it becomes "easier" to differentiate and I get:

$dy/dx = 18x-1$

However, whenever I try and implicitly differentiate without squaring both sides first, I get

$dy/dx = 6/(x+y)^{-1/2} -1$

Why is this?

ZERO
  • 35

2 Answers2

2

You would have $$ \frac{d}{dx}(\sqrt{x + y}) = \frac{1}{2}(x + y)^{-\frac{1}{2}}\frac{d}{dx}(x + y). $$

J126
  • 17,451
  • Yeah I see that and then when you simplify $d/dx(x+6)$ you get $dy/dx$. Then you get $dy/dx=6/(x+y)^.5$ when you simplify the whole equation, as I mentioned in the OP. – ZERO Oct 08 '16 at 21:05
  • 2
    @ZERO You should get $y' = 6\sqrt{x+y} - 1$. Which is the same thing as $18x - 1$ since $\sqrt{x+y} = 3x$ – wgrenard Oct 08 '16 at 21:10
  • Oh wow, that makes sense, thanks! – ZERO Oct 08 '16 at 21:19
1

Calling $F(x,y) = \sqrt{x+y} - 3x = 0$ . Then

$$ \frac{dy}{dx} = -\frac{\partial F /\partial x}{\partial F /\partial y}=- \frac{ \frac{1}{2}(x+y)^{-1/2}-3}{\frac{1}{2}(x+y)^{-1/2}}= -1 + 6(x+y)^{1/2} $$

Replacing $(x+y)^{1/2}=3x$ we get

$$ \frac{dy}{dx} = 18x-1$$

leonbloy
  • 63,430