← Back to High School Math

Sequences, Series, and Limits

High School Math · Pre-CalculusPreview

1. Introduction

Patterns are everywhere: the seats in each row of a theater, the bounces of a ball losing height, the balance of a loan paid down month by month, the way a drug concentration halves in the bloodstream. Sequences and series are the mathematics of such patterns — they let us describe an ordered process, predict any step of it without listing all the earlier steps, and add up enormous (even infinite) collections of numbers in a single stroke.

A sequence is just an ordered list of numbers generated by a rule. A series is what you get when you add those numbers up. The genius of the subject is the existence of closed-form formulas: instead of grinding out term after term, we derive a compact expression that jumps straight to the 5050th term or sums the first 10001000 terms instantly. We will derive these formulas, not merely memorize them, because seeing why they work makes them impossible to forget and easy to adapt.

The deepest idea here is the limit — the value a process approaches as it runs forever. It is genuinely surprising that an infinite sum of positive numbers can total a finite amount, yet 12+14+18+=1\tfrac12 + \tfrac14 + \tfrac18 + \cdots = 1. This single idea, that a sequence can converge toward a value, is the foundation on which all of calculus is built. Mastering arithmetic and geometric sequences now gives you both immediate problem-solving power and a running start on the limits you will meet next.

The sigma symbol \sum is not mysterious — it is just a compact way to write a long addition. When you see k=1n(2k+1)\sum_{k=1}^{n} (2k + 1), expand it as 3+5+7+3 + 5 + 7 + \cdots and recognize the arithmetic pattern, or substitute into the closed-form sum formula directly.

2. Core Concepts

2.1 Sequences and notation

A sequence is a function whose inputs are the positive integers. We write its terms as a1,a2,a3,a_1, a_2, a_3, \dots, where ana_n denotes the nnth term (the term in position nn). A sequence can be described two ways:

  • Explicitly (closed form): ana_n is given directly as a formula in nn, e.g. an=2n+1a_n = 2n + 1 gives 3,5,7,9,3, 5, 7, 9, \dots
  • Recursively: each term is defined from previous ones plus a starting value, e.g. a1=3, an=an1+2a_1 = 3,\ a_n = a_{n-1} + 2.

The explicit form is what lets us "teleport" to any term, while the recursive form often matches how a real process unfolds.

2.2 Arithmetic sequences

In an arithmetic sequence each term is obtained by adding a fixed number, the common difference dd, to the previous term: an=an1+da_n = a_{n-1} + d. The terms march up (or down) in equal steps, like 4,7,10,13,4, 7, 10, 13, \dots with d=3d = 3.

Deriving the nnth term. Starting from a1a_1 and adding dd a total of n1n - 1 times to reach position nn:

an=a1+(n1)d.a_n = a_1 + (n-1)d.

The factor is n1n - 1, not nn, because the first term has had zero additions applied — a classic source of off-by-one errors.

2.3 Geometric sequences

In a geometric sequence each term is obtained by multiplying the previous one by a fixed number, the common ratio rr: an=ran1a_n = r\,a_{n-1}. Terms scale up or down by equal factors, like 3,6,12,24,3, 6, 12, 24, \dots with r=2r = 2, or 80,40,20,10,80, 40, 20, 10, \dots with r=12r = \tfrac12.

Deriving the nnth term. Multiplying a1a_1 by rr a total of n1n - 1 times:

an=a1rn1.a_n = a_1\, r^{\,n-1}.

Geometric sequences capture exponential behavior — constant percentage growth or decay — which is why they model populations, interest, and radioactive decay.

2.4 Series and summation notation

A series is the sum of the terms of a sequence. The sum of the first nn terms is the nnth partial sum, written SnS_n. Sigma notation packs a sum compactly:

Sn=k=1nak=a1+a2++an.S_n = \sum_{k=1}^{n} a_k = a_1 + a_2 + \cdots + a_n.

The variable kk is the index, running from the bottom value to the top value. Changing the index label does not change the sum: k=1nak=j=1naj\sum_{k=1}^{n} a_k = \sum_{j=1}^{n} a_j.

2.5 Deriving the arithmetic sum

Write the sum forwards and backwards and add the two lines term by term (the trick attributed to a young Gauss):

Sn=a1+(a1+d)++an,S_n = a_1 + (a_1 + d) + \cdots + a_n, Sn=an+(and)++a1.S_n = a_n + (a_n - d) + \cdots + a_1.

Each of the nn vertical pairs adds to a1+ana_1 + a_n, so 2Sn=n(a1+an)2S_n = n(a_1 + a_n), giving

Sn=n2(a1+an).S_n = \frac{n}{2}\,(a_1 + a_n).

In words: the sum equals the number of terms times the average of the first and last term.

An equivalent form when ana_n is unknown:

Sn=n2(2a1+(n1)d).S_n = \frac{n}{2}\big(2a_1 + (n-1)d\big).

