You learn that a radical can be rewritten as a fractional exponent, and somewhere between the blackboard and your notebook the fraction flips. You write \sqrt[4]{16} = 16^{4/1} = 16^4 = 65536 and move on, quietly proud of yourself. Then the answer key says 2, and you wonder what went wrong.

What went wrong is the fraction. The correct rewrite is 16^{1/4}, not 16^{4/1}. The root-index n goes on the bottom of the exponent fraction, and a 1 sits on top. Put the n on top and you are no longer taking a root — you are doing the exact opposite, raising to the n-th power. Same two numbers, wrong slots, and the answer is off by a factor of roughly thirty-two thousand.

This confusion is incredibly common, and it has a clean fix. Once you see why the root goes on the bottom, you will never put it on the top again.

Check with a test case

The fastest way to catch this mistake is to plug in a number you can verify by hand. Take \sqrt[4]{16}. You know this is 2, because 2 \times 2 \times 2 \times 2 = 16. So whichever rewrite is correct, it must produce 2 when you compute it.

Try the wrong guess first: 16^{4/1} = 16^4. That is 16 \times 16 \times 16 \times 16 = 65536. The real answer is 2. Off by a factor of over thirty thousand. This is not a small sign error or a missing constant — the two expressions are in completely different leagues. 16^4 is a six-digit number; \sqrt[4]{16} is a single digit.

Now try the right one: 16^{1/4}. This is "the number whose fourth power is 16", which is 2. Exact match.

The test case does the proof for you. n/1 gives you the wrong continent; 1/n gives you the exact right value. The fraction is 1/n, always.

Why 1/n and not n/1

A root is the inverse of a power. The expression x^n means "start with x and multiply it by itself n times". The expression \sqrt[n]{x} asks the reverse question: "what number, multiplied by itself n times, gives x?"

These are opposite operations. And when you write one operation as x^a and its inverse as x^b, the exponents a and b must be reciprocals of each other. If a = n, then b = 1/n. That is what "reciprocal" means — one is the fraction flipped.

So x^n (the power) and x^{1/n} (the root) sit on opposite sides of this inverse relationship. The 1 on top of the fraction is the clue: it signals "this is the answer to the question, not the n-fold repetition of the operation". When you see a 1 upstairs, your brain should read "root". When you see an n upstairs and nothing else, your brain should read "power".

The algebraic derivation — why 1/n makes the rule work

If you want proof rather than intuition, the laws of exponents force 1/n on you. You have no choice in the matter.

Start with the power-of-a-power law: (x^a)^b = x^{ab}. This rule has to hold for every rational exponent, otherwise the whole notation collapses. Now apply it to \sqrt[n]{x} raised to the n-th power. By the definition of the n-th root, taking the n-th root and then raising to the n-th power gets you back to x:

\left(\sqrt[n]{x}\right)^n = x

Write \sqrt[n]{x} as x^{?}, where ? is the exponent you are trying to find:

\left(x^{?}\right)^n = x^1

Apply the power-of-a-power law on the left:

x^{? \cdot n} = x^1

For the two sides to be equal, the exponents must match: ? \cdot n = 1. Divide both sides by n: ? = 1/n.

The exponent is forced to be 1/n. It is not a convention, not a teacher's choice, not a quirk of notation. It is the only value that keeps the laws of exponents alive. Put n on top instead of 1, and the rule \left(\sqrt[n]{x}\right)^n = x breaks immediately.

A memorable pairing

Here is the mnemonic that saves you from ever making this mistake again: "1 on top, root on bottom". Write the fractional exponent with a 1 upstairs and the root-index downstairs.

Some teachers prefer a slightly richer version: "top tells power, bottom tells root". In x^{1/n}, the top 1 says "raise to the first power" — which does nothing, leaves the number alone — and the bottom n says "take the n-th root". So x^{1/n} reads as "the n-th root of x, raised to the power 1", which is just the n-th root of x.

This "top = power, bottom = root" reading generalises to any fraction. That is the next section.

The general case a^{p/q}

Once you are clear that the root is on the bottom, the full rational exponent a^{p/q} falls out immediately. Top p is the power; bottom q is the root.

a^{p/q} = \sqrt[q]{a^p} = \left(\sqrt[q]{a}\right)^p

Both orderings give the same value for positive a. You can raise to the p-th power first and then take the q-th root, or take the q-th root first and then raise to the p-th power. The root-index q always sits on the bottom, regardless of order.

For a concrete example, 8^{2/3} has top 2 (the power) and bottom 3 (the root). Root first: \sqrt[3]{8} = 2, then 2^2 = 4. Power first: 8^2 = 64, then \sqrt[3]{64} = 4. Same answer, and in both routes the 3 on the bottom is doing its job as the cube-root index.

Worked examples

Here are four more, each with the wrong guess so you can feel the size of the error.

How the misconception arises

Students usually remember the right structure — "the radical becomes a fraction in the exponent" — but forget which number goes where. Under exam pressure, the brain reaches for "put the visible number on top", and since the n in \sqrt[n]{x} is the conspicuous number, up it goes.

The fix is twofold. First, commit the memory trick: 1 up, n down. Second, whenever you have a moment of doubt, plug in a concrete value — a perfect square, a perfect cube — and check which placement gives the right answer. A ten-second sanity check at \sqrt[3]{8} or \sqrt[4]{16} rescues you from an entire wrong line of working.

Quick-sanity drill

For each of the following, write the correct fractional-exponent form and the numeric value.

If you can answer these without hesitation, the misconception is closed.

Closing

The index of the root goes on the bottom of the fractional exponent. Every time, without exception. Pair it with "1 on top" — or, in the general case, "power on top" — and the confusion evaporates. The two numbers look similar on the page, but they live on opposite sides of the most important line in the fraction, and swapping them turns a root into its exact inverse.

When in doubt, reach for \sqrt[4]{16}. The fourth root of sixteen is two, and the exponent that delivers two is 1/4, not 4/1. One test case, one decisive answer, one misconception buried for good.