GMAT Arithmetic: Exponents and Roots
Last updated: May 2, 2026
Arithmetic: Exponents and Roots questions are one of the highest-leverage areas to study for the GMAT. This guide breaks down the rule, the elements you need to recognize, the named traps that catch most students, and a memory aid that scales to test day. Read it once, then practice the same sub-topic adaptively in the app.
The rule
An exponent counts repeated multiplication, and a root is the inverse operation. To compare, simplify, or solve expressions with exponents and roots, rewrite everything with a common base or as a fractional exponent, then apply the laws: $a^m \cdot a^n = a^{m+n}$, $\frac{a^m}{a^n} = a^{m-n}$, $(a^m)^n = a^{mn}$, $a^{-n} = \frac{1}{a^n}$, and $\sqrt[n]{a} = a^{1/n}$. The GMAT punishes you for treating exponent rules as if they distribute over addition; they don't.
Elements breakdown
Core Exponent Laws
The five product, quotient, power, negative, and zero rules.
- Multiply same base: add exponents
- Divide same base: subtract exponents
- Power of a power: multiply exponents
- Negative exponent: take reciprocal
- Anything nonzero to the zero is one
Common examples:
- $2^5 \cdot 2^3 = 2^8$
- $(x^4)^3 = x^{12}$
- $5^{-2} = \frac{1}{25}$
Root and Fractional Exponent Conversion
Rewrite radicals as fractional powers so exponent laws apply directly.
- Square root equals one-half power
- Cube root equals one-third power
- $\sqrt[n]{a^m} = a^{m/n}$
- Combine roots only when bases match
- Rationalize denominators when comparing
Common examples:
- $\sqrt{x} = x^{1/2}$
- $\sqrt[3]{x^6} = x^2$
- $\sqrt{8} = 2\sqrt{2}$
Common-Base Rewriting
Force every term in an equation or comparison into one base before solving.
- Spot small bases: 2, 3, 5
- Rewrite 4, 8, 16, 32 as powers of 2
- Rewrite 9, 27, 81 as powers of 3
- Equate exponents once bases match
- Watch sign of exponents after rewrite
Common examples:
- $4^x = 2^{2x}$
- $27^{x+1} = 3^{3x+3}$
What Does NOT Distribute
Operations that students wrongly apply to sums and differences.
- $(a+b)^2 \ne a^2 + b^2$
- $\sqrt{a+b} \ne \sqrt{a} + \sqrt{b}$
- $2^{a+b} \ne 2^a + 2^b$
- No root rule for sums under one radical
- Factor first, then simplify
Common examples:
- $(x+3)^2 = x^2+6x+9$
- $\sqrt{9+16} = 5$, not $3+4$
Sign and Domain Checks
Roots and even powers create sign issues you must monitor.
- Even roots of negatives: not real
- $\sqrt{x^2} = |x|$, not $x$
- Odd roots preserve sign
- Squaring can introduce extraneous roots
- Check final answer in original equation
Common patterns and traps
The Common-Base Rewrite
Almost every clean exponent problem is solvable by rewriting both sides with the same prime base. Once the bases match, you set the exponents equal and the problem becomes simple algebra. Students who try to take logs or plug in values tend to either burn time or miscompute.
An equation like $8^{x+1} = 4^{2x-1}$ where every base is a power of 2, and the right answer comes from setting $3(x+1) = 2(2x-1)$.
The False-Distribution Trap
Wrong answers exploit the urge to distribute exponents or radicals across sums. Students compute $(a+b)^2$ as $a^2+b^2$ or $\sqrt{a^2+b^2}$ as $a+b$. The trap choice is the value those illegal moves produce.
A choice equal to $a^2+b^2$ when the correct expansion is $a^2+2ab+b^2$, or a choice equal to $a+b$ when the correct simplification is $\sqrt{a^2+b^2}$.
The Sign-Loss Trap
When you take an even root of a squared expression, the result is the absolute value, not the variable itself. Trap answers drop the absolute-value bars and miss negative solutions, especially when squaring both sides of an equation.
A choice that lists only the positive solution to $x^2 = 49$, or that simplifies $\sqrt{(x-3)^2}$ to $x-3$ instead of $|x-3|$.
The Negative-Exponent Flip
Negative exponents invert the base, but only the part of the expression they sit on. Students either flip the entire fraction or fail to flip at all. The trap answer reflects one of those mistakes.
A choice that treats $\frac{1}{a^{-2}}$ as $\frac{1}{a^2}$ instead of $a^2$, or that flips a sum rather than a single factor.
The Radical-Combination Misstep
Radicals can be multiplied or divided across like indices ($\sqrt{a}\cdot\sqrt{b}=\sqrt{ab}$) but cannot be added or subtracted unless the radicands match after simplification. Trap answers either combine unlike radicals or leave a perfect-square factor unextracted.
A choice that reports $\sqrt{12}+\sqrt{27}$ as $\sqrt{39}$ instead of $5\sqrt{3}$.
How it works
Treat every exponent or root question as a rewriting problem before it is a calculation problem. If you see $\frac{16^3 \cdot 2^5}{8^4}$, do not reach for a calculator: rewrite as $\frac{(2^4)^3 \cdot 2^5}{(2^3)^4} = \frac{2^{12} \cdot 2^5}{2^{12}} = 2^5 = 32$. The same instinct works for radicals: $\sqrt{50} - \sqrt{18} = 5\sqrt{2} - 3\sqrt{2} = 2\sqrt{2}$, because pulling perfect squares out of each radical lets you combine like terms. When an equation mixes exponentials, like $9^{x} = 27$, convert to a shared base: $3^{2x} = 3^3$, so $x = \frac{3}{2}$. The most common failure mode is reaching for a distributive rule that does not exist, especially with sums inside parentheses or under a radical.
Worked examples
If $\dfrac{16^{x} \cdot 4^{x+1}}{8^{x-1}} = 2^{15}$, what is the value of $x$?
What is the value of $x$?
- A $2$
- B $\dfrac{8}{3}$
- C $\dfrac{10}{3}$ ✓ Correct
- D $4$
- E $5$
Why C is correct: Rewrite every base as a power of 2: $16^x = 2^{4x}$, $4^{x+1} = 2^{2x+2}$, and $8^{x-1} = 2^{3x-3}$. The left side becomes $2^{4x+2x+2-(3x-3)} = 2^{3x+5}$. Setting $3x+5 = 15$ gives $x = \frac{10}{3}$.
Why each wrong choice fails:
- A: You get $x = 2$ if you forget to subtract the denominator's exponent and instead add it, leaving $9x+(-1) = 15$ style errors. (The Common-Base Rewrite)
- B: $\frac{8}{3}$ comes from forgetting the $+2$ that arises when $4^{x+1}$ is rewritten as $2^{2x+2}$. (The Common-Base Rewrite)
- D: Choosing 4 means you treated the quotient rule as addition and combined exponents incorrectly into $3x+3 = 15$. (The Common-Base Rewrite)
- E: $x = 5$ ignores the denominator entirely and just sets the numerator's combined exponent equal to 15. (The Common-Base Rewrite)
If $a$ and $b$ are positive numbers with $a^2 + b^2 = 50$ and $ab = 7$, what is the value of $\sqrt{a^2 + 2ab + b^2}$?
What is the value of $\sqrt{a^2 + 2ab + b^2}$?
- A $\sqrt{50}$
- B $\sqrt{57}$
- C $\sqrt{64}$
- D $8$ ✓ Correct
- E $50$
Why D is correct: Recognize that $a^2 + 2ab + b^2 = (a+b)^2$. So $\sqrt{(a+b)^2} = |a+b| = a+b$, since both are positive. From $(a+b)^2 = a^2 + b^2 + 2ab = 50 + 14 = 64$, you get $a+b = 8$.
Why each wrong choice fails:
- A: $\sqrt{50}$ is what you get if you ignore the $2ab$ term entirely and only carry $a^2+b^2$ through the radical. (The False-Distribution Trap)
- B: $\sqrt{57}$ comes from adding $ab = 7$ once instead of $2ab = 14$ inside the radical. (The False-Distribution Trap)
- C: $\sqrt{64}$ is the value under the radical but unsimplified; the radical of a perfect square should be evaluated to 8. (The Radical-Combination Misstep)
- E: 50 conflates $a^2+b^2$ with the entire expression and then drops the radical altogether. (The False-Distribution Trap)
Which of the following is equal to $\dfrac{3^{-2} + 3^{-3}}{3^{-4}}$?
Which of the following is equal to the expression?
- A $\dfrac{1}{36}$
- B $3$
- C $12$ ✓ Correct
- D $36$
- E $108$
Why C is correct: Multiply numerator and denominator by $3^{4}$: the numerator becomes $3^{4-2} + 3^{4-3} = 3^2 + 3^1 = 9 + 3 = 12$, and the denominator becomes $3^0 = 1$. So the value is $12$.
Why each wrong choice fails:
- A: $\frac{1}{36}$ comes from leaving the negative exponents in place and multiplying instead of dividing, a classic sign-flip error. (The Negative-Exponent Flip)
- B: 3 is what you get if you simplify only the first numerator term, $3^{-2}/3^{-4} = 3^2$, and ignore the $3^{-3}$ term. (The False-Distribution Trap)
- D: 36 results from treating $3^{-2} + 3^{-3}$ as if it equals $3^{-5}$, then dividing $3^{-5}/3^{-4} = 3^{-1}$ — and then mis-flipping further. (The False-Distribution Trap)
- E: 108 is $12 \times 9$; you got the right numerator structure but multiplied by an extra $3^2$ when clearing the denominator. (The Negative-Exponent Flip)
Memory aid
PEMDAS for exponents — Power, Exchange-base, Multiply-exponents, Distribute-only-over-products, Add-when-multiplying, Subtract-when-dividing.
Key distinction
Exponent rules act on multiplication and division of like bases — never on addition or subtraction inside the expression.
Summary
Convert to a common base or fractional exponent first; the rules then apply mechanically and the trap answers fall away.
Practice arithmetic: exponents and roots adaptively
Reading the rule is the start. Working GMAT-format questions on this sub-topic with adaptive selection, watching your mastery score climb in real time, and seeing the items you missed return on a spaced-repetition schedule — that's where score lift actually happens. Free for seven days. No credit card required.
Start your free 7-day trialFrequently asked questions
What is arithmetic: exponents and roots on the GMAT?
An exponent counts repeated multiplication, and a root is the inverse operation. To compare, simplify, or solve expressions with exponents and roots, rewrite everything with a common base or as a fractional exponent, then apply the laws: $a^m \cdot a^n = a^{m+n}$, $\frac{a^m}{a^n} = a^{m-n}$, $(a^m)^n = a^{mn}$, $a^{-n} = \frac{1}{a^n}$, and $\sqrt[n]{a} = a^{1/n}$. The GMAT punishes you for treating exponent rules as if they distribute over addition; they don't.
How do I practice arithmetic: exponents and roots questions?
The fastest way to improve on arithmetic: exponents and roots is targeted, adaptive practice — working questions that focus on your specific weak spots within this sub-topic, getting immediate feedback, and revisiting items you missed on a spaced-repetition schedule. Neureto's adaptive engine does this automatically across the GMAT; start a free 7-day trial to see your sub-topic mastery climb in real time.
What's the most important distinction to remember for arithmetic: exponents and roots?
Exponent rules act on multiplication and division of like bases — never on addition or subtraction inside the expression.
Is there a memory aid for arithmetic: exponents and roots questions?
PEMDAS for exponents — Power, Exchange-base, Multiply-exponents, Distribute-only-over-products, Add-when-multiplying, Subtract-when-dividing.
What's a common trap on arithmetic: exponents and roots questions?
Distributing exponents or roots over addition
What's a common trap on arithmetic: exponents and roots questions?
Forgetting $\sqrt{x^2} = |x|$
Ready to drill these patterns?
Take a free GMAT assessment — about 25 minutes and Neureto will route more arithmetic: exponents and roots questions your way until your sub-topic mastery score reflects real improvement, not luck. Free for seven days. No credit card required.
Start your free 7-day trial