Overview
Sequences appear across AMC and AIME. Recognize standard forms and convert between recursive and closed forms.
Recurrences are especially common: compute small cases, write a relation, and solve or iterate to the target.
Key Ideas
- Arithmetic sequence: .
- Geometric sequence: .
- Telescoping sums simplify when terms cancel in pairs.
- Recurrences model "build from smaller" structures.
- Linear recurrences with constant coefficients can be solved via characteristic equations.
Core Skills
Convert Recurrence to Closed Form
Compute initial terms, guess a form, then verify by induction or by solving the characteristic equation.
Spot Telescoping
Rewrite terms with partial fractions or differences so cancellation is visible.
Identify Growth Rates
Use ratios to determine whether sequences are arithmetic, geometric, or neither.
Worked Example
If and , compute .
Then , and .
Recurrence Toolkit
Step-by-step method
- Compute small cases to spot a pattern.
- Write a recurrence that reduces size to smaller sizes.
- Use base cases to compute the desired term or solve explicitly.
Engineering Induction (pattern guessing)
Compute a few values, guess a closed form, then use it to answer the problem. It is fast but not always rigorous.
Linear Recurrence (constant coefficients)
If , try to get the characteristic equation . Solve for , then combine the solutions and fit constants using base cases.
More Examples
Example 1: Domino Tilings
Let be the number of ways to tile a board with dominoes. The last placement is either a vertical domino (leaving ) or two horizontal dominoes (leaving ). So
With , , we get .
Example 2: Binary Strings
Let be the number of binary strings of length with no consecutive 1s. If the last bit is 0, there are choices; if the last bit is 1, the previous bit must be 0, giving choices. So .
Example 3: Telescoping Sum
Compute .
Use to get .
Strategy Checklist
- Classify the sequence (arithmetic, geometric, recurrence).
- Compute a few terms before guessing a formula.
- Use characteristic equations for linear recurrences.
- Look for cancellation in sums.
Common Pitfalls
- Off-by-one errors in index shifts.
- Using a closed form without verifying base cases.
- Mixing arithmetic and geometric formulas.
Practice Problems
| Status | Source | Problem Name | Difficulty | Tags | ||
|---|---|---|---|---|---|---|
| AMC 10 | Hard | Show TagsRecursion, Sequences | ||||
| AIME | Hard | Show TagsSeries | ||||
Module Progress:
Join the AoPS Community!
Stuck on a problem, or don't understand a module? Join the AoPS community and get help from other math contest students.
