Count all shapes hidden in a grid
How many squares, large and small, can you find in the figure below?
The figure is made of equal-sized unit squares joined together. The top row has unit squares, the middle row has unit squares, and the bottom row has unit squares, all aligned at the left edge (so the top row is missing its rightmost cell, giving a stepped shape). Count every square that can be traced in the figure — the -cell squares, the -cell () squares, the -cell () square, and so on.
Show solution
Understand
A stepped figure is built from 11 equal unit squares: the top row has 3 cells (columns 1-3), and the middle and bottom rows each have 4 cells (columns 1-4), all left-aligned. I must count every square of every size that can be traced along the grid lines.
- The figure is made of 11 equal unit squares.
- Top row: 3 unit squares (columns 1-3).
- Middle row: 4 unit squares (columns 1-4).
- Bottom row: 4 unit squares (columns 1-4).
- The top-right cell (row 1, column 4) is missing, giving a stepped outline.
- The total number of squares of all sizes (1x1, 2x2, 3x3) in the figure.
- A counted square must have all of its cells present in the figure.
- Squares may overlap and be of different sizes.
Plan
#2 Make a Systematic List · also uses: #7 Identify Subproblems#1 Draw a Diagram
To avoid missing or double-counting, I organize the count by square size (a systematic list): first all 1x1 squares, then 2x2, then 3x3. Splitting by size turns one tricky count into a few easy subproblems, and sketching the grid lets me check which big squares actually fit inside the stepped shape.
Execute
Review
There must be more small squares than big ones, and indeed 11 > 5 > 1, which fits the picture; the total 17 is larger than the 11 unit cells, as expected once overlapping bigger squares are included. No 4x4 square is possible since the figure is only 3 rows tall, so we have not missed a larger size.
Look for a pattern (tool 5): for a full 3x4 grid the counts would be 12 (1x1) + 6 (2x2) + 2 (3x3) = 20; removing the one missing top-right cell deletes 1 unit square, 1 of the 2x2 squares, and 1 of the 3x3 squares, giving 20 - 3 = 17, confirming the answer.
Standards · min grade 3
3.OA.D.9Identify arithmetic patterns and explain using properties of operations — Adding the per-size subtotals and reasoning about the count systematically.1.G.A.2Compose two-dimensional shapes or three-dimensional shapes — Recognizing that 4 or 9 unit squares compose a larger 2x2 or 3x3 square.