Skip to content

9709 · 1.6

Series

A series is simply the sum of the terms in a sequence. We'll explore two main types: arithmetic (adding a constant amount) and geometric (multiplying by a constant amount), and learn powerful shortcuts to calculate their sums.

Need to know

What you need to know

  • This formula only works when the first term in the bracket is 1.
  • To expand $(a+bx)^n$, you must first write it as $a^n(1+\frac{b}{a}x)^n$.
  • The expansion is an infinite series, so questions will ask for the first few terms.
  • The validity condition is crucial: for $(1+kx)^n$, the expansion is valid when $|kx|<1$, or $|x| < \frac{1}{|k|}$.

Explanation

Building with Patterns

  1. Binomial expansion: (1 + x)ⁿ for |x| < 1 when n is not a positive integer.
  2. Arithmetic series: u_n = a + (n−1)d; sum S_n = n/2(2a + (n−1)d).
  3. Geometric series: u_n = ar^(n−1); sum S_n = a(1−r^n)/(1−r) for r ≠ 1.
  4. Sum to infinity exists when |r| < 1: S_∞ = a/(1−r).