In a number pyramid each number is the sum of the two numbers directly below it. Fill these pyramids: (a) bottom row 6, 2; (b) bottom row 3, 4, 3; (c) bottom row 5, 4, 5, 0.
Hint. Work upwards, one row at a time, adding neighbouring pairs.
The rule. Each box holds the sum of the two boxes immediately below it, so a bottom row of n numbers gives a row of n − 1 above it, and so on to a single number at the top.
(a) Bottom row 6, 2. Top = 6 + 2 = 8
8
6 2
(b) Bottom row 3, 4, 3. Second row: 3 + 4 = 7 and 4 + 3 = 7 Top: 7 + 7 = 14
14
7 7
3 4 3
(c) Bottom row 5, 4, 5, 0. Third row from bottom: 5 + 4 = 9, 4 + 5 = 9, 5 + 0 = 5 Second row: 9 + 9 = 18, 9 + 5 = 14 Top: 18 + 14 = 32
32
18 14
9 9 5
5 4 5 0
A check worth making. In (b) the bottom row is symmetric (3, 4, 3), and so is every row above it — symmetry in the bottom row is always inherited upwards, because the pyramid is built by the same rule from both ends.
✦ (a) top = 8; (b) rows 7, 7 then top 14; (c) rows 9, 9, 5 then 18, 14 then top 32.
