Squaring 2 digit number ending in 9 |
|
|
Squaring a 2-digit number ending in 9
- Choose a 2-digit number ending in 9.
- The last digit of the answer is always 1: _ _ _ 1
- Multiply the first digit by 8 and add 8 (keep the carry): _ _ X _
- Multiply the first digit by the next consecutive number and add the carry: the product is the first two digits: XX _ _.
Example:
- If the number is 39:
- The last digit of the answer is 1: _ _ _ 1
- Multiply the first digit (3) by 8 and add 8 (keep the carry): 8 × 3 = 24, 24 + 8 = 32; the next digit of the answer is 2 (keep carry 3): _ _ 2 1
- Multiply the first digit (3) by the next number (4) and add the carry (3): 3 × 4 = 12, 12 + 3 = 15 (the first two digits): 1 5 _ _
- So 39 × 39 = 1521.
|
|
|