How to find cube roots instantly
This one only works when the number is a genuine perfect cube (which is exactly what exams ask) — but when it applies, it's one of the fastest tricks in competitive math: two lookups, no calculation.
Step one: memorize the last-digit map
Every digit 0–9, when cubed, ends in a unique last digit. This table is the entire trick:
1³ ends in 1 2³ ends in 8 3³ ends in 7
4³ ends in 4 5³ ends in 5 6³ ends in 6
7³ ends in 3 8³ ends in 2 9³ ends in 9
0³ ends in 0
Notice it's a one-to-one map — every last digit of the cube points back to exactly one possible last digit of the root.
The method for a 6-digit perfect cube
Split the number into the last three digits and everything before them. The last digit of the whole number tells you the units digit of the root (using the table above). The leading group tells you the tens digit — find which two consecutive cubes (10³, 20³, 30³...) it falls between, and take the smaller one's root.
Worked example: ∛175616
Split: 175 | 616. Last digit of 616 is 6 → root ends in 6 (from the table). Leading part 175 sits between 5³=125 and 6³=216, so it's closer to the lower bound — tens digit is 5.
Combine: 56. Check: 56³ = 175616. ✓
Worked example: ∛884736
Split: 884 | 736. Last digit 6 → root ends in 6. Leading part 884 sits between 9³=729 and 10³=1000, so tens digit is 9.
Combine: 96. Check: 96³ = 884736. ✓
The catch
This only works cleanly for exact perfect cubes — it's a recognition trick, not a general cube-root calculator. That's fine, because exam questions built around cube roots are almost always constructed around perfect cubes specifically, since that's the only case with a clean integer answer to test.