The \color{cyan}{\textnormal{N-th Root}} is essentially repeated division, defined in a way similar to exponentiation. Divides a number by itself n times. It looks like this:
\sqrt[n]{x} = \text{root}
This is read as โThe nth root of xโ, which is equal to the root value.
This states that the nth root of x results in the root. Comparing this to exponentiation yields the following:
\sqrt[\text{exponent}]{\text{power}} = \text{base}
This should illustrate the relationship between the two operations. Exponentiation discovers the power, and thus that can be undone via its inverse operation, the nth root.
There are two special kinds of roots that are very common to mathematics and even more common in applied mathematics. Those are the \color{cyan}{\textnormal{square root}} and the \color{cyan}{\textnormal{cube root}}. The square root is when n=2 and the cube root describes a root such that n=3.
For square roots, you will most commonly see it with the 2 omitted:
\sqrt{x}
This can be spoken as โThe square root of xโ, while \sqrt[3]{x} would be spoken as โthe cube root of xโ.
Even more interesting about roots is the way they can be expressed in exponentiation. For instance,
\sqrt{x} = \sqrt[2]{x} = x^{\frac{1}{2}}
This is crucial! A root is actually just a form of exponentiation! You can therefore represent any nth root using exponents as fractions:
x^{\frac{1}{n}} = \sqrt[n]{x}
This is key information later. You might ask, what about fractions where the numerator isnโt just 1. Well, thatโs when this becomes even more interesting!
It follows that, if the exponent is not just one, then the result of a exponent being a fraction can be simplified to:
x^{\frac{m}{n}} = (\sqrt[n]{x})^m
Extra Credit
Before you ask, an nth root where n=1 is simply an identity. That is, \sqrt[1]{x} = x.
In addition, you could also consider a root where n=0. You could see why mathematically; if you express this as exponentiation, it results in x^{1/0}, which is undefined (division by zero). Conceptually too, this operation does not really make any sense.
| Previous | Next |
|---|---|
| โ 0.2.8: Exponentiation | 0.2.10: Logarithms โ |