Let’s walk through how to solve one of the most classic shape-counting puzzles:
How many total squares can you find in a 4×4 square grid?
We need to count all square shapes, not just the smallest ones.
A square can be any size: 1×1, 2×2, 3×3, or 4×4.
Let’s count them by size:
Each small cell is a 1×1 square.
There are 4 rows and 4 columns:
→ 4 × 4 = 16 squares
Each 2×2 square occupies a 2×2 block of cells.
We can fit these starting from rows 1–3 and columns 1–3:
→ (4 − 1) × (4 − 1) = 3 × 3 = 9 squares
Each 3×3 square fits within a 3×3 portion of the grid.
They can start from rows 1–2 and columns 1–2:
→ (4 − 2) × (4 − 2) = 2 × 2 = 4 squares
There’s only one 4×4 square — the whole grid itself:
→ 1 × 1 = 1 square
16 + 9 + 4 + 1 = 30
1. What is a rectangle? What is a square? Which are there more of in the world - rectangles or squares?
2. How many squares are in each picture?
3. How many rectangles are in each picture? (Count all rectangles formed by the grid lines.)
4. How many triangles are in this picture?
5. How many triangles are in this picture?