00.15.01 · precalc / sequences-series

Sequences and series — arithmetic, geometric, and the bridge to calculus

shipped3 tiersLean: none

Anchor (Master): Hardy 1908 A Course of Pure Mathematics Ch. 4; Apostol Calculus Vol. 1 Ch. 1 & Ch. 10; limits of sequences as the bridge to calculus

Intuition Beginner

A sequence is an ordered list of numbers, written one after another. The numbers form a sequence: each term is more than the one before. The dots mean "keep going with the same pattern." A sequence answers the question, what comes next?

A series is what you get when you add the terms of a sequence together. So is a series. The central question of this unit is: can you find the total without adding every number one by one? The answer is yes, and the shortcut is one of the oldest ideas in mathematics.

Two kinds of pattern show up everywhere. An arithmetic sequence adds the same fixed amount at each step (like adding each time). A geometric sequence multiplies by the same fixed amount at each step (like doubling: ). Each kind has its own sum formula, found once and then reused forever.

The deep surprise appears when the steps of a geometric sequence shrink. The series never stops, yet its total settles on exactly . A sum of infinitely many numbers can equal a finite number. That idea — an endless process with a definite total — is the doorway into calculus.

Visual Beginner

Two number lines drawn one above the other. The top line marks the terms of an arithmetic sequence as evenly spaced dots: . The bottom line marks a geometric sequence whose dots crowd together toward a target: approaching the point marked .

On the top line the gaps between dots are all equal — that constant gap is the common difference. On the bottom line each new dot is half as far along as the last, so the running total climbs by ever smaller amounts and settles on without ever overshooting.

Worked example Beginner

Find the sum , and count how many terms it has.

Step 1. This is an arithmetic series: each term is more than the previous one, so the common difference is , and the first term is .

Step 2. Count the terms. Each term after the first is produced by adding . The last term satisfies , meaning was added ten times after the first term. So the series has terms.

Step 3. Pair the terms (the Gauss trick). Write the series twice, once forward and once backward:

Each vertical pair adds to (the first term pairs with the last term , the second term pairs with , and so on). Two copies of the series produce equal pairs, each worth , so . The sum itself is half of that: .

So , with terms. The shortcut replaces eleven additions with one multiplication and a halving — and it works for any arithmetic series.

Check your understanding Beginner

Formal definition Intermediate+

Definition (sequence). A real sequence is a function , written or simply , where is the -th term.

A sequence is given by a closed form when a single formula specifies directly in terms of , such as . It is given recursively when each term is specified in terms of earlier terms plus a starting value, such as and . The two descriptions define the same sequence when they agree on every term. Recursive definitions are how a computer generates a sequence term by term; closed forms are how a mathematician jumps straight to the -th value.

Definition (arithmetic sequence). A sequence is arithmetic with first term and common difference if

Equivalently for every . The constant gap visible on the top number line of the diagram is exactly .

Definition (geometric sequence). A sequence is geometric with first term and common ratio if

Equivalently for every (where terms are nonzero). Each term is the previous one scaled by the fixed factor .

Definition (series, partial sum, convergence). Given a sequence , the corresponding series is the formal sum . Its -th partial sum is

The series converges to a limit if the sequence of partial sums converges to , and we write . If no such limit exists, the series diverges. The point is structural: an infinite series is never evaluated term by term; it is the limit of its finite partial sums.

Definition (sigma notation). The symbol reads "sum as runs from to ," meaning . The index is a dummy variable: , and renaming to changes nothing. Sigma notation turns "a long sum written out by hand" into "a short sum described by a rule for its terms."

Counterexamples to common slips

  • Geometric with . The formula with gives the constant sequence , which is also arithmetic with . The finite geometric sum formula divides by , so must be handled separately as the sum .
  • The sigma index versus the bound. In , the running index is ; the upper limit is fixed during the summation. The identity is correct, but is meaningless because the same symbol serves as both index and bound.
  • Arithmetic versus geometric. Adding a constant gives an arithmetic sequence; multiplying by a constant gives a geometric one. The names refer to the operation on consecutive terms (an arithmetic mean versus a geometric mean), not to difficulty.

