Estimating Square Roots
A Newton-style correction lets you get a square root to two or three decimal places in a couple of mental steps, starting from the nearest perfect square you already know.
Prerequisites: Squaring Numbers in Your Head
What's the square root of 55? You know it's between 7 (49) and 8 (64), but "somewhere between 7 and 8" isn't a usable answer in an interview. The fix is a one-step linear correction: start from the nearest perfect square, then nudge your guess using how far off the square of that guess is, scaled by roughly .
The correction step
If is a nearby guess with close to , a better estimate is:
In plain English: measure how far is from the target , then convert that gap into a correction to by dividing it by roughly twice your guess. This comes from the same idea as a first-order Taylor approximation — treating the square-root function as locally linear near a point you already know — and one application is almost always accurate enough for interview purposes.
Worked example 1: √55
Nearest perfect square below 55 is , so start with . The gap is . Correction: . So:
The true value is — the estimate is accurate to about 0.01, reached in two small mental steps with no calculator. That level of accuracy is far more than most interview questions actually require, but it comes essentially free once the correction formula is automatic.
Worked example 2: √170
Nearest perfect square is , remarkably close, so . Gap: . Correction: . So:
The true value is — essentially exact, because the starting guess was already so close that the linear approximation barely needed to correct anything. The lesson generalizes: the closer your starting perfect square, the more accurate one correction step is.
What this means in practice
Fast square-root estimation is the backbone of quick standard-deviation and volatility calculations — variance often needs to be converted to a standard deviation on the spot, and this trick makes that instantaneous instead of a stalling point. It's also a direct, hands-on instance of a linear (first-order) approximation, the same underlying idea that shows up later in far more advanced settings like local approximations to option Greeks. Once it's automatic, it removes one of the last places a candidate visibly stalls out mid-calculation.
Estimate as , where is the nearest perfect square root you already know. One correction step is typically accurate to two or three decimal places.
The closer your starting perfect square is to the target, the smaller the correction and the more accurate the estimate — memorizing perfect squares up to 20² (400) covers most interview numbers with a small gap to correct.
Practice in interviews
Further reading
- Common quant interview prep guides (mental math drills)