2.6 Deriving the geometric sum

Write Sn=a1+a1r+a1r2++a1rn1S_n = a_1 + a_1 r + a_1 r^2 + \cdots + a_1 r^{n-1} and multiply by rr:

rSn=a1r+a1r2++a1rn.rS_n = a_1 r + a_1 r^2 + \cdots + a_1 r^{n}.

Subtract the second line from the first; everything cancels in the middle:

SnrSn=a1a1rn  Sn(1r)=a1(1rn),S_n - rS_n = a_1 - a_1 r^{n} \ \Rightarrow\ S_n(1 - r) = a_1(1 - r^{n}),

so (for r1r \neq 1)

Sn=a11rn1r.S_n = a_1\,\frac{1 - r^{n}}{1 - r}.

When r=1r = 1, every term equals a1a_1 and Sn=na1S_n = n a_1 directly.

2.7 Limits and the infinite geometric series

A limit describes the value a sequence approaches as nn \to \infty. For a geometric series, consider what happens to rnr^n in the sum formula. If r<1|r| < 1, then rn0r^n \to 0 as nn grows (repeated multiplication by a fraction shrinks toward zero), so the partial sum approaches a finite limit:

S=limna11rn1r=a11r,r<1.S = \lim_{n\to\infty} a_1\,\frac{1 - r^{n}}{1 - r} = \frac{a_1}{1 - r}, \qquad |r| < 1.

We say the series converges to SS. If r1|r| \ge 1, the terms do not shrink to zero, the partial sums grow without bound (or oscillate), and the series diverges — the infinite-sum formula does not apply.

2.8 Sequence limits (preview)

A sequence {an}\{a_n\} has limit LL if the terms get arbitrarily close to LL as nn grows. We write limnan=L\lim_{n \to \infty} a_n = L. For example, in the geometric sequence an=(12)n1a_n = \left(\tfrac{1}{2}\right)^{n-1}, we have limnan=0\lim_{n \to \infty} a_n = 0 because r<1|r| < 1. This is the discrete version of the limit concept that calculus extends to continuous functions.

2.9 Identifying the type of sequence

To classify an unknown sequence, compute consecutive differences and ratios:

  • If anan1a_n - a_{n-1} is constant for all nn, the sequence is arithmetic with d=anan1d = a_n - a_{n-1}.
  • If anan1\dfrac{a_n}{a_{n-1}} is constant for all nn, the sequence is geometric with r=anan1r = \dfrac{a_n}{a_{n-1}}.

Neither constant difference nor constant ratio means the sequence is neither arithmetic nor geometric — you need a different approach.

2.10 Applications: annuities and loan payments

An annuity deposits a fixed amount PP at the end of each period into an account earning rate rr per period. After nn deposits the balance is a geometric series. The future value formula

FV=P(1+r)n1rFV = P \cdot \frac{(1+r)^n - 1}{r}

comes directly from summing P(1+r)n1+P(1+r)n2++PP(1+r)^{n-1} + P(1+r)^{n-2} + \cdots + P.

2.11 Repeating decimals as geometric series

A repeating decimal like 0.3=0.33330.\overline{3} = 0.3333\ldots can be written as 0.3+0.03+0.003+0.3 + 0.03 + 0.003 + \cdots, a geometric series with a1=0.3a_1 = 0.3 and r=0.1r = 0.1. Since r<1|r| < 1, the sum is 0.310.1=0.30.9=13\dfrac{0.3}{1 - 0.1} = \dfrac{0.3}{0.9} = \dfrac{1}{3}.

2.12 The divergence test (necessary condition)

If limnan0\lim_{n \to \infty} a_n \neq 0, then an\sum a_n diverges. This is a one-way test: if terms do go to zero, the series might still diverge (e.g. the harmonic series). For geometric series, r<1|r| < 1 guarantees both an0a_n \to 0 and convergence.

2.13 Fibonacci and recursive sequences (preview)

Not every sequence is arithmetic or geometric. The Fibonacci sequence 1,1,2,3,5,8,1, 1, 2, 3, 5, 8, \dots is defined recursively by F1=F2=1F_1 = F_2 = 1 and Fn=Fn1+Fn2F_n = F_{n-1} + F_{n-2}. Its explicit formula (Binet's formula) involves the golden ratio ϕ=1+52\phi = \dfrac{1 + \sqrt{5}}{2}, but for most recursive sequences you solve by finding the pattern or using generating-function techniques beyond this course.

Continue reading with Premium

Upgrade to read the full article and unlock all Premium features.

Free

  • Unlimited practice — all difficulties
  • 3 hints / day
  • Community solutions
  • 2 timed mocks / month

Premium

  • Full article + all 57+ theory guides
  • Unlimited hints on practice problems
  • Unlimited timed mock exams & PDF worksheets
Log in