6

If $x,y\in \mathbb{R}$ and $\sqrt{x}+y = 11\;$ and $x+\sqrt{y} = 7$. Then $(x,y) = $

$\underline{\bf{My\;\; Try::}}$ Let $x=a^2$ and $y=b^2$, Then equation is $a+b^2 = 11$ and $a^2+b = 7$.

$(a+b)+(a+b)^2-2ab = 18$ and Now Let $a+b=S$ and $ab=P$, we get $S+S^2-P=18$

Now I did not understand how can I solved it.

Help required

Thanks

juantheron
  • 53,015

2 Answers2

3

HINT:

Assuming $x,y$ are real we have $x=7-\sqrt y\le 7\implies a^2\le 7$

Putting $b=7-a^2,$

$$a+(7-a^2)^2=11\implies a^4-14a^2+a+38=0$$

Observe that $a=2$ is a solution

For the general case, we need to use the formula described here or here

  • What pops up on inspection is x= 4 , y= 9. Also, it seems like we have a system of two parabolas , so at most four solutions. – Alan Oct 18 '13 at 20:27
  • After factoring the quartic, the cubic has 3 real roots, of which only 1 of them is positive, but greater than 3. Hence, there are no more real solutions. – Calvin Lin Oct 18 '13 at 20:39
  • I think this exact system was given to Ramanujan and he solved it on inspection. Was it in "The Man Who Knew Infinity" ? – Alan Oct 18 '13 at 20:41
1

You were on the right track, all you need to do is subtract rather than add. Doing that will give you $(a+b^2)-(a^2+b)=4$

Which can become

$(b^2-a^2)-(b-a)=4=(b-a)(b+a)-(b-a)=(b-a)(b+a-1)$

Since the only way to can obtain 4 by multiplying is either $2*2$ or $4*1$, either

$b-a=2$ and $b+a-1=2$

or

$b-a=1$ and $b+a-1=4$

if $b-a=b+a-1=2$, then $a=1/2$ and $b=5/2$, which means that $(x,y)=(1/4,25/4)$ and that does not satisfy that initial conditions

if $b-a=1$ and $b+a-1=4\implies b+a=5$

then one can easily determine that $b=3$ and $a=2$, which means that $(x,y)=(4,9)$, which satisfies the initial conditions.

  • -1 Why must the factorization only involve integers? Why can't we have $b-a = 0.1$ and $b+a -1 = 40$? So you were just really lucky to have found a solution, and do not know if more solutions exist. – Calvin Lin Oct 18 '13 at 20:32