Adding Infinitely Many Terms
A sequence is an ordered infinite list of numbers ; a series is what you get by adding a sequence's terms: . The central question is convergence — does adding infinitely many terms approach a finite total, or grow without bound?
A sequence converges to a limit if its terms get arbitrarily close to (e.g. ). A series converges if its partial sums approach a finite limit as . Remarkably, an infinite sum of positive terms can be finite: This is a geometric series , which converges precisely when , to the neat sum (starting from ).
A necessary warning sign: if the terms do not shrink to zero, the series cannot converge (the term test). But shrinking to zero is not sufficient — the classic harmonic series has terms going to zero yet diverges (grows without bound). Convergence is subtler than "terms get small," and mathematicians use tests (comparison, ratio, integral) to decide it.
Series are foundational in computing: they define functions (next lesson's Taylor series), analyze algorithm running times (summing costs across recursion levels), and underlie numerical methods. Knowing whether and how fast a series converges is a practical, not just theoretical, concern.
Common pitfall: assuming that if the terms the series must converge. That is false — the harmonic series has terms going to zero yet diverges. Terms shrinking to zero is necessary but not sufficient for convergence. (The valid one-way rule is the contrapositive: if the terms do not go to zero, the series definitely diverges.)