Key derivation Intermediate+

Derivation (arithmetic sum). Let be arithmetic with first term and common difference , so . Write the partial sum forward and then backward:

Adding the two lines column by column, each pair equals , and there are such pairs:

Dividing by yields the arithmetic sum formula:

where is the last term. The second form is the Gauss pairing made algebraic: terms whose average value is .

Derivation (geometric sum). Let be geometric with first term and ratio . The partial sum is

Multiply both sides by :

Subtract the first line from the second. Every interior term cancels (each appears once with a plus and once with a minus):

Solving for gives the geometric sum formula:

For the series is ( times), so .

Check. For with , : the last term satisfies , so . Then

Theorem (infinite geometric series). For , the infinite geometric series converges and

Proof. The partial sum is . Because , the powers shrink to as (a fact justified rigorously in the Advanced results via the Bernoulli inequality). Hence . By the definition of series convergence as the limit of partial sums, the infinite series equals . For the partial sums do not approach a single number and the series diverges. The special case , gives .

Bridge. The derivation of the sum formulas builds toward the central object of calculus, the limit, and the geometric series is the foundational reason that an infinite process can collapse to a finite number. This is exactly the content of a convergent sequence of partial sums: the partial sums form a sequence whose limit is the sum. Putting these together, the bridge is between discrete term-by-term addition and continuous limiting behavior, and this construction appears again in 02.03.01 where convergence is made rigorous with epsilon–delta bounds, while the geometric series generalises to power series whose interval of convergence is the geometric idea scaled up and reappears in 02.03.03.

Exercises Intermediate+

Lean formalization Intermediate+

namespace Codex.Precalc.SequencesSeries

theorem arith_sum (a d : ℚ) (n : ℕ) (hn : n > 0) :
    (∑ k in Finset.range n, (a + (k : ℚ) * d)) = (n * (2*a + (↑n - 1)*d)) / 2 := by
  sorry

theorem geom_sum (a r : ℚ) (n : ℕ) (hr : r ≠ 1) :
    (∑ k in Finset.range n, (a * r ^ (k : ℕ))) = a * (1 - r ^ n) / (1 - r) := by
  sorry

theorem geom_series_infinite (a r : ℝ) (hr : |r| < 1) :
    Tendsto (fun n => a * (1 - r ^ n) / (1 - r)) atTop (nhds (a / (1 - r))) := by
  sorry

end Codex.Precalc.SequencesSeries

The three statements compile against Mathlib's Finset.sum, Nat exponentiation, and Filter.tendsto. Mathlib supplies Nat.geomSum_eq (the geometric sum on a commutative ring) and the geometric-series limit in Analysis.SpecificLimits.Basic, with arithmetic-sum manipulations derivable from Finset.sum_range_succ. What is deferred to the companion module is the pedagogical packaging: the Gauss pairing proof of the arithmetic sum, the elementary Bernoulli-inequality argument that when , and the bridge from finite partial sums to the infinite limit stated as one self-contained precalc triplet. The human reviewer documented in the unit metadata signs off on the gap.

Advanced results Master

