1

How do I solve this? What steps? I have been beating my head into the wall all evening.

$$ x^2 + y^2 = \frac{x}{y} + 4 $$

  • You could look at many, many, many implicit differentiation problems posted here (they fill the sidebar on the right, and there is more). Like this one: http://math.stackexchange.com/questions/39414/implicit-differentiation-help?rq=1 –  Apr 28 '15 at 04:36
  • You could also state a problem As it stands, no question has been asked. – zhw. Apr 28 '15 at 05:00

2 Answers2

2

We have:

$$ \frac{d(x^2)}{dx} + \frac{d(y^2)}{dy}\cdot \frac{dy}{dx} = \frac{d( \frac{x}{y})}{dx} + \frac{d(4)}{dx}$$

$$2x+2y\frac{dy}{dx} = \frac{y-x \frac{dy}{dx} }{ y^2} +0$$

Can you finish?


Okay, to finish it up:

$$2y\frac{dy}{dx} - \frac{y-x \frac{dy}{dx} }{ y^2} = -2x $$
Multiplying both sides by $y^2$ $$2y^3\frac{dy}{dx}-(y-x\frac{dy}{dx})=-2xy^2$$ $$2y^3\frac{dy}{dx}+x\frac{dy}{dx}=-2xy^2 +y$$ $$\frac{dy}{dx} \cdot (2y^3+x) =-2xy^2 +y$$ $$\frac{dy}{dx} = \frac{-2xy^2 +y}{2y^3+x}$$

CivilSigma
  • 1,047
  • i got this far earlier (although I wasn't sure i was right) but how do I get dy/dx by itself? that kept tripping me up! this is all new to me, thanks! – Lilly Mei Apr 28 '15 at 04:39
0

We can multiply both sides of the equation $$x^2 + y^2 = \frac{x}{y} + 4 \tag{1}$$ by $y$ to obtain $$x^2y + y^3 = x + 4y \tag{2}$$ Differentiating equation 2 implicitly with respect to $x$ yields \begin{align*} 2xy + x^2y' + 3y^2y' & = 1 + 4y'\\ (x^2 + 3y^2 - 4)y' & = 1 - 2xy\\ y' & = \frac{1 - 2xy}{x^2 + 3y^2 - 4} \tag{3} \end{align*} Let's see why this answer is equivalent to that given by @CivilSigma. If we solve equation 1 for $x/y$, we obtain $$\frac{x}{y} = x^2 + y^2 - 4$$ Hence, \begin{align*} y' & = \frac{1 - 2xy}{x^2 + 3y^2 - 4}\\ & = \frac{1 - 2xy}{x^2 + y^2 - 4 + 2y^2}\\ & = \frac{1 - 2xy}{\dfrac{x}{y} + 2y^2}\\ & = \frac{y - 2xy^2}{x + 2xy^3} \end{align*}

N. F. Taussig
  • 76,571