In the sequence , , , , each term after the third is found by subtracting the previous term from the sum of the two terms that precede that term. For example, the fourth term is . What is the term in this sequence?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
The rule says a_{n+2} + a_{n+3} = a_n + a_{n+1}, so consecutive-pair sums repeat every two steps and the even-indexed terms drop by exactly 2 each time.
Solution
The rule is . Move the last term across:
So the sum of two neighbors is unchanged when you slide the pair two places to the right. Starting from an odd index, every pair sums to ; starting from an even index, every pair sums to .
For any even index , use both facts:
Subtracting, . The even-indexed terms form an arithmetic progression with difference : , , , and in general .
With , and .
The answer is .
Why this works
A recurrence with coefficients hides a conserved quantity; rearranging it to put a matching expression on both sides reveals the invariant "sum of adjacent terms, shifted by two." Once an invariant is found, distant terms are reachable by simple arithmetic instead of by iterating. Computing the first several terms and watching every other one is a good way to guess the same structure.
Alternative approach
Just compute: . The even positions read , decreasing by , while the odd positions climb by . Position is the nd even position, so its value is .
The trap
An off-by-one in the number of -2 steps from a_2 to a_{2004} (1001 steps, not 1002), which produces -2, choice (B).
Common mistakes
- An off-by-one in the number of -2 steps from a_2 to a_{2004} (1001 steps, not 1002), which produces -2, choice (B).
- Reading the odd-position pattern ( each step) and applying it to an even position, which gives a value near .
Techniques
Use an invariant, parity, or coloring argument · Compute small cases, spot the pattern, generalize