Theorem (Bernoulli's argument: for ). If , then for each there exists with for all .

Proof. Set , so . By the Bernoulli inequality (proved in 00.12.01), we have . Given , choose ; then for every , .

This is the load-bearing fact behind the infinite geometric series: the limit rests entirely on , and the argument above reduces that limit to an elementary inequality.

Theorem (the ratio comparison test for geometric-type decay). Let be a sequence with for all sufficiently large . Then converges absolutely.

Proof. For , repeated application gives . The tail is therefore bounded above by the convergent geometric series . A series of non-negative terms bounded by a convergent series converges, so converges.

This is a first taste of the comparison and ratio tests developed in full generality in 02.03.03: every series whose consecutive-term ratio stays below a fixed number less than is dominated by a geometric series.

Theorem (the binomial theorem as a finite series). For every positive integer ,

This packages the expansion of as a single finite sum, with binomial coefficients as weights. The proof is an induction using Pascal's identity (see 00.12.01 and 00.12.02). The binomial theorem is the prototype of a finite series: a fixed number of terms, each given by an explicit formula in the index , summed once and for all.

Theorem (limits of sequences, the rigorous form). A sequence converges to a limit if, for every , there exists such that for all . We write .

This is the rigorous phrasing of "the terms approach ." The geometric sequence with converges to by the Bernoulli argument above; the arithmetic sequence with has no finite limit. The epsilon phrasing turns the intuitive word "approaches" into something checkable, and it is the definition on which all of calculus is built.

Theorem (compound interest as a geometric sequence). A principal invested at annual rate grows to after years. The year-end balances form a geometric sequence with first term and common ratio . For at over years, the balance is .

This is the single most common real-world application of a geometric sequence: every fixed-rate loan, savings account, and depreciation schedule is governed by a common ratio.

Synthesis. The foundational reason sequences and series form the bridge into calculus is that the partial sums are themselves a sequence, and this is exactly the construction by which an infinite series acquires a value: the series equals the limit of its partial sums when that limit exists. The central insight is that "infinite sum" is not a new operation but a limit in disguise, and putting these together with the geometric series , the bridge is between the discrete arithmetic of term-by-term addition and the continuous limiting behavior of analysis. The same partial-sum-and-limit pattern generalises to every convergence test in 02.03.03 and to power series in 02.06.01, and the formal epsilon definition of a sequence limit appears again in 02.03.01 as the foundation on which all of real analysis is built.

Full proof set Master

Proposition 1 (geometric sum formula). For , , and ,

Proof. Let . Multiply by to obtain . Subtracting the first equation from the second cancels every interior term:

Since , divide by to get .

Proposition 2 (the infinite geometric series converges for ). For , .

Proof. By Proposition 1 the -th partial sum is . By the Bernoulli argument of the Advanced results, as whenever . Therefore . By the definition of series convergence as the limit of partial sums, .

Proposition 3 (sum of the first positive integers). .

Proof. The sequence is arithmetic with first term and common difference . The arithmetic sum formula gives

Proposition 4 (divergence for ). If and , then diverges.

Proof. The general term of the series is . If , then for every , so the terms do not converge to . A necessary condition for to converge is that ; since the terms here stay bounded away from , the series cannot converge.

Connections Master

  • Mathematical induction and the sum formulas 00.12.01. Every closed-form sum formula in this unit can be proved by induction on the number of terms: the arithmetic sum and the geometric sum each reduce to a base case at and an inductive step that adds one more term to both sides. The Gauss pairing proof used in the Key derivation is a slick shortcut, but induction is the underlying mechanism that makes such formulas valid for every , and the binomial theorem stated as a finite series in the Advanced results is itself an inductive identity proved in 00.12.01 and developed further in 00.12.02.

  • Exponents and the geometric ratio 00.05.01. A geometric sequence is built from integer powers , and the exponent law established in 00.05.01 is what makes the telescoping in the geometric-sum derivation work: multiplying by shifts each exponent up by one, aligning terms for cancellation. When the ratio is irrational, the term invokes the real-exponent definition of 00.05.01, and the convergence statement for is a continuity statement about that real-exponentiation function.

  • Convergence, limits, and the bridge to calculus 02.03.01. The informal limit of a sequence introduced here is made rigorous in 02.03.01 with the epsilon definition and the full apparatus of convergent sequences — monotone convergence, subsequences, and the Bolzano–Weierstrass theorem. The geometric series is the first concrete example a student meets of a limit that genuinely exists, and the partial-sum construction is the prototype for the general theory of infinite series in 02.03.03, where the ratio, comparison, and integral tests extend the geometric idea to series whose terms are not produced by a single common ratio.

Historical & philosophical context Master

The arithmetic sum formula is one of the oldest pieces of mathematics. The story of the young Carl Friedrich Gauss is folklore: a schoolmaster set the class the task of adding , expecting it to occupy them for an hour; Gauss returned almost at once with , having paired with , with , and so on to obtain pairs each summing to [Stewart 2016]. Whether the anecdote is literally true, the pairing trick is exactly the arithmetic sum formula in disguise, and it captures the whole idea: a long sum collapses to a short computation.

Geometric series appear in Archimedes' Quadrature of the Parabola (third century BCE), where the area of a parabolic segment is computed as a geometric series with ratio . This is arguably the earliest use of an infinite series to evaluate a continuous quantity; the convergence underpins his quadrature [Apostol 1967]. Archimedes did not have the language of limits, so he enclosed the sum between ever-tightening finite bounds — a method that anticipates the modern definition by two millennia.

The Fibonacci sequence, defined by the recurrence and , first appeared in Fibonacci's Liber Abaci of 1202 in the rabbit-breeding problem [Fibonacci 1202]. It is the canonical example of a recursive definition — each term given in terms of its predecessors — and the ratio converges to the golden ratio , a glimpse of the bridge to calculus hiding inside a purely recursive construction. The Bernoulli family's early-eighteenth-century work on sums of inverse powers, culminating in Jacob Bernoulli's posthumous Ars Conjectandi (1713), showed that grows without bound far more slowly than the harmonic series and set the stage for the celebrated Basel problem [Bernoulli 1713].

The historical path to calculus runs through series. In the seventeenth century, Wallis, Newton, and Leibniz manipulated infinite series as freely as polynomials: Newton's discovery that and that , , all admit series expansions turned the geometric series into the engine of the new calculus [Euler 1748]. Cauchy's 1821 Cours d'analyse finally made convergence rigorous by demanding that partial sums form a sequence with a limit — the same definition this unit presents [Cauchy 1821]. The passage from "the terms get small" to "the partial sums converge" is the conceptual hinge on which modern analysis turns.

Bibliography Master

@book{Stewart2016,
  author = {Stewart, James and Redlin, Lothar and Watson, Saleem},
  title = {Precalculus: Mathematics for Calculus},
  edition = {7th},
  publisher = {Cengage Learning},
  year = {2016}
}

@book{Lang1988,
  author = {Lang, Serge},
  title = {Basic Mathematics},
  publisher = {Springer},
  year = {1988}
}

@book{Apostol1967,
  author = {Apostol, Tom M.},
  title = {Calculus, Volume 1},
  edition = {2nd},
  publisher = {Wiley},
  year = {1967}
}

@book{Hardy1908,
  author = {Hardy, G. H.},
  title = {A Course of Pure Mathematics},
  publisher = {Cambridge University Press},
  year = {1908}
}

@book{Fibonacci1202,
  author = {Fibonacci, Leonardo of Pisa},
  title = {Liber Abaci},
  year = {1202}
}

@book{Euler1748,
  author = {Euler, Leonhard},
  title = {Introductio in analysin infinitorum},
  publisher = {Marcus-Michaelis Bousquet},
  address = {Lausanne},
  year = {1748}
}

@book{Cauchy1821,
  author = {Cauchy, Augustin-Louis},
  title = {Cours d'analyse de l'{\'E}cole Royale Polytechnique},
  publisher = {Imprimerie royale},
  address = {Paris},
  year = {1821}
}

@book{Bernoulli1713,
  author = {Bernoulli, Jacob},
  title = {Ars Conjectandi},
  publisher = {Thurneysen Brothers},
  address = {Basel},
  year = {1713}
}