Q1.
Find how many numbers lie between two consecutive perfect squares. Do you notice a pattern?
Answer
Between n2 and (n+1)2 there are exactly 2n numbers.
| Squares | Numbers strictly between | How many | 2n |
|---|---|---|---|
| 1 and 4 | 2, 3 | 2 | 2 × 1 |
| 4 and 9 | 5, 6, 7, 8 | 4 | 2 × 2 |
| 9 and 16 | 10 … 15 | 6 | 2 × 3 |
| 16 and 25 | 17 … 24 | 8 | 2 × 4 |
Why it happens: The gap itself is (n + 1)2 – n2 = 2n + 1. That count includes one of the two end points, so the numbers strictly in between number 2n + 1 – 1 = 2n. Notice the answer is always even, so no two consecutive squares are ever "close together" once n grows.
Tip: The official answer writes this as q – p – 1 for consecutive squares p and q. That is the same thing: with p = n2 and q = (n+1)2, q – p – 1 = (2n + 1) – 1 = 2n.