Reasoning · Grade 2-1 Large and Small Shapes

Problem

Count all large and small shapes

A big square is split into four equal small squares. The top-left has one diagonal, the top-right and bottom-left have an X, and the bottom-right is empty. Count every hidden triangle, sorted by how many smallest pieces it uses (1 to 6).
Your answer
How to solve
Strategy Make a Systematic List — Counting hidden triangles is easy to get wrong by missing some or double-counting. The safe way is to make a systematic list: organize triangles by how many of the smallest pieces they cover (1, 2, 3, ...), count each group separately, then add. Drawing/marking on the diagram keeps track of which triangles I have already found, and splitting the work into 'size groups' is the subproblem idea.
1STEP 1

Find the smallest pieces (1 piece)

The two X squares give 8 and the single diagonal 2, so the smallest pieces number 10.

4 + 4 + 2 = 10
2STEP 2

Triangles made of 2 pieces

Joining two pieces gives 4 per X square, so 8.

4 + 4 = 8
3STEP 3

Triangles made of 3 pieces

Using the top-left diagonal as a side, two triangles span squares: 2.

1 + 2 = 3 pieces each, 2 such triangles
4STEP 4

Triangles made of 4, 5, and 6 pieces

Below the big diagonal is one 4-piece triangle, above it one of 6, and none uses 5.

4-piece: 1, 5-piece: 0, 6-piece: 1
5STEP 5

Add up every group

Adding every group: 10 + 8 + 2 + 1 + 0 + 1 = 22.

10 + 8 + 2 + 1 + 0 + 1 = 22
Answer
22 triangles
10 + 8 + 2 + 1 + 0 + 1 = 22
The given anchor (10 triangles of 1 piece) is reproduced exactly, which checks the figure was read correctly. The counts shrink as triangles get bigger (10, 8, 2, 1, 0, 1), which makes sense because bigger triangles are rarer. Every triangle's three sides lie on real drawn lines, and the empty bottom-right square correctly produces no triangles. Total 22 is reasonable for three sub-divided squares.
Takeaway

Sort the triangles by how many tiny pieces each one uses, count one group at a time, then add. That careful list keeps you from missing any or counting the same one twice!

  • Find the smallest pieces (1 piece)
  • Triangles made of 2 pieces
  • Triangles made of 3 pieces
  • Triangles made of 4, 5, and 6 pieces
  • Add up every group