Patterns & Reasoning

Problem

Find the rule of a growing block stack

Blocks are stacked into L-shaped figures that grow by a fixed rule: 1, 3, 5, 7 blocks for the first four layers. Find the total number of blocks needed to build the stack up to 7 layers tall.
1 3 5 7
Operations
Your answer
blocks
How to solve
Strategy Look for a Pattern — The layer counts 1, 3, 5, 7 increase by 2 each time, so I extend that pattern to 7 layers, then add them up (building from the small known sums).
1STEP 1

Extend the layer pattern to 7 layers

Each layer adds 2, so extend 1, 3, 5, 7 to seven layers: the counts are 1, 3, 5, 7, 9, 11, 13 blocks.

1, 3, 5, 7, 9, 11, 13
2STEP 2

Add the blocks layer by layer

Add the seven counts step by step: 1+3=4, +5=9, +7=16, +9=25, +11=36, +13=49.

1+3+5+7+9+11+13 = 49
Answer
49 blocks
1+3+5+7+9+11+13 = 49
The sum of the first 7 odd numbers is 7 x 7 = 49, a known shortcut that confirms the layer-by-layer addition. 49 is a sensible total for a 7-layer growing stack.
Takeaway

Each layer grows by 2 blocks, and adding up the odd numbers 1+3+5+7+9+11+13 gives a neat 49!

  • Extend the layer pattern to 7 layers
  • Add the blocks layer by layer
Where next?
Another one like thissuggested
Same look, different logicsuggested
Step back and solidifysuggested

▶ Practice — 8 problems