Multiplying Numbers Near a Round Base
A generalization of the squaring trick — multiply two numbers that are both close to a round number by working with their distances from that base instead of the numbers themselves.
Prerequisites: Squaring Numbers in Your Head
Squaring a number near a round base is a special case of a more general trick: multiplying any two numbers that both happen to sit close to the same round number, like or . Doing these longhand is slow; doing them via their distances from a shared base turns them into small, easy arithmetic almost every time.
The trick: distances from a shared base
Pick a convenient base (usually a multiple of 10 or 100) close to both numbers. Write each number as the base plus or minus a small offset: , . Then:
In plain English: multiply the base by the sum of the two offsets-from-base combined back into the numbers (which is just , easy since it's near ), then add the product of the two small offsets — a small correction that's easy to compute since and are small.
A cleaner way to remember it when both offsets are known: , but in practice the fastest path is usually to compute directly since that's one multiplication by a round number, then add .
Worked example 1: 97 × 103
Base . Offsets: (since ), (since ). Then , so:
This is the difference-of-squares pattern in disguise — when offsets are equal and opposite, directly, since .
Worked example 2: 48 × 53 (unequal offsets)
Base . Offsets: (48 = 50 − 2), (53 = 50 + 3). Compute , so:
is instant (half of 5,100), and the correction is a tiny single-digit multiplication — far faster than multiplying 48 by 53 directly.
What this means in practice
This trick shows up constantly when estimating notional values, position sizes, or quick P&L calculations in an interview — numbers in trading questions are frequently "near round" by design, since interviewers pick them that way to test exactly this skill. Combined with the squaring shortcut, it's the difference between visibly struggling through two-digit multiplication and answering before the interviewer finishes writing the number down.
To multiply two numbers near a shared base , write where are the small offsets from — one round multiplication plus a small correction, instead of full long multiplication.
Choose the base that makes both offsets smallest, not necessarily the nearest round number to just one factor — the smaller both offsets are, the smaller and easier the correction term.
Related concepts
Practice in interviews
Further reading
- Common quant interview prep guides (mental math drills)