You are halfway through a problem and the next line says 8^{1/10} \, x. Your pen stops. Does the 1/10 power apply to the 8 only, or to the whole 8x? One reading gives you the tenth root of 8 multiplied by x. The other reading gives you the tenth root of 8x. These are not the same number, and they are not the same function. So the question is real, and it has a clean answer.
The answer: the exponent applies ONLY to the 8. The variable x is just MULTIPLIED afterward, sitting outside the exponent's reach. The 8 is the base directly under the fractional exponent. Everything else is a separate operand joined by multiplication. If you wanted the whole 8x under the exponent, you would have to write (8x)^{1/10} with brackets around the product.
Why? Because exponentiation sits higher on the operator priority ladder than multiplication. The exponent attaches to the token immediately below it, and that attachment is resolved before any surrounding multiplication runs.
The rule — exponents bind TIGHTLY to the base
In an expression of the form a^b \cdot c, the ^b applies to a alone. The \cdot \, c is a separate multiplication, applied afterward. This is not a stylistic choice; it is a direct consequence of operator precedence. Exponents are above multiplication on the BODMAS ladder. You resolve the higher-priority operator first, and only then perform the lower-priority one.
So when you read 8^{1/10} \, x, the correct order of operations is:
- First, compute 8^{1/10} — this gives the tenth root of 8, a specific number around 1.231.
- Then, multiply that number by x.
The exponent never sees x. It only ever sees 8.
How to show the intended scope
If you want the exponent to grab only the 8, you can write it two equivalent ways — both unambiguous:
- 8^{1/10} \cdot x means \left(8^{1/10}\right) \cdot x — the tenth root of 8, times x.
If you want the exponent to grab the whole product 8x, you MUST add brackets around the product:
- (8x)^{1/10} means the tenth root of 8x.
Without those brackets, the exponent attaches only to the nearest preceding token — in this case, the number 8. Brackets are not decoration; they are scope markers. They tell the reader exactly how far the exponent reaches.
Worked numerical examples
Let us plug in x = 32 and see the two interpretations diverge.
Interpretation 1: 8^{1/10} \cdot x.
8^{1/10} \approx 1.231, so the answer is 1.231 \cdot 32 \approx 39.39.
Interpretation 2: (8x)^{1/10} = (8 \cdot 32)^{1/10}.
8 \cdot 32 = 256, so the answer is 256^{1/10} \approx 1.741.
One is 39.39. The other is 1.741. Same starting symbols, two different universes. Brackets decide which universe you are in.
The same rule with integer exponents, revisited
You have already lived with this rule for years, just with integer exponents. Every time you write 2x^2, you mean 2 \cdot (x^2), not (2x)^2. The squared sign binds to the x only. The 2 is multiplied afterward. If somebody wrote (2x)^2, that would be a different expression — it would equal 4x^2, not 2x^2.
Extending to fractional exponents does not change the rule. Scope is still scope. The 1/10 in 8^{1/10} \, x behaves exactly like the ^2 in 2 x^2: it attaches to the token directly under it, and no further. The fractional form just makes students nervous because fractions in the exponent look exotic. The mechanics are identical.
When the expression is written in radical notation
Radical notation has a visual advantage: the horizontal bar over the radicand physically encloses everything it covers. So \sqrt[10]{8x} is unambiguous — the bar runs over both 8 and x, and the tenth root applies to the whole product. There is no scope question, because the notation shows scope graphically.
Fractional-exponent notation has no bar. It uses a small superscript that sits above ONE token. That is why brackets are needed in exponent form but not in radical form. Radicals are self-bracketing; fractional exponents are not. If you find scope confusing, convert to radical form and check the bar: 8^{1/10} \cdot x becomes \sqrt[10]{8} \cdot x (bar covers 8 only), while (8x)^{1/10} becomes \sqrt[10]{8x} (bar covers both).
Common notation ambiguities in plain text
Plain-text expressions cause most of the trouble:
-
8^1/10. Strictly this parses as (8^1)/10 = 0.8, because the ^ binds only to the nearest token, which is1. But most readers mentally read it as 8^{(1/10)} \approx 1.231. Always bracket the fractional exponent: write8^(1/10). -
8^(1/10)x. Parses as (8^{(1/10)}) \cdot x — the exponent closes with the), and the x sits outside. Unambiguous but easy to misread. -
8^((1/10)x). Here the exponent is (1/10) \cdot x = x/10, and the base is 8. This is 8^{x/10} — a different expression, with the variable IN the exponent.
Functions with fractional exponents
Here is a related trap: expressions where the variable sits in the exponent itself, rather than as a separate factor.
Consider f(x) = 4^{1/x}. The base is 4, the exponent is 1/x. At x = 1, f = 4. At x = 2, f = \sqrt{4} = 2. As x \to \infty, f \to 4^0 = 1.
Compare with g(x) = 4 x^{1/10}. The base is x, the 1/10 is a fixed exponent, the 4 multiplies from outside. f and g are unrelated functions, and scope is what tells them apart. Read scope carefully every time.
Decoding textbook expressions
When you hit an expression you are unsure about, use this three-step check:
- Find the token the exponent sits on top of. Visually, what is immediately below the superscript? A number? A variable? A bracketed group?
- That token is the base. The exponent reaches exactly that far, no further.
- Everything else is outside. Surrounding factors are joined by multiplication, and they are processed AFTER the exponent resolves.
This mechanical rule handles every case. You never have to guess.
Worked example — 2 x^{1/2} vs (2x)^{1/2}
- 2 x^{1/2} means 2 \cdot \sqrt{x}. The 1/2 applies only to x. The 2 multiplies from outside.
- (2x)^{1/2} means \sqrt{2x} = \sqrt{2} \cdot \sqrt{x}. The 1/2 applies to the whole product 2x.
At x = 8: the first is 2 \cdot \sqrt{8} \approx 2 \cdot 2.828 \approx 5.66. The second is \sqrt{2 \cdot 8} = \sqrt{16} = 4. Different answers — 5.66 versus 4 — for expressions that look almost identical on the page. The only difference is a pair of brackets.
Safety habit
When writing fractional exponents, adopt two defensive habits: bracket the fractional exponent itself (write 8^{(1/10)}, not loosely scribbled 8^{1/10}), and bracket the base if it is anything more complex than a single number or variable ((8x)^{1/10}, (a+b)^{1/2}). Slightly over-parenthesised expressions are unambiguous to every reader and every parser. Correctness beats elegance when scope is at stake.
What goes under the exponent vs what's outside
A final checklist. For each expression, identify the base (what the exponent covers) and what is separate:
- 8^{1/10}: base is 8. Nothing else.
- (8 + 2)^{1/10}: base is (8+2) = 10. The addition is evaluated first (inside the brackets), then the tenth root is taken.
- 8^{1/10} + 2: base is 8. The +2 happens AT THE END — first take the tenth root of 8, then add 2.
- 8^{((1/10) + 2)}: base is 8. The exponent is the whole (1/10 + 2) = 2.1. So the expression is 8^{2.1}.
All four cases follow the same mechanical rule: find the token under the exponent, that is the base, and everything outside the exponent's reach is processed separately in normal BODMAS order.
Closing
Exponents apply to the token directly beneath them. Not to an entire phrase, not to the whole line, not to whatever the reader feels like including. Brackets are the only way to extend the exponent's scope beyond a single token. When in doubt, write more brackets. You will never lose marks for a bracket that is obviously correct, and you will almost always lose marks for a scope that the grader reads differently than you intended.
So: 8^{1/10} \, x is the tenth root of 8, times x. It is not the tenth root of 8x. If you meant the second, you should have written (8x)^{1/10}. The brackets are doing real work.