Root-finding looks harder than squaring, but for exam purposes it's really squaring in reverse — if you already know your squares and cubes, finding roots is mostly about narrowing down candidates using two things: the last digit and the number of digits. This is the flip side of the method covered in squaring and cubing mentally — same numbers, opposite direction.
The key idea: last digit narrows it down instantly
Every digit 0–9, when squared, ends in a predictable digit. Once you memorize this small table, the last digit of a perfect square tells you the last digit of its root — down to just 1 or 2 possibilities.
2² = 4, 8² = 64 → last digit 4 gives root ending in 2 or 8
3² = 9, 7² = 49 → last digit 9 gives root ending in 3 or 7
4² = 16, 6² = 36 → last digit 6 gives root ending in 4 or 6
5² = 25 → last digit 5 gives root ending in 5
0² = 0 → last digit 0 gives root ending in 0
Notice a number ending in 2, 3, 7, or 8 can never be a perfect square — that alone is a useful elimination check in exams.
Worked example: √5929
- Last digit is 9 → root ends in 3 or 7.
- Strip the last two digits: 5929 → look at "59". 70² = 4900 and 80² = 6400, so the root is between 70 and 80.
- Combine: root is in the 70s and ends in 3 or 7 → candidates are 73 or 77.
- 70² = 4900 is closer to 5929 than 80² = 6400 is far from it, and 75² = 5625 — since 5929 > 5625, pick the larger candidate.
The general digit-narrowing rule
To estimate the range before checking the last digit, use how many digits the number has:
A 3- or 4-digit number's square root is a 2-digit number (up to 99² = 9801)
A 5- or 6-digit number's square root is a 3-digit number (up to 999² = 998001)
Pair this with knowing your tens-multiples squared (10², 20², 30² ... 90²) and you can bracket almost any perfect square root in seconds.
Cube roots: fewer candidates, even faster
Cube roots are actually easier than square roots because each last digit maps to exactly one possible last digit — no 1-or-9 ambiguity.
So the last digit of a perfect cube tells you the exact last digit of its cube root, immediately.
Worked example: ∛571787
- Last digit is 7 → from the table, only 3³ = 27 ends in 7, so the root ends in 3.
- Strip the last three digits: 571787 → look at "571". 8³ = 512 and 9³ = 729, so the root is between 80 and 90.
What if it's not a perfect square or cube?
Most exam questions use perfect powers deliberately, since they need a clean answer. But when you need an approximate root — for a quick estimate or elimination — bracket it between two nearby perfect squares and interpolate.
50 is just 1 above 49, so √50 ≈ 7 + 1/(2×7) ≈ 7.07
The interpolation formula being used here is:
This works because it's the same round-number-plus-correction thinking used throughout these shortcuts — just applied to a square root instead of a multiplication.
Where this actually helps
Square and cube roots show up constantly in simplification, approximation, and number-series questions in bank and competitive exams. Being able to spot √5929 = 77 in ten seconds — instead of testing numbers one by one — is a direct extension of knowing your squares and cubes cold.
Put it into practice
Try the squares & cubes mode in the quiz first to build the base, then test yourself going the other direction.
Practice squares & cubes →Related articles
How to calculate squares and cubes mentally
The inverse operation of this article — same numbers, same identities, worked forward instead of backward.
Squaring Numbers Ending in 5Fast squaring of numbers ending in 5
Useful alongside root-finding: perfect squares ending in 25 always come from a root ending in 5.