Patterns & Reasoning

Problem

Find the rule linking position to term

A list of numbers grows by the same fixed amount each time: 1, 4, 7, 10, 13, and so on. I need to find what number sits in the 30th position.
Operations
Your answer
How to solve
Strategy Look for a Pattern — The list is a number pattern, so I look for how the position links to the number. By checking the first few terms (an easier related problem) I notice each number is its position multiplied by 3, then made 2 smaller. That rule lets me jump straight to the 30th number without writing out all 30 of them.
1STEP 1

See how the numbers grow

Neighbouring numbers differ by 3 every time, so the rule adds 3 at each step.

4-1=3, 7-4=3, 10-7=3
2STEP 2

Link the position to the number using small cases

Position 1 has jumped zero times and position 2 once, so any position has jumped (position - 1) times.

number=1+(position-1) × 3
3STEP 3

Write the rule as one clean expression

Tidying 1 + (position - 1) x 3 gives position x 3 - 2, and position 5 checks out at 13.

number=position × 3-2
4STEP 4

Use the rule for position 30

Put 30 in place of the position: 30 x 3 - 2 = 90 - 2 = 88. So the 30th number is 88.

30 × 3-2=90-2=88
Answer
88
The answer should be a whole number bigger than 13 and follow the 'add 3' pattern. From position 5 (which is 13) to position 30 is 25 more steps, and 25 x 3 = 75, so 13 + 75 = 88. This matches, and 88 is a plausible size for the 30th term, so the answer is reasonable.
Takeaway

Find the rule that ties the position to the number (here: position times 3, minus 2) and you can leap straight to the 30th term without listing them all.

  • See how the numbers grow
  • Link the position to the number using small cases
  • Write the rule as one clean expression
  • Use the rule for position 30
Where next?
Another one like thissuggested
Step back and solidifysuggested

▶ Practice — 12 problems