Show worked solution
Worked solution
Understand the condition
We need the smallest integer n whose square root beats 20.5.
Square both sides
Squaring keeps the order for positive numbers, turning the root condition into a plain inequality.
Plan the squaring
Split to square it mentally.
Expand the square
Use the expansion of a two-part square: plus plus .
Evaluate
So the condition is n greater than 420.25.
Find the smallest integer
The smallest integer strictly greater than is .
Check works
is beyond , so its root is beyond . ✓
Check fails
falls short of , so its root falls short of — fails.
Confirm minimality
Since 420 fails and 421 works, 421 is the smallest possible n.
Estimate the root of as a check
Root is about , just above — a comfortable but tight pass.
Watch for the boundary error
Rounding down to is the classic slip; the strict inequality demands going above .
Watch for the equality trap
Even the exact value 420.25 (if n could be a decimal) only equals 20.5 — the strict inequality rules it out.
Reflect on the method
Threshold problems with roots are solved by squaring the boundary and taking the next integer.
General lesson
For positive values, root conditions convert exactly into squared conditions.
State the answer
The smallest integer n is 421.