4

I am a student and I often encounter these type of equations:

$$\sqrt{x^2 + (y-2)^2} + \sqrt{x^2 + (y+2)^2} = 6$$

I usually solve these by taking one term ($\sqrt{x^2 + (y-2)^2}$ for example) to the right hand side but this seems to take more time. Please suggest me some methods which can help me solve these types of problem quickly.

Thanks

caverac
  • 19,345

4 Answers4

8

The left hand side of this equation us equivalent to the distance from the point (x, y) and the point (0, 2) added to the distance from the point (x, y) and the point (0, -2). If these distances add to 6, then we can see that the solution forms an ellipse with centre (0, 0) foci (0, 2), (0, -2). By solving for the points where the distance from both of the foci is 3 we get the vertices at $(\sqrt 5, 0)$, $(-\sqrt5, 0)$, $(0, 3)$, $(0, -3)$. So the equation of the ellipse and hence the solution is given by: $$\frac{x^2}{5}+\frac{y^2}{9} = 1$$

S. Sharma
  • 543
  • 2
  • 14
Peter Foreman
  • 19,947
4

Use

$$\sqrt a+\sqrt b=c$$ then

$$a+2\sqrt{ab}+b=c^2$$

then

$$4ab=(c^2-a-b)^2=c^4-2c^2(a+b)+(a+b)^2$$

and finally

$$c^4-2c^2(a+b)+(a-b)^2=0.$$


In your case,

$$1296-144(x^2+y^2+4)+64y^2=0$$

or

$$\left(\frac x{\sqrt5}\right)^2+\left(\frac y3\right)^2=1,$$ which is a centered, axis-aligned ellipse.

3

Denote: $$\begin{cases}x^2 + (y-2)^2=t^2 \\ x^2+(y+2)^2=t^2+8y\end{cases}.$$ Then: $$\sqrt{x^2 + (y-2)^2} + \sqrt{x^2 + (y+2)^2} = 6 \Rightarrow \\ t+\sqrt{t^2+8y}=6 \Rightarrow \\ t^2+8y=36-12t+t^2 \Rightarrow \\ t=\frac{9-2y}{3}.$$ Plug it into the first equation: $$x^2+(y-2)^2=\left(\frac{9-2y}{3}\right)^2 \Rightarrow \\ 9x^2+9y^2-36y+36=81-36y+4y^2 \Rightarrow \\ 9x^2+5y^2=45 \Rightarrow \\ \frac{x^2}{5}+\frac{y^2}{9}=1.$$

farruhota
  • 31,482
2

A nice way of doing problems like these is taking advantage of our knowledge of the factorization of difference of squares.

Given that $$\begin{align}\sqrt{x^2 +(y-2)^2} + \sqrt{x^2+(y+2)^2} &= 6 &[1]\\ \end{align}$$ and that $$\begin{align}(x^2 +(y-2)^2) - (x^2+(y+2)^2) &= -8y &[2]\\ \end{align}$$

we have (by $\frac{[2]}{[1]}$) $$\begin{align}\sqrt{x^2 +(y-2)^2} - \sqrt{x^2+(y+2)^2} = \frac{-8y}{6} &= -\frac{4}{3}y &[3]\\ \end{align}$$

Adding $[1]$ and $[3]$ gives us $$\begin{align} 2\sqrt{x^2 +(y-2)^2} &= 6-\frac{4}{3}y &[4]\\ 4(x^2 +(y-2)^2) &= \bigg(6-\frac{4}{3}y\bigg)^2\\ 4x^2 +4y^2-16y+16 &= \frac{16}{9}y^2-16y+36\\ x^2 +y^2+4 &= \frac{4}{9}y^2+9\\ x^2 +\frac{5}{9}y^2 &= 5\\ \frac{x^2}{5} +\frac{y^2}{9} &= 1\\ \end{align}$$

John Joy
  • 7,790