GRE Arithmetic: Ratios, Rates, Exponents, Roots
Last updated: May 2, 2026
Arithmetic: Ratios, Rates, Exponents, Roots questions are one of the highest-leverage areas to study for the GRE. 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
GRE arithmetic problems on ratios, rates, exponents, and roots reward students who track units, scale ratios with a multiplier, and rewrite exponents and roots into a single base before computing. The right answer almost always falls out of one rewrite — students who try to bash with raw numbers either run out of time or hit a near-miss trap. What students miss most: ratios are not totals, rates have hidden units that must cancel, and exponent rules only work when bases match.
Elements breakdown
Ratio Multiplier Method
Treat any ratio $a:b$ as $ax:bx$, where $x$ is the unknown scale factor.
- Write the ratio as $ax:bx:cx\ldots$
- Use the given total or difference to solve for $x$
- Plug $x$ back to recover actual quantities
- Verify the recovered numbers reduce to the original ratio
Common examples:
- Total trap: a 3:5 ratio with total 40 gives $x=5$, not parts of 8
- Difference trap: a 3:5 ratio whose larger exceeds smaller by 10 gives $x=5$
Rate as Unit-Cancellation
Every rate is a fraction with units; the right operation is the one that cancels unwanted units.
- Write each rate as $\frac{\text{output}}{\text{input}}$ with units
- Multiply or divide so unwanted units cancel
- For combined work, add rates: $\frac{1}{t_1} + \frac{1}{t_2}$
- For average speed, use $\frac{\text{total distance}}{\text{total time}}$, never average the speeds
Exponent Rewrite Rules
Match bases first, then apply the rule; never combine exponents across different bases.
- Same base multiply: $a^m \cdot a^n = a^{m+n}$
- Same base divide: $\frac{a^m}{a^n} = a^{m-n}$
- Power of a power: $(a^m)^n = a^{mn}$
- Negative exponent: $a^{-n} = \frac{1}{a^n}$
- Fractional exponent: $a^{m/n} = \sqrt[n]{a^m}$
- Rewrite composite bases: $4^x = 2^{2x}$, $9^x = 3^{2x}$, $8^x = 2^{3x}$
Root Simplification
Pull perfect squares (or cubes) out of radicals before computing.
- Factor the radicand into perfect-power $\times$ leftover
- Apply $\sqrt{ab} = \sqrt{a}\cdot\sqrt{b}$
- Rationalize denominators by multiplying by $\frac{\sqrt{n}}{\sqrt{n}}$
- Remember: $\sqrt{x^2} = |x|$, not just $x$
- On GRE, $\sqrt{n}$ means the non-negative root only
Common patterns and traps
The Multiplier Method (Ratios)
Whenever a problem gives a ratio plus one piece of absolute information (a total, a difference, or one specific quantity), introduce an unknown $x$ and write each part as a multiple of $x$. This converts a proportion problem into a one-variable linear equation. The trap on the other side is treating ratio parts as if they were already counts.
A wrong choice equals the sum of ratio parts (here 11) or the total divided by the sum (here 3), rather than a value built from $x$.
The Combined-Work Reciprocal
When two agents work together, add their rates (jobs per unit time), not their times. If one finishes in $t_1$ hours and the other in $t_2$, together they finish in $\frac{1}{\frac{1}{t_1} + \frac{1}{t_2}}$ hours. Students who add the times or average them land on a tempting wrong answer.
A wrong choice is the simple average of the two times, or their sum, dressed up as a clean integer.
The Average-Speed Trap
Average speed is not the average of two speeds unless the time spent at each speed is equal. The GRE almost always sets up problems where the distance is equal but the time isn't, so you must use $\frac{\text{total distance}}{\text{total time}}$. The arithmetic mean of the two speeds is always a listed wrong answer.
Speeds of 30 and 60 mph over equal distances yield 40 mph, but 45 mph (the simple mean) will appear as a choice.
The Common-Base Rewrite
Exponential equations and expressions are almost always solvable by rewriting all bases as powers of a single prime. $4, 8, 16, 32$ are all powers of 2; $9, 27, 81$ are powers of 3. Once bases match, you either equate exponents or add/subtract them. Trying to compute $4^7$ or $8^5$ directly is a sign you missed the rewrite.
An equation like $8^x = 16^{x-1}$ becomes $2^{3x} = 2^{4(x-1)}$, then $3x = 4x - 4$, giving $x = 4$.
The Radical Reduction Heuristic
Before adding, subtracting, or comparing roots, factor each radicand to expose perfect squares. $\sqrt{72} = 6\sqrt{2}$; $\sqrt{75} = 5\sqrt{3}$. Roots can only be combined when the radical part matches, so reduction is a prerequisite, not a finishing touch.
A choice that looks like $\sqrt{50} + \sqrt{8}$ is bait for the simplified form $7\sqrt{2}$ — but only if you reduce first.
How it works
Here's how the toolkit works in practice. Suppose a problem says the ratio of cats to dogs at a shelter is $4:7$ and there are 33 animals total. Don't divide 33 by anything yet — write $4x + 7x = 33$, get $x = 3$, so 12 cats and 21 dogs. That's the multiplier method in eight seconds. Now suppose the problem instead says $\sqrt{50} + \sqrt{18}$: don't reach for a decimal approximation. Rewrite as $5\sqrt{2} + 3\sqrt{2} = 8\sqrt{2}$. Same idea with $4^5 \cdot 8^3$ — rewrite both as powers of 2: $2^{10} \cdot 2^9 = 2^{19}$. Every one of these moves is a rewrite, not a computation, and the GRE almost never expects raw arithmetic when a rewrite is available.
Worked examples
At a regional debate tournament, the ratio of novice to varsity to alumni judges is $2:5:3$. If there are 18 more varsity judges than novice judges, how many judges are at the tournament in total?
What is the total number of judges?
- A $30$
- B $40$
- C $50$
- D $60$ ✓ Correct
- E $80$
Why D is correct: Apply the multiplier method: write the counts as $2x$, $5x$, and $3x$. The difference between varsity and novice is $5x - 2x = 3x = 18$, so $x = 6$. The total is $2x + 5x + 3x = 10x = 60$.
Why each wrong choice fails:
- A: $30$ is $5x$, the varsity count alone, not the total. The student stopped one step early. (The Multiplier Method (Ratios))
- B: $40$ comes from setting $3x = 18$ but then adding only varsity and alumni $(5x + 3x = 48)$ or some other partial sum — it doesn't represent any complete total. (The Multiplier Method (Ratios))
- C: $50$ comes from misreading the difference as the total (taking $2x + 3x = 5x = 50$ when $x = 10$), which would require reading 18 as the novice count rather than the difference. (The Multiplier Method (Ratios))
- E: $80$ doubles a partial sum or interprets the ratio parts as $2:5:3:\text{total}$ incorrectly. No clean equation gives this total.
Marta drives from her studio to a gallery 60 miles away at an average speed of 30 miles per hour. She returns along the same route at 60 miles per hour. What is her average speed for the round trip, in miles per hour?
What is Marta's average speed for the round trip?
- A $36$
- B $40$ ✓ Correct
- C $42$
- D $45$
- E $48$
Why B is correct: Use $\text{average speed} = \frac{\text{total distance}}{\text{total time}}$. The total distance is $120$ miles. Time out: $\frac{60}{30} = 2$ hours. Time back: $\frac{60}{60} = 1$ hour. Total time is $3$ hours, so average speed is $\frac{120}{3} = 40$ mph.
Why each wrong choice fails:
- A: $36$ doesn't correspond to any standard miscalculation here; it's a distractor between the trap value and the correct value.
- C: $42$ is a near-miss distractor between the correct $40$ and the trap $45$, included to punish guessing.
- D: $45$ is the arithmetic mean of $30$ and $60$. This is the canonical trap: averaging speeds only works when equal time (not equal distance) is spent at each speed. (The Average-Speed Trap)
- E: $48$ comes from a weighted average using the wrong weights, or from $\frac{30+60}{2} + 3$ — it has no correct derivation. (The Average-Speed Trap)
Let $x$ be a positive integer satisfying $9^{x+1} = 27^{x-1}$.
Compare Quantity A and Quantity B.
- A Quantity A is greater.
- B Quantity B is greater.
- C The two quantities are equal. ✓ Correct
- D The relationship cannot be determined from the information given.
Why C is correct: Rewrite both sides with base $3$: $9^{x+1} = 3^{2(x+1)} = 3^{2x+2}$, and $27^{x-1} = 3^{3(x-1)} = 3^{3x-3}$. Setting exponents equal: $2x + 2 = 3x - 3$, so $x = 5$. Therefore Quantity A equals Quantity B.
Why each wrong choice fails:
- A: Quantity A equals exactly $5$, not more. Choosing this likely results from arithmetic error like $2x+2 = 3x-3 \Rightarrow x = 6$. (The Common-Base Rewrite)
- B: This would require $x < 5$, which contradicts the equation. A common error is to subtract exponents incorrectly and get $x = 4$. (The Common-Base Rewrite)
- D: The exponential equation has a unique positive integer solution, so $x$ is fully determined. 'Cannot be determined' is wrong whenever the algebra resolves cleanly.
Memory aid
MURR: Multiplier for ratios, Units for rates, Rewrite for exponents, Reduce for roots. Before any computation, ask which of the four moves the problem is set up for.
Key distinction
A ratio tells you proportion, never absolute counts; a rate tells you how units convert, never a final answer. The right answer always requires you to introduce an unknown ($x$ for ratios, total distance/time for rates) — wrong answers are what you get when you skip that step.
Summary
Rewrite before you compute: ratios become $ax:bx$, rates become unit fractions that cancel, exponents become a single base, and roots become factored radicands.
Practice arithmetic: ratios, rates, exponents, roots adaptively
Reading the rule is the start. Working GRE-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: ratios, rates, exponents, roots on the GRE?
GRE arithmetic problems on ratios, rates, exponents, and roots reward students who track units, scale ratios with a multiplier, and rewrite exponents and roots into a single base before computing. The right answer almost always falls out of one rewrite — students who try to bash with raw numbers either run out of time or hit a near-miss trap. What students miss most: ratios are not totals, rates have hidden units that must cancel, and exponent rules only work when bases match.
How do I practice arithmetic: ratios, rates, exponents, roots questions?
The fastest way to improve on arithmetic: ratios, rates, exponents, 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 GRE; 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: ratios, rates, exponents, roots?
A ratio tells you proportion, never absolute counts; a rate tells you how units convert, never a final answer. The right answer always requires you to introduce an unknown ($x$ for ratios, total distance/time for rates) — wrong answers are what you get when you skip that step.
Is there a memory aid for arithmetic: ratios, rates, exponents, roots questions?
MURR: Multiplier for ratios, Units for rates, Rewrite for exponents, Reduce for roots. Before any computation, ask which of the four moves the problem is set up for.
What is "The parts-vs-total trap" in arithmetic: ratios, rates, exponents, roots questions?
dividing the total by the sum of ratio parts but forgetting to multiply back.
What is "The averaged-rate trap" in arithmetic: ratios, rates, exponents, roots questions?
averaging two speeds instead of using total distance over total time.
Ready to drill these patterns?
Take a free GRE assessment — about 20 minutes and Neureto will route more arithmetic: ratios, rates, exponents, 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