Can anyone provide a link to a proof of the following square root property $\frac{\sqrt{a}}{\sqrt{b}} = \sqrt{\frac{a}{b}}$. Could not find it online anywhere.
-
1Start with $$\frac{\sqrt a}{\sqrt b} = \sqrt{\bigg(\frac{\sqrt a}{\sqrt b}\bigg)^2}$$ and work your way through using axioms. – glowstonetrees Feb 13 '20 at 20:21
-
It is worth mentioning that the property mentioned can only be trusted to work in the case that $a$ and $b$ are both positive reals. Otherwise you'll run into scenarios like $i=\sqrt{\frac{1}{-1}}\neq\frac{\sqrt{1}}{\sqrt{-1}}=-i$ – JMoravitz Feb 13 '20 at 20:24
-
I think if you want a link, it will be https://math.stackexchange.com/questions/3545763/square-root-property-proof – Rob Arthan Feb 13 '20 at 21:10
6 Answers
In the following proof, we will use the following definition of the (principal) square root of a non-negative number:
- For a given real number $p\ge 0$, we say that a real number $q$ is its (principal) square root ($q=\sqrt{p}$), iff $q\ge 0$ and $q^2=p$.
It is possible to prove that such a number $q$ exists (not easily - the proof uses some fundamental properties of real numbers), and is unique (fairly easy), so the above definition allows us to view the square root as a function of non-negative real numbers.
Now, to the proof. Let $a,b\ge 0, b\ne 0$ - real numbers, and let $x=\sqrt{a}, y=\sqrt{b}$. This means that $x,y\ge 0$ and $x^2=a, y^2=b$. Now this implies that $y\ne 0, \frac{x}{y}\ge 0$, and also:
$$\left(\frac{x}{y}\right)^2=\frac{x^2}{y^2}=\frac{a}{b}$$
Therefore, $\frac{x}{y}=\sqrt\frac{a}{b}$. Remembering what $x$ and $y$ were in the first place, we conclude:
$$\frac{\sqrt{a}}{\sqrt{b}}=\sqrt\frac{a}{b}$$.
-
I know this is a stretch, but can I think about this proof analagously to for example proving subtraction commutativity property works when it is expressed as a sum of negative numbers. This $a - b = b -a$ is not true, but $a + (-b) = (-b) + a$ is true. So this is something similar in essence. We are using the opposite operation(exponentiation) property to prove a square root property? – Michael Munta Feb 14 '20 at 09:18
-
@MichaelMunta I think you probably think of a different proof ($-(a+b)=(-a)+(-b)$ and the proof is indeed similar to this one). – Feb 14 '20 at 11:18
Say $a,b\geq 0$. If $x=\sqrt{a}$ and $y= \sqrt{b}$ then $x^2=a$ and $y^2= b$ so $$\Big({x\over y}\Big)^2={x^2\over y^2} = {a\over b}\implies {x\over y} = \sqrt{a\over b}$$
and we are done.
- 90,026
By definition of $\sqrt{\phantom 3}$, and assuming $a\geq0, b>0$, we have that $ \sqrt{\frac ab} $ is the unique non-negative number such that $$ \left(\sqrt{\frac ab}\right)^2=\frac ab $$ (One must, of course, be convinced that this number is indeed unique.) Now note that $$ \left(\frac{\sqrt a}{\sqrt b}\right)^2=\frac{\sqrt a}{\sqrt b}\cdot \frac{\sqrt a}{\sqrt b}=\frac{(\sqrt a)^2}{(\sqrt b)^2}=\frac ab $$ so $\frac{\sqrt a}{\sqrt b}$ fulfills the defining property of $\sqrt{\frac ab}$. They must therefore be equal.
- 199,419
Assuming $a,b\in\mathbb R$, $a\geqslant 0$, and $b>0$, we have \begin{align} \frac{\sqrt a}{\sqrt b} &= \frac{a^{1/2}}{b^{1/2}}\\ &=\frac{e^{\log(a^{1/2})}}{e^{\log(b^{1/2})}}\\ &=\frac{e^{\frac 12\log a}}{e^{\frac12\log b}}\\ &=e^{\frac12\log a - \frac12\log b}\\ &= e^{\frac12 \log\left(\frac ab\right)}\\ &=\left(\frac ab\right)^{1/2}\\ &=\sqrt{\frac ab}. \end{align}
- 36,983
-
2You used that $\frac{a^x}{b^x}=\left(\frac{a}{b}\right)^x$, which is arguably what the OP is asking for a proof of, or at least asking for a proof of the special case of $x=\frac{1}{2}$. This seems circular to me. – JMoravitz Feb 13 '20 at 20:26
-
This is a basic property of exponents. I suppose I could develop it further... – Math1000 Feb 13 '20 at 20:27
By the definition of square-root, $x=\sqrt{y}\hspace{.15cm}$ means that $x^2=y$.
Assuming that $a,b\in\mathbb{R}$ with $a\geq 0$ and $b>0$, then we can simply compute: \begin{align*} \left(\frac{\sqrt{a}}{\sqrt{b}}\right)^2&=\frac{\sqrt{a}}{\sqrt{b}}\cdot \frac{\sqrt{a}}{\sqrt{b}} =\frac{\sqrt{a}\cdot \sqrt{a}}{\sqrt{b}\cdot\sqrt{b}}=\frac{a}{b} \end{align*} Therefore, $\frac{\sqrt{a}}{\sqrt{b}}=\sqrt{\frac{a}{b}}\hspace{.25cm}$
Note that I used the fact that $\frac{a}{b}\cdot \frac{c}{d}=\frac{ac}{bd}$
- 606
- 4
- 9
I think that $$\sqrt\frac{a}{b}=\frac{\sqrt |a|}{\sqrt |b|} $$ Because $$\frac{a}{b}\ge0 $$ But $a\ge0, b\ge0 $ This is only a special case, because we may lose the solution $\frac{a}{b} $ then $ a<0,b<0 $ Therefore, you need to use the module ;)
- 330