# Nakafa Learning Content

> For AI agents: use [llms.txt](https://nakafa.com/llms.txt) for the site index. Markdown versions are available by appending `.md` to content URLs or sending `Accept: text/markdown`.

URL: https://nakafa.com/en/subjects/mathematics/exponential-logarithm/radical-form
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/exponential-logarithm/radical-form/en.mdx

Convert fractional exponents to radical form and vice versa. Learn simplification techniques and understand key properties with real-world applications.

---

## Relationship Between Exponents and Radicals

Radical forms and exponents are closely related. When we have a number with a fractional exponent, we can convert it to a radical form.

Consider the following exponential function:

```math
f(x) = 50(0.5)^x
```

This function represents the decay of drug dosage in a patient's body, where $$x$$ is the time needed for the drug to decay by half of its previous dosage.

Visible text: This function represents the decay of drug dosage in a patient's body, where is the time needed for the drug to decay by half of its previous dosage.

If we want to know the amount of dosage that decays after $$30 \text{ minutes}$$, we substitute $$x = 30$$ into the function.

Visible text: If we want to know the amount of dosage that decays after , we substitute into the function.

```math
f(30) = 50(0.5)^{30}
```

For a time of half an hour, we can write the fractional exponent form:

```math
f\left(\frac{1}{2}\right) = 50(0.5)^{\frac{1}{2}}
```

The fractional exponent $$(0.5)^{\frac{1}{2}}$$ is difficult to calculate manually. Therefore, we need an equivalent form.

Visible text: The fractional exponent is difficult to calculate manually. Therefore, we need an equivalent form.

Another form of $$(0.5)^{\frac{1}{2}}$$ is $$\sqrt{0.5}$$. This is what we call a radical form.

Visible text: Another form of is . This is what we call a radical form.

## Definition of Radical Form

The radical form is defined for any rational exponent $$\frac{m}{n}$$, where $$m$$ and $$n$$ are integers and $$n > 0$$:

Visible text: The radical form is defined for any rational exponent , where and are integers and :

```math
a^{\frac{m}{n}} = (\sqrt[n]{a})^m \text{ or} a^{\frac{m}{n}} = \sqrt[n]{a^m}
```

This allows us to convert numbers with fractional exponents to radical form and vice versa.

## Simplifying Radical Forms

Here's an example of simplifying the multiplication of two radical forms:

Simplify the expression $$(2\sqrt{x})(3\sqrt[3]{x})$$ for $$x > 0$$

Visible text: Simplify the expression for

```math
\begin{align}
(2\sqrt{x})(3\sqrt[3]{x}) &= (2x^{\frac{1}{2}})(3x^{\frac{1}{3}}) \\
&= 2 \cdot 3 \cdot x^{\frac{1}{2} + \frac{1}{3}} \\
&= 6x^{\frac{3+2}{6}} \\
&= 6x^{\frac{5}{6}} \\
&= 6\sqrt[6]{x^5}
\end{align}
```

Therefore, the simplified form is $$6x^{\frac{5}{6}}$$ or $$6\sqrt[6]{x^5}$$.

Visible text: Therefore, the simplified form is or .

## Important Property of Radical Forms

It's important to understand that the form $$\sqrt{a+b} = \sqrt{a} + \sqrt{b}$$ is not correct.

Visible text: It's important to understand that the form is not correct.

Let's take the values $$a = 4$$ and $$b = 9$$, then:

Visible text: Let's take the values and , then:

```math
\sqrt{4 + 9} = \sqrt{13} \neq \sqrt{4} + \sqrt{9} = 2 + 3 = 5
```

Another example:

Component: MathContainer
Children:

```math
\sqrt{16 + 9} = \sqrt{25} = 5
```

```math
\sqrt{16} + \sqrt{9} = 4 + 3 = 7
```

Since $$5 \neq 7$$, it's clear that $$\sqrt{a+b} \neq \sqrt{a} + \sqrt{b}$$.

Visible text: Since , it's clear that .