How to solve problems involving roots. $\sqrt{(x+3)-4\sqrt{x-1}} + \sqrt{(x+8)-6\sqrt{x-1}} =1$

1.3k Views Asked by At

How to solve problems involving roots. If we square them they may go to fourth degree.There must be some technique to solve this.

$$\sqrt{(x+3)-4\sqrt{x-1}} + \sqrt{(x+8)-6\sqrt{x-1}} =1$$

3

There are 3 best solutions below

0
On

Put $y=\sqrt{x-1}$, getting $x=y^2+1$; thus the equation becomes $$ \sqrt{y^2-4y+4}+\sqrt{y^2-6y+9}=1 $$ which should ring a bell.

It becomes $|y-2|+|y-3|=1$ that can be treated without resorting to squaring; divide it into cases:
If $y<2$, the equation becomes $2-y+3-y=1$, or $2y=4$, that means $y=2$, absurd.
If $2\le y\le 3$, the equation becomes $y-2+3-y=1$, an identity.
If $y>3$, the equation becomes $y-2+y-3=1$, or $2y=6$ and $y=3$, absurd. Therefore the solutions are all the numbers $x$ such that $2\le\sqrt{x-1}\le3$, that is $4\le x-1\le 9$ or $5\le x\le 10$.

4
On

Straight, you can get the following equation :

$$ \sqrt{(2-\sqrt{x-1})^2} + \sqrt{(3-\sqrt{x-1})^2} =1 $$

which leads to the following equation :

$$ |2-\sqrt{x-1}| + |3-\sqrt{x-1}| =1 $$

Then you will have three cases to discuss :

  • case : $\sqrt{x-1} \leq2$ (equivalent to $x\leq5$) :

$\sqrt{x-1} = 2$ then $x = 5$

  • case : $\sqrt{x-1} >2$ and $\sqrt{x-1} <3$ (equivalent to $5<x<10$) :

The equation below can be written : $$ \sqrt{x-1}-2 + 3-\sqrt{x-1} =1 $$ equivalent to : $ 1=1 $

The solutions belongs to $]5,10[$

  • case : $\sqrt{x-1} \geq3$ (equivalent to $x\geq10$) :

$\sqrt{x-1} = 3$ then $x = 10$

The solutions belongs to $[5,10]$

5
On

$$\sqrt{(x+3)-4\sqrt{x-1}} + \sqrt{(x+8)-6\sqrt{x-1}} =1$$
Put x-1 = t^2
so the equation becomes $$\sqrt{t^2+4-4t} + \sqrt{t^2+9-6t} =1$$ complete the squares . EDIT:
My answer was incorrect. Thanks to egreg and Samatix.