Algebra · Sequences
1 / 8
The nth term of a quadratic sequence
Why constant SECOND differences signal an n² rule, why the n²-coefficient is HALF the second difference, and the subtract-and-conquer routine that finds the full an² + bn + c.
Algebra · Sequences
The nth term of a quadratic sequence
Why constant SECOND differences signal an n² rule, why the n²-coefficient is HALF the second difference, and the subtract-and-conquer routine that finds the full an² + bn + c.
Why it works
When first differences aren't constant but keep changing by the same amount, the sequence is quadratic. For : differences — climbing by 2 each time. That constant second difference is the fingerprint of an term.Why half? Watch itself: has differences and second difference 2. Scaling to scales the second difference to . So
— the second difference is DOUBLE the coefficient, and forgetting to halve (writing for a second difference of 2) is the standard error.
The subtract-and-conquer routine:
- Second difference → (halve it).
- Subtract from every term. What's left is a LINEAR sequence
- Add the pieces and check against two terms.
For : differences , second difference 4, so . Subtract : every term leaves exactly . Nth term: .
The full three-piece case works the same. : second difference 4, ; subtracting leaves ; so the nth term is . Check : . ✓
Using and testing a quadratic rule. The 6th term of is — brackets and order of operations as ever. And "is 150 a term of ?" becomes ; since and , 145 is not a perfect square — no.