Reasoning · Grade 2-2 Various Patterns and Rules

Problem

Count stones at a given step of a growing pattern

Counters are laid in a row by a growing rule. After each counter we check the counts, looking for the first moment white is exactly 10 more than black. Find how many black counters there are at that moment in (1) and in (2).
Your answer
How to solve
Strategy Look for a Pattern — Write out the first several blocks (Make a Systematic List), track the running black and white totals, and Look for a Pattern in how the white-minus-black difference grows. Working the small early cases first (Solve an Easier Related Problem) reveals that the peak difference after the k-th finished step is a number we can read off directly.
1STEP 1

Part (1): tally after each completed white run

In (1), after k groups there are k blacks and 1+2+…+k whites.

whites = 1+2+…+k = (k(k+1))/2, blacks = k
2STEP 2

Part (1): find the difference rule

The gap is widest just as a white run finishes.

(k(k+1))/2 - k = (k(k-1))/2; (k(k-1))/2=10 → k=5
3STEP 3

Part (1): confirm 10 is not reached earlier

Finding where that first hits 10 gives 5 blacks in (1).

blacks=5, whites=15, 15-5=10
4STEP 4

Part (2): tally after each completed white group

In (2) the gap after the m-th white group is exactly m.

whites=m², blacks=m²-m
5STEP 5

Part (2): find the difference rule

So the gap first reaches 10 at m = 10.

m²-(m²-m)=m; m=10
6STEP 6

Part (2): count the black counters

The blacks then are 2+4+…+18 = 90.

blacks=m²-m=10²-10=90
Answer
(1) 5, (2) 90 black counters
In part (1) after 5 blacks there are 15 whites, and 15 - 5 = 10 exactly, with the difference never having reached 10 earlier. In part (2) after 9 black groups (90 blacks) and 10 white groups (100 whites), 100 - 90 = 10 exactly, and the earlier peaks were only 1 through 9 — so both answers are the first moment the gap is 10.
Takeaway

List a few groups, track white-minus-black, and the pattern of the peaks tells you exactly when the gap first hits 10 — only Grade 2-3 counting and adding!

  • Part (1): tally after each completed white run
  • Part (1): find the difference rule
  • Part (1): confirm 10 is not reached earlier
  • Part (2): tally after each completed white group
  • Part (2): find the difference rule
  • Part (2): count the black counters