Reasoning · Grade 4-2 Counting Large and Small Figures

Problem

Count all squares in a grid

A big square is ruled into a 6 by 6 board of 36 little squares. A square of any side from 1 cell up to 6 cells counts, not just the little ones. The largest is the whole board. Count every square hiding in the picture.
Your answer
How to solve
Strategy Make a Systematic List — Pointing at squares one by one and tallying is hopeless here - there are dozens of them and they overlap, so it is far too easy to count one twice or miss one entirely. Instead I sort every square by its size first: all the 1 by 1 squares, then all the 2 by 2 squares, and so on. Inside one size class the squares are easy to count exactly, because a square of that size is completely decided by where its top-left corner sits. A small 2 by 2 board makes the counting rule obvious, and then the same rule handles all six sizes on the real board.
1STEP 1

Sort the squares by side length first

Sort the squares by side length.

side = 1, 2, 3, 4, 5, 6 cells
2STEP 2

Try a tiny board to find the counting rule

A tiny board shows the pattern 9, 4, 1.

3×3=9, 2×2=4, 1×1=1
3STEP 3

See why the rule works: slide the top-left corner

Count where the top-left corner can sit.

#{squares of side k} = (7-k)×(7-k)
4STEP 4

Count each size on the 6 by 6 board

By size that is 36, 25, 16, 9, 4, 1.

36, 25, 16, 9, 4, 1
5STEP 5

Add the six counts

Adding them gives 91.

36+25+16+9+4+1=91
Answer
91 squares
36 + 25 + 16 + 9 + 4 + 1 = 91
91 is a count, so it must be a whole number, and it must be bigger than 36 because the 36 little cells are only part of the answer - both are true. It should also be well under the number of rectangles in the figure, since every square is a rectangle but most rectangles are not squares. A quick sanity test on the small boards confirms the method: on a 1 by 1 board the rule gives 1 square, on a 2 by 2 board it gives 4 + 1 = 5, and on a 3 by 3 board it gives 9 + 4 + 1 = 14 - all three can be checked by eye and all three are right. Adding the six counts in the reverse order, 1 + 4 + 9 + 16 + 25 + 36, gives 91 again.
Takeaway

Count by size, not by eye: a square of each size can only slide into a neat rectangle of positions, so the totals are just 6x6 + 5x5 + 4x4 + 3x3 + 2x2 + 1x1.

  • Sort the squares by side length first
  • Try a tiny board to find the counting rule
  • See why the rule works: slide the top-left corner
  • Count each size on the 6 by 6 board
  • Add the six counts