Use neighbor differences to find rule
Find the pattern in the number arrangement below, then find the first number in the eighth row.
| Row | Numbers |
|---|---|
| Row 1 | |
| Row 2 | |
| Row 3 | |
| Row 4 |
Each row lists consecutive odd numbers: Row 1 has number, Row 2 has , Row 3 has , and Row 4 has . The count of numbers in each row increases by from one row to the next.
Show solution
Understand
Consecutive odd numbers are written in rows. Row 1 holds 1 number, Row 2 holds 3 numbers, Row 3 holds 5, Row 4 holds 7, and so on, with each row holding 2 more numbers than the row above it. We must find the first number in the eighth row.
- Row 1: 1
- Row 2: 3, 5, 7
- Row 3: 9, 11, 13, 15, 17
- Row 4: 19, 21, 23, 25, 27, 29, 31
- Every entry is an odd number, listed in order with no odd numbers skipped
- The count of numbers per row goes 1, 3, 5, 7, ... (increases by 2 each row)
- The first number in the eighth row
- Numbers are consecutive odd numbers (1, 3, 5, 7, ...) flowing row to row
- Row n contains 2n - 1 numbers
Plan
#5 Look for a Pattern · also uses: #9 Solve an Easier Related Problem
List the first number of each early row (1, 3, 9, 19) and the gaps between them. The gaps grow by a steady amount, which lets us extend the rule down to the eighth row without writing out every odd number.
Execute
Review
Count check: Rows 1-7 hold 1 + 3 + 5 + 7 + 9 + 11 + 13 = 49 odd numbers, so Row 8 begins with the 50th odd number, which is 2 x 50 - 1 = 99. This matches, and 99 is odd as required.
Use the count rule directly (tool 9): the numbers before Row n total (n-1) x (n-1) odd numbers, so Row 8 starts at odd number (7 x 7) + 1 = 50th, equal to 99.
Standards · min grade 4
4.OA.C.5Generate a number or shape pattern following a given rule — Extending the row-start sequence 1, 3, 9, 19 down to the eighth row3.OA.D.9Identify arithmetic patterns and explain using properties of operations — Spotting that the jumps between row-starts grow by 4 each time