Geometry & Figures

Problem

Count all shapes hidden in a grid

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.
GeometryOperations
Your answer
squares
How to solve
Strategy Make a Systematic List — 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.
1STEP 1

Count the 1x1 squares

Every unit cell is a 1x1 square. The figure is made of exactly 11 unit cells, so there are 11 squares of size 1x1.

3 + 4 + 4 = 11
2STEP 2

Count the 2x2 squares

A 2x2 square needs a full 2-by-2 block of present cells. Using rows 1-2 (top+middle): blocks at columns 1-2 and 2-3 fit, but columns 3-4 needs the missing top-right cell, so that one fails (2 squares). Using rows 2-3 (middle+bottom): both rows are full, so columns 1-2, 2-3, and 3-4 all fit (3 squares).

2 + 3 = 5
3STEP 3

Count the 3x3 squares

A 3x3 square needs three full rows of three present cells. Columns 1-3 work because all three rows have columns 1, 2, and 3. Columns 2-4 would need the top-right cell, which is missing, so it fails. That gives 1 square of size 3x3.

1
4STEP 4

Add up all sizes

Total squares = (1x1 count) + (2x2 count) + (3x3 count). There is no room for a 4x4 square because the figure is only 3 rows tall.

11 + 5 + 1 = 17
Answer
17 squares
11 + 5 + 1 = 17
There must be more small squares than big ones, and indeed 11 is greater than 5, which is greater than 1 — that 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.
Takeaway

Count squares one size at a time, smallest to biggest, and you will never miss one - that's Grade 3 thinking you already have!

  • Count the 1x1 squares
  • Count the 2x2 squares
  • Count the 3x3 squares
  • Add up all sizes
Where next?
Another one like thissuggested

▶ Practice — 10 problems