Technique explanation

Teaching Explanation

When you are told a number is a perfect square, finding its root is like finding a hidden code. We use three steps:
1. Find the Tens: Bound the number between squares of 10s. For 1849, it's between $40^2=1600$ and $50^2=2500$. So the root is 40-something.
2. Find the Units: Look at the last digit. 1849 ends in 9, so the root ends in 3 or 7. Our candidates are 43 or 47.
3. The Midpoint Test: Calculate the square of the number ending in 5 ($45^2$). Using the $a(a+1)$ shortcut, $45^2 = 2025$.
Since 1849 is less than 2025, the root must be the smaller candidate: 43.

Method Conditions and Fallback

This method only works for numbers that are explicitly declared to be perfect squares.
Standard-method fallback: Standard long-division square root algorithm, which works for all numbers including decimals.

Misconception and Correction

Misconception: Thinking the midpoint test ($n.5^2$) is too hard to do mentally.
Correction: Remember the "Squares Ending in 5" shortcut from Lesson 04! To find $45^2$, just do $4 \times 5 = 20$ and attach 25 to get 2025. This makes the midpoint test the easiest part of the process.

Visual Overlay Requirement

A horizontal number line for a specific example (e.g., 3136):
- Left marker: $50^2 = 2500$
- Right marker: $60^2 = 3600$
- Midpoint marker: $55^2 = 3025$
- Target marker: 3136 (placed to the right of the midpoint).

Worked examples
Example 1: Find the square root of 3136 (declared perfect)
- Step 1 (Tens): $50^2 = 2500$, $60^2 = 3600$. Root is 50-something.
- Step 2 (Units): Ends in 6. Candidates are 54 or 56.
- Step 3 (Midpoint): $55^2 = 3025$.
- Selection: 3136 is greater than 3025, so the root is 56.
- Check: $56 \times 56 = (50+6)(50+6) = 2500 + 600 + 36 = 3136$.

Example 2: Find the square root of 7569 (declared perfect)
- Step 1 (Tens): $80^2 = 6400$, $90^2 = 8100$. Root is 80-something.
- Step 2 (Units): Ends in 9. Candidates are 83 or 87.
- Step 3 (Midpoint): $85^2 = 7225$.
- Selection: 7569 is greater than 7225, so the root is 87.
- Check: $87 \times 87 = (90-3)(90-3) = 8100 - 540 + 9 = 7569$.