What is $x \times \sqrt x$

$\begingroup$

Does $x \times \sqrt x = x$?

I thought it was correct because sqrt is the opposite of multiplying by a number, so I figured by multiplying by a number it would balance out and be that number normally, but when I tried it with my Python calculator using 3 I got:

math.sqrt(3) * 3
5.196152422706632

$\endgroup$ 7

3 Answers

$\begingroup$

In general, no. Since $\sqrt x$ is equal to $x^{1/2}$, your equation is the same as $x^{3/2} = x$, only $x = 0, 1$ work as solutions

$\endgroup$ 3 $\begingroup$

If you want to solve for the equation $$ x\sqrt{x} = x $$ then you have $$ x (\sqrt{x}-1) =0 \Rightarrow x = 0, \text{ or } \sqrt{x}=1, \text{ i.e. } x = 1 $$

$\endgroup$ 0 $\begingroup$

The multiplicative inverse (the "opposite" in your question) of a non-zero number $x$ is its reciprocal, $\frac{1}{x}$. Multiplying these two together gives instead $x \times \frac{1}{x} = 1$.

$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like