I am taking physics right now and I have gotten my problem down to the following equation: $$\sqrt{3.5^2+x^2}-\sqrt{3.0^2+x^2}=0.25$$ I am looking for some guidance as to what to do with the square roots in order to solve for $x$. I know I can't take the square of both sides and I tried to factor and failed.
-
3Hint: multiply by the sum of the radicals. – dxiv Sep 20 '16 at 00:48
-
1Related: http://math.stackexchange.com/questions/52090/how-to-solve-for-x-in-the-equation-4-sqrtx-3-sqrt6x-17-3-with-two?rq=1 – wgrenard Sep 20 '16 at 00:56
-
@wgrenard that was helpful thank you. I got it now. – Bailey B. Sep 20 '16 at 01:03
-
1Alternative hint: Move the left radical to the right side by adding it on both sides. Then square both sides. – Ian L Sep 20 '16 at 01:04
3 Answers
\begin{align} & \sqrt{3.5^2+x^2}-\sqrt{3.0^2+x^2}=.25 \\ & \sqrt{3.5^2+x^2}=.25+\sqrt{3.0^2+x^2} \\ \end{align} Next, square both sides. You get: \begin{align} & 3.5^2+x^2=(.25+\sqrt{3.0^2+x^2})^2 \\ 3.5^2+x^2=.0625+.50(\sqrt{3.0^2+x^2})+3.0^2+x^2 \end{align} Simplifying further gets you: $3.1875=.50(\sqrt{3.0^2+x^2})$, $6.375=\sqrt{3.0^2+x^2}$. $x≈±5.62$
- 374
The following is a shortcut that works for this particular equation.
Multiplying both sides by the sum of the radicals (which is always $\ne 0$) gives:
$$(3.5^2+x^2)-(3.0^2+x^2)=0.25(\sqrt{3.5^2+x^2}+\sqrt{3.0^2+x^2})$$
$$\sqrt{3.5^2+x^2}+\sqrt{3.0^2+x^2} = 13$$
Adding the latter to the original equation gives:
$$2 \sqrt{3.5^2+x^2} = 13.25$$
From there $x^2 = (\frac{13.25}{2})^2 - 3.5^2 = 43.890625 - 12.25 = 31.640625$, thus $x = \pm 5.625$.
- 76,497
The idea is to move the equation's terms around such that one and only one square root appears on one side. Squaring then removes that isolated square root; the other side may still have a square root, but there will be one less overall. Repeat until a polynomial is obtained.
Let $y=x^2$, then (using fractions instead of decimals) we have $$\sqrt{\frac{49}4+y}-\sqrt{9+y}=\frac14$$ $$\sqrt{\frac{49}4+y}=\sqrt{9+y}+\frac14$$ $$\frac{49}4+y=\left(\sqrt{9+y}+\frac14\right)^2=9+y+\frac12\sqrt{9+y}+\frac1{16}$$ $$\frac{49}4-9-\frac1{16}=\frac12\sqrt{9+y}=\frac{51}{16}$$ $$\sqrt{9+y}=\frac{51}{8}$$ $$9+y=\frac{2601}{64}$$ $$y=\frac{2025}{64}$$ $$x=\pm\frac{45}8=\pm5.625$$
- 103,344