Doing Arithmetic Fast Under Pressure
Interview arithmetic isn't a memory contest — it's a small set of restructuring moves applied under a ticking clock. Learn the moves, and the clock stops mattering.
An interviewer asks you to multiply , out loud, right now. You could grind through long multiplication in your head and probably get there — slowly, with a real risk of dropping a digit. Or you could notice and , and the whole thing collapses to . Same answer, five seconds instead of thirty, and far less chance of error.
That's the entire subject in one example: mental math under pressure isn't about calculating faster in your head, it's about restructuring the problem into a shape your head already knows how to calculate. Try before reading on — same trick, different centre.
The trap: brute-forcing the standard algorithm
The algorithm you learned on paper — multiply digit by digit, carry, add columns — is designed for a pencil that never forgets a partial result. Your working memory does not have that luxury; every intermediate number you're holding onto is competing for the same few slots, which is exactly why people freeze or make silly errors under interview pressure. The fix isn't "get better at holding numbers in your head" — it's to pick a decomposition that needs to hold fewer numbers at once.
Every fast mental-math trick is a substitution: replace the original numbers with ones near a round base (10, 50, 100), and let the arithmetic of the difference from that base do the work. Rounding isn't approximation here — carried through correctly, it's exact.
Worked example: difference of squares,
Both numbers sit near 50: , . Multiplying a number below a centre by a number the same distance above it is always a difference of squares:
In words: pick a round centre that both numbers straddle, note how far each one is from it, square the centre, and subtract the square of the distance. Here , : , , so the answer is . You never touched a two-digit-by-two-digit multiplication — just one easy square and one trivial subtraction.
Worked example: multiplying two numbers near the same base, not symmetric
Now . They don't straddle a centre symmetrically the same clean way as before by eye, so use the general near-a-base trick instead. Pick base . Write each number as its distance from : , — actually this is symmetric around 70, so it's again a difference of squares: .
Try a genuinely asymmetric pair: . Base : , .
In words: square the base, add the base times the net offset, subtract the product of the two offsets. Plugging in: , net offset so , and . Total: . Check by direct multiplication: . It matches, and you carried at most three small numbers in your head the entire time instead of a four-row column addition.
Before multiplying, always ask: what round number is near both of these? 10, 50, 100 and their multiples cover almost every interview number. If the two numbers straddle it, you're doing a difference of squares; if not, you're doing the net-offset version above. Either way you've turned a two-digit multiplication into single-digit arithmetic plus one square you may already have memorised.
The transferable technique
The general move behind all mental-math speed is re-anchor to a base, then work only with the small offsets from that base — for multiplication, division, percentages, or compounding. It works because your brain is fast at exact arithmetic on one- or two-digit numbers and terrible at holding four-digit partial sums; a good decomposition minimises what you must remember, not what you must compute. Before every calculation under pressure, spend one second asking "what round number is this close to?" — that single question is worth more than any specific trick.
Related concepts
Practice in interviews
Further reading
- Bulajich Manfrino et al., problem-solving arithmetic drills