Skip to main content

Sequences and Series

Board Coverage

BoardPaperNotes
AQAPaper 1, 2Arithmetic and geometric sequences, sigma notation
EdexcelP1, P2Same; recurrence relations in P2
OCR (A)Paper 1Arithmetic and geometric progressions
CIE (9709)P1, P3Sequences and series; P3 includes Σ\Sigma notation more extensively

1. Sequences and Series: Definitions

Definition. A sequence is an ordered list of numbers (a1,a2,a3,)(a_1, a_2, a_3, \ldots). We write (an)n=1(a_n)_{n=1}^{\infty} or simply (an)(a_n).

Definition. A series is the sum of the terms of a sequence: n=1Nan=a1+a2++aN\sum_{n=1}^{N} a_n = a_1 + a_2 + \cdots + a_N.

Definition. A sequence defined by an+1=f(an)a_{n+1} = f(a_n) with an initial value a1a_1 is a recurrence relation (or iterative sequence).


2. Arithmetic Sequences

Definition. An arithmetic sequence (arithmetic progression, AP) is a sequence where each term differs from the previous by a constant dd (the common difference):

an+1=an+da_{n+1} = a_n + d

2.1 The nnth Term

Theorem. The nnth term of an arithmetic sequence with first term aa and common difference dd is:

an=a+(n1)da_n = a + (n - 1)d

Proof. By induction on nn.

Base case (n=1n = 1): a1=a+0d=aa_1 = a + 0 \cdot d = a. ✓

Inductive step: Assume ak=a+(k1)da_k = a + (k - 1)d. Then:

ak+1=ak+d=a+(k1)d+d=a+kda_{k+1} = a_k + d = a + (k - 1)d + d = a + kd

This matches the formula for n=k+1n = k + 1. \blacksquare

2.2 Sum of an Arithmetic Series

Theorem. The sum of the first nn terms of an arithmetic sequence is:

Sn=n2(2a+(n1)d)=n2(a+)S_n = \frac{n}{2}(2a + (n - 1)d) = \frac{n}{2}(a + \ell)

where =an=a+(n1)d\ell = a_n = a + (n - 1)d is the last term.

Proof (Pairing Method). Write out the sum twice, once forwards and once backwards:

Sn=a+(a+d)+(a+2d)++(a+(n1)d)Sn=(a+(n1)d)+(a+(n2)d)++a\begin{aligned} S_n &= a + (a + d) + (a + 2d) + \cdots + (a + (n-1)d) \\ S_n &= (a + (n-1)d) + (a + (n-2)d) + \cdots + a \end{aligned}

Adding vertically, each pair sums to 2a+(n1)d2a + (n-1)d, and there are nn such pairs:

2Sn=n(2a+(n1)d)2S_n = n(2a + (n - 1)d)

Sn=n2(2a+(n1)d)S_n = \frac{n}{2}(2a + (n - 1)d) \quad \blacksquare

Intuition. Gauss supposedly used this method as a child to sum 1+2++100=50501 + 2 + \cdots + 100 = 5050. Pair the first and last, second and second-to-last, etc. Each pair sums to the same value.

Details

Example Find the sum of the first 20 terms of 3,7,11,15,3, 7, 11, 15, \ldots

Here a=3a = 3, d=4d = 4, n=20n = 20.

S20=202(2×3+19×4)=10(6+76)=10×82=820S_{20} = \frac{20}{2}(2 \times 3 + 19 \times 4) = 10(6 + 76) = 10 \times 82 = 820


3. Geometric Sequences

Definition. A geometric sequence (geometric progression, GP) is a sequence where each term is a constant multiple rr (the common ratio) of the previous term:

an+1=anra_{n+1} = a_n \cdot r

3.1 The nnth Term

Theorem. The nnth term of a geometric sequence with first term aa and common ratio rr is:

an=arn1a_n = ar^{n-1}

Proof. By induction.

Base case: a1=ar0=aa_1 = ar^0 = a. ✓

Inductive step: ak+1=akr=ark1r=arka_{k+1} = a_k \cdot r = ar^{k-1} \cdot r = ar^k. ✓ \blacksquare

3.2 Sum of a Finite Geometric Series

Theorem. For r1r \neq 1:

Sn=a1rn1r=arn1r1S_n = a\frac{1 - r^n}{1 - r} = a\frac{r^n - 1}{r - 1}

Proof. Write:

Sn=a+ar+ar2++arn1rSn=ar+ar2+ar3++arn\begin{aligned} S_n &= a + ar + ar^2 + \cdots + ar^{n-1} \\ rS_n &= ar + ar^2 + ar^3 + \cdots + ar^n \end{aligned}

Subtracting: SnrSn=aarnS_n - rS_n = a - ar^n

Sn(1r)=a(1rn)S_n(1 - r) = a(1 - r^n)

Sn=a(1rn)1rS_n = \frac{a(1 - r^n)}{1 - r} \quad \blacksquare

Intuition (Self-Similarity). Multiplying the sum by rr shifts every term one position to the right. The original sum and the shifted sum overlap almost completely — the difference is just the first term minus the new last term. This "shift and subtract" idea is the same principle behind many iterative algorithms.

3.3 Sum to Infinity

Theorem. If r<1|r| < 1, the infinite geometric series converges, and:

S=n=1arn1=a1rS_\infty = \sum_{n=1}^{\infty} ar^{n-1} = \frac{a}{1 - r}

Proof. From Sn=a(1rn)1rS_n = \frac{a(1 - r^n)}{1 - r}, we take the limit as nn \to \infty.

Since r<1|r| < 1, we have limnrn=0\lim_{n \to \infty} r^n = 0 (a standard limit; see below).

S=limnSn=a(10)1r=a1rS_\infty = \lim_{n \to \infty} S_n = \frac{a(1 - 0)}{1 - r} = \frac{a}{1 - r} \quad \blacksquare

Lemma. If r<1|r| < 1, then limnrn=0\lim_{n \to \infty} r^n = 0.

Proof. Write rn=enlnrr^n = e^{n \ln|r|}. Since r<1|r| < 1, we have lnr<0\ln|r| < 0. As nn \to \infty, nlnrn \ln|r| \to -\infty, so enlnr0e^{n \ln|r|} \to 0. \blacksquare

Theorem. If r1|r| \geq 1, the geometric series n=1arn1\sum_{n=1}^{\infty} ar^{n-1} diverges.

Proof. If r>1|r| > 1, then rn|r^n| \to \infty, so an|a_n| \to \infty. Since the terms don't tend to zero, the series diverges by the divergence test.

If r=1r = 1: Sn=na±S_n = na \to \pm\infty (unless a=0a = 0).

If r=1r = -1: Sn=aa+aa+S_n = a - a + a - a + \cdots, which oscillates and does not converge. \blacksquare

warning

The condition r<1|r| < 1 is essential. A common mistake is to apply the sum-to-infinity formula when r1|r| \geq 1, which gives nonsense.

Details

Example Find the sum to infinity of 1+12+14+18+1 + \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \cdots

Here a=1a = 1, r=12r = \frac{1}{2}, r<1|r| < 1.

S=LB1RB◆◆LB112RB=2S_\infty = \frac◆LB◆1◆RB◆◆LB◆1 - \frac{1}{2}◆RB◆ = 2


4. Sigma Notation

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

Properties:

k=1n(ak+bk)=k=1nak+k=1nbkk=1ncak=ck=1nak\begin{aligned} \sum_{k=1}^{n} (a_k + b_k) &= \sum_{k=1}^{n} a_k + \sum_{k=1}^{n} b_k \\ \sum_{k=1}^{n} ca_k &= c\sum_{k=1}^{n} a_k \end{aligned}

4.1 Standard Sums

k=1nk=n(n+1)2k=1nk2=n(n+1)(2n+1)6k=1nk3=n2(n+1)24\begin{aligned} \sum_{k=1}^{n} k &= \frac{n(n+1)}{2} \\ \sum_{k=1}^{n} k^2 &= \frac{n(n+1)(2n+1)}{6} \\ \sum_{k=1}^{n} k^3 &= \frac{n^2(n+1)^2}{4} \end{aligned}

Proof of k=1nk=n(n+1)2\sum_{k=1}^{n} k = \frac{n(n+1)}{2}. This is the arithmetic series with a=1a = 1, d=1d = 1, nn terms. By the formula: Sn=n2(2+(n1))=n(n+1)2S_n = \frac{n}{2}(2 + (n-1)) = \frac{n(n+1)}{2}. \blacksquare


5. Recurrence Relations

A recurrence relation defines each term in terms of previous terms. A recurrence relation of order kk requires kk initial conditions.

Example. un+1=2un+3u_{n+1} = 2u_n + 3, u1=1u_1 = 1.

u2=2(1)+3=5u_2 = 2(1) + 3 = 5, u3=2(5)+3=13u_3 = 2(5) + 3 = 13, u4=2(13)+3=29u_4 = 2(13) + 3 = 29, ...

Periodic sequences. If un+1=f(un)u_{n+1} = f(u_n) and the sequence returns to a previous value, it becomes periodic.

Example. un+1=1unu_{n+1} = \frac{1}{u_n}, u1=2u_1 = 2.

u2=12u_2 = \frac{1}{2}, u3=2u_3 = 2, u4=12u_4 = \frac{1}{2}, ... This is periodic with period 2.


6. Arithmetic Mean and Geometric Mean

Definition. The arithmetic mean (AM) of two positive numbers aa and bb is a+b2\frac{a+b}{2}. The geometric mean (GM) is ab\sqrt{ab}.

Theorem (AM-GM Inequality). For any positive real numbers a,ba, b:

a+b2ab\frac{a + b}{2} \geq \sqrt{ab}

Equality holds if and only if a=ba = b.

Proof. Since a,b>0a, b \gt{} 0, both a\sqrt{a} and b\sqrt{b} are real numbers. For any real number xx, we have x20x^2 \geq 0. In particular:

(ab)20(\sqrt{a} - \sqrt{b})^2 \geq 0

Expanding:

a2ab+b0a - 2\sqrt{a}\sqrt{b} + b \geq 0

a+b2aba + b \geq 2\sqrt{ab}

a+b2ab\frac{a + b}{2} \geq \sqrt{ab} \quad \blacksquare

Equality condition. (ab)2=0(\sqrt{a} - \sqrt{b})^2 = 0 if and only if a=b\sqrt{a} = \sqrt{b}, i.e., a=ba = b.

Extension. For nn positive real numbers x1,x2,,xnx_1, x_2, \ldots, x_n:

LBx1+x2++xnRB◆◆LBnRBx1x2xnn\frac◆LB◆x_1 + x_2 + \cdots + x_n◆RB◆◆LB◆n◆RB◆ \geq \sqrt[n]{x_1 x_2 \cdots x_n}

with equality if and only if x1=x2==xnx_1 = x_2 = \cdots = x_n. The proof of the general case (by induction using the two-variable result as the base) is beyond A-level scope.

Details

Example Find the minimum value of x+4xx + \frac{4}{x} for x>0x \gt{} 0.

By AM-GM with a=xa = x and b=4xb = \frac{4}{x} (both positive):

LBx+4xRB◆◆LB2RBLBx4xRB=4=2\frac◆LB◆x + \frac{4}{x}◆RB◆◆LB◆2◆RB◆ \geq \sqrt◆LB◆x \cdot \frac{4}{x}◆RB◆ = \sqrt{4} = 2

So x+4x4x + \frac{4}{x} \geq 4.

Equality when x=4xx = \frac{4}{x}, i.e., x2=4x^2 = 4, so x=2x = 2 (since x>0x \gt{} 0).

Minimum value is 4, achieved at x=2x = 2.


7. Sigma Notation — Method of Differences

Definition. A telescoping sum is a series where most terms cancel when written out, leaving only a few terms at the beginning and end.

Key Idea. If we can express the general term uku_k as a difference f(k)f(k+1)f(k) - f(k+1), then:

k=1nuk=k=1n[f(k)f(k+1)]=f(1)f(n+1)\sum_{k=1}^{n} u_k = \sum_{k=1}^{n} [f(k) - f(k+1)] = f(1) - f(n+1)

This is because the sum expands as [f(1)f(2)]+[f(2)f(3)]++[f(n)f(n+1)][f(1) - f(2)] + [f(2) - f(3)] + \cdots + [f(n) - f(n+1)], and all intermediate terms cancel.

7.1 Partial Fractions as the Decomposition Tool

The most common technique is to use partial fractions to decompose a rational term into a difference.

Details

Example Evaluate k=1n1k(k+1)\sum_{k=1}^{n} \frac{1}{k(k+1)}.

Using partial fractions:

1k(k+1)=Ak+Bk+1\frac{1}{k(k+1)} = \frac{A}{k} + \frac{B}{k+1}

1=A(k+1)+Bk1 = A(k+1) + Bk

Setting k=0k = 0: A=1A = 1. Setting k=1k = -1: B=1B = -1.

So 1k(k+1)=1k1k+1\frac{1}{k(k+1)} = \frac{1}{k} - \frac{1}{k+1}.

Therefore:

k=1n1k(k+1)=k=1n(1k1k+1)\sum_{k=1}^{n} \frac{1}{k(k+1)} = \sum_{k=1}^{n} \left(\frac{1}{k} - \frac{1}{k+1}\right)

=(112)+(1213)++(1n1n+1)= \left(1 - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \cdots + \left(\frac{1}{n} - \frac{1}{n+1}\right)

=11n+1=nn+1= 1 - \frac{1}{n+1} = \frac{n}{n+1}

Details

Example Evaluate k=1n1k(k+2)\sum_{k=1}^{n} \frac{1}{k(k+2)}.

Using partial fractions:

1k(k+2)=Ak+Bk+2\frac{1}{k(k+2)} = \frac{A}{k} + \frac{B}{k+2}

1=A(k+2)+Bk1 = A(k+2) + Bk

k=0k = 0: A=12A = \frac{1}{2}. k=2k = -2: B=12B = -\frac{1}{2}.

So 1k(k+2)=12(1k1k+2)\frac{1}{k(k+2)} = \frac{1}{2}\left(\frac{1}{k} - \frac{1}{k+2}\right).

k=1n1k(k+2)=12k=1n(1k1k+2)\sum_{k=1}^{n} \frac{1}{k(k+2)} = \frac{1}{2}\sum_{k=1}^{n}\left(\frac{1}{k} - \frac{1}{k+2}\right)

Writing out terms:

=12[(113)+(1214)+(1315)++(1n1n+2)]= \frac{1}{2}\left[\left(1 - \frac{1}{3}\right) + \left(\frac{1}{2} - \frac{1}{4}\right) + \left(\frac{1}{3} - \frac{1}{5}\right) + \cdots + \left(\frac{1}{n} - \frac{1}{n+2}\right)\right]

The terms 13-\frac{1}{3} and +13+\frac{1}{3} cancel, 14-\frac{1}{4} and +14+\frac{1}{4} cancel, etc. The surviving terms are 11 and 12\frac{1}{2} from the start, with 1n+1-\frac{1}{n+1} and 1n+2-\frac{1}{n+2} at the end:

=12(1+121n+11n+2)=12(322n+3(n+1)(n+2))= \frac{1}{2}\left(1 + \frac{1}{2} - \frac{1}{n+1} - \frac{1}{n+2}\right) = \frac{1}{2}\left(\frac{3}{2} - \frac{2n + 3}{(n+1)(n+2)}\right)

=342n+32(n+1)(n+2)= \frac{3}{4} - \frac{2n + 3}{2(n+1)(n+2)}

tip

When using the method of differences, always write out the first few terms explicitly to identify the cancellation pattern before simplifying. Be especially careful when the "gap" in the denominator is larger than 1 (e.g., k(k+2)k(k+2)), as not all terms cancel in a simple pairwise fashion.


8. Arithmetic-Geometric Sequences

Definition. An arithmetic-geometric sequence has terms of the form:

a,  (a+d)r,  (a+2d)r2,  a, \; (a+d)r, \; (a+2d)r^2, \; \ldots

Each term is the product of a term from an arithmetic progression (a,a+d,a+2d,a, a+d, a+2d, \ldots) and a term from a geometric progression (1,r,r2,1, r, r^2, \ldots).

Theorem. The nnth term is:

un=(a+(n1)d)rn1u_n = (a + (n-1)d)\,r^{n-1}

where aa is the first term of the AP part, dd is the common difference, and rr is the common ratio of the GP part.

8.1 Sum of an Arithmetic-Geometric Series

Theorem. For r1r \neq 1:

Sn=a[a+(n1)d]rn1r+dr(1rn1)(1r)2S_n = \frac{a - [a + (n-1)d]\,r^n}{1 - r} + \frac{dr(1 - r^{n-1})}{(1-r)^2}

Proof. Write out SnS_n and rSnrS_n, then subtract:

Sn=a+(a+d)r+(a+2d)r2++[a+(n1)d]rn1rSn=ar+(a+d)r2+(a+2d)r3++[a+(n1)d]rn\begin{aligned} S_n &= a + (a+d)r + (a+2d)r^2 + \cdots + [a+(n-1)d]\,r^{n-1} \\ rS_n &= ar + (a+d)r^2 + (a+2d)r^3 + \cdots + [a+(n-1)d]\,r^n \end{aligned}

Subtracting:

SnrSn=a+dr+dr2++drn1[a+(n1)d]rnS_n - rS_n = a + dr + dr^2 + \cdots + dr^{n-1} - [a+(n-1)d]\,r^n

Sn(1r)=a+d(r+r2++rn1)[a+(n1)d]rnS_n(1-r) = a + d(r + r^2 + \cdots + r^{n-1}) - [a+(n-1)d]\,r^n

The bracketed geometric series sums to r(1rn1)1r\frac{r(1 - r^{n-1})}{1 - r}:

Sn(1r)=a+dr(1rn1)1r[a+(n1)d]rnS_n(1-r) = a + \frac{dr(1 - r^{n-1})}{1-r} - [a+(n-1)d]\,r^n

Sn=a[a+(n1)d]rn1r+dr(1rn1)(1r)2S_n = \frac{a - [a+(n-1)d]\,r^n}{1-r} + \frac{dr(1 - r^{n-1})}{(1-r)^2} \quad \blacksquare

8.2 Sum to Infinity

When r<1|r| \lt{} 1, both rn0r^n \to 0 and rn10r^{n-1} \to 0 as nn \to \infty:

S=a1r+dr(1r)2S_\infty = \frac{a}{1 - r} + \frac{dr}{(1-r)^2}

Details

Example A salary is 30000 in year 1 and increases by 1500 each year. Due to inflation, each year's salary is discounted by a factor of 0.9 when expressed in present-value terms. Find the total present value of all future salary payments.

The sequence of discounted salaries is an arithmetic-geometric sequence:

  • AP part: a=30000a = 30000, d=1500d = 1500
  • GP part: r=0.9r = 0.9

Since r<1|r| \lt{} 1:

S=3000010.9+LB1500×0.9RB◆◆LB(10.9)2RBS_\infty = \frac{30000}{1 - 0.9} + \frac◆LB◆1500 \times 0.9◆RB◆◆LB◆(1 - 0.9)^2◆RB◆

=300000.1+13500.01= \frac{30000}{0.1} + \frac{1350}{0.01}

=300000+135000=435000= 300000 + 135000 = 435000

The total present value is 435000.


9. Proof of Sum Formulas

9.1 Proof of k=1nk2=n(n+1)(2n+1)6\sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6}

Proof by induction.

Base case (n=1n = 1): LHS =1= 1. RHS =LB1×2×3RB◆◆LB6RB=1= \frac◆LB◆1 \times 2 \times 3◆RB◆◆LB◆6◆RB◆ = 1. ✓

Inductive step: Assume k=1nk2=n(n+1)(2n+1)6\displaystyle\sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6} for some n1n \geq 1.

Then:

k=1n+1k2=n(n+1)(2n+1)6+(n+1)2=n(n+1)(2n+1)+6(n+1)26=LB(n+1)[n(2n+1)+6(n+1)]RB◆◆LB6RB=(n+1)(2n2+7n+6)6=(n+1)(n+2)(2n+3)6\begin{aligned} \sum_{k=1}^{n+1} k^2 &= \frac{n(n+1)(2n+1)}{6} + (n+1)^2 \\ &= \frac{n(n+1)(2n+1) + 6(n+1)^2}{6} \\ &= \frac◆LB◆(n+1)\bigl[n(2n+1) + 6(n+1)\bigr]◆RB◆◆LB◆6◆RB◆ \\ &= \frac{(n+1)(2n^2 + 7n + 6)}{6} \\ &= \frac{(n+1)(n+2)(2n+3)}{6} \end{aligned}

This equals LB(n+1)((n+1)+1)(2(n+1)+1)RB◆◆LB6RB\frac◆LB◆(n+1)\bigl((n+1)+1\bigr)\bigl(2(n+1)+1\bigr)◆RB◆◆LB◆6◆RB◆, which is the formula for n+1n+1. ✓ \blacksquare

9.2 Proof of k=1nk3=[n(n+1)2]2\sum_{k=1}^{n} k^3 = \left[\frac{n(n+1)}{2}\right]^2

Proof by induction.

Base case (n=1n = 1): LHS =1= 1. RHS =[LB1×2RB◆◆LB2RB]2=1= \left[\frac◆LB◆1 \times 2◆RB◆◆LB◆2◆RB◆\right]^2 = 1. ✓

Inductive step: Assume k=1nk3=[n(n+1)2]2\displaystyle\sum_{k=1}^{n} k^3 = \left[\frac{n(n+1)}{2}\right]^2.

Then:

k=1n+1k3=[n(n+1)2]2+(n+1)3=n2(n+1)24+(n+1)3=n2(n+1)2+4(n+1)34=LB(n+1)2(n2+4(n+1))RB◆◆LB4RB=(n+1)2(n2+4n+4)4=(n+1)2(n+2)24=[(n+1)(n+2)2]2\begin{aligned} \sum_{k=1}^{n+1} k^3 &= \left[\frac{n(n+1)}{2}\right]^2 + (n+1)^3 \\ &= \frac{n^2(n+1)^2}{4} + (n+1)^3 \\ &= \frac{n^2(n+1)^2 + 4(n+1)^3}{4} \\ &= \frac◆LB◆(n+1)^2\bigl(n^2 + 4(n+1)\bigr)◆RB◆◆LB◆4◆RB◆ \\ &= \frac{(n+1)^2(n^2 + 4n + 4)}{4} \\ &= \frac{(n+1)^2(n+2)^2}{4} \\ &= \left[\frac{(n+1)(n+2)}{2}\right]^2 \end{aligned}

This is the formula for n+1n+1. ✓ \blacksquare

9.3 Connection: (k)2=k3(\sum k)^2 = \sum k^3

Notice that:

(k=1nk)2=[n(n+1)2]2=k=1nk3\left(\sum_{k=1}^{n} k\right)^2 = \left[\frac{n(n+1)}{2}\right]^2 = \sum_{k=1}^{n} k^3

This is a remarkable identity: the square of the sum of the first nn positive integers equals the sum of the first nn cubes.

Pattern observation. Check for small values of nn:

n=1n = 1: (1)2=1=13(1)^2 = 1 = 1^3

n=2n = 2: (1+2)2=9=1+8=13+23(1+2)^2 = 9 = 1 + 8 = 1^3 + 2^3

n=3n = 3: (1+2+3)2=36=1+8+27=13+23+33(1+2+3)^2 = 36 = 1 + 8 + 27 = 1^3 + 2^3 + 3^3

This can also be visualised geometrically: a square of side n(n+1)2\frac{n(n+1)}{2} can be decomposed into nested gnomons (L-shaped regions) that correspond to 13,23,,n31^3, 2^3, \ldots, n^3.


10. Problem Set

Problem 1. The 5th term of an arithmetic sequence is 17 and the 12th term is 38. Find the first term and the common difference.

Details

Solution a+4d=17(1)a + 4d = 17 \quad \mathrm{--- (1)} a+11d=38(2)a + 11d = 38 \quad \mathrm{--- (2)}

(2) - (1): 7d=21    d=37d = 21 \implies d = 3.

a=1712=5a = 17 - 12 = 5.

If you get this wrong, revise: Arithmetic sequences


Problem 2. Evaluate k=150(3k1)\sum_{k=1}^{50} (3k - 1).

Details

Solution This is an arithmetic series with first term a=2a = 2, last term =3(50)1=149\ell = 3(50) - 1 = 149, n=50n = 50.

S=502(2+149)=25×151=3775S = \frac{50}{2}(2 + 149) = 25 \times 151 = 3775

If you get this wrong, revise: Sigma notation


Problem 3. A geometric series has first term 5 and sum to infinity 25. Find the common ratio.

Details

Solution S=a1r=25S_\infty = \frac{a}{1 - r} = 25

51r=25    1r=15    r=45\frac{5}{1 - r} = 25 \implies 1 - r = \frac{1}{5} \implies r = \frac{4}{5}

If you get this wrong, revise: Sum to infinity


Problem 4. Find the sum of the first 10 terms of the geometric series 26+1854+2 - 6 + 18 - 54 + \cdots

Details

Solution a=2a = 2, r=3r = -3, n=10n = 10.

S10=2(1(3)10)1(3)=2(159049)4=2(59048)4=29524S_{10} = \frac{2(1 - (-3)^{10})}{1 - (-3)} = \frac{2(1 - 59049)}{4} = \frac{2(-59048)}{4} = -29524

If you get this wrong, revise: Sum of finite geometric series


Problem 5. Show that k=1n(4k+1)=n(2n+3)\sum_{k=1}^{n} (4k + 1) = n(2n + 3).

Solution
k=1n(4k+1)=4k=1nk+k=1n1=4n(n+1)2+n=2n(n+1)+n=2n2+2n+n=2n2+3n=n(2n+3)\begin{aligned} \sum_{k=1}^{n} (4k + 1) &= 4\sum_{k=1}^{n} k + \sum_{k=1}^{n} 1 \\ &= 4 \cdot \frac{n(n+1)}{2} + n \\ &= 2n(n+1) + n \\ &= 2n^2 + 2n + n \\ &= 2n^2 + 3n \\ &= n(2n + 3) \quad \blacksquare \end{aligned}

If you get this wrong, revise: Sigma notation


Problem 6. Given u1=3u_1 = 3 and un+1=un+1un1u_{n+1} = \frac{u_n + 1}{u_n - 1}, find u2u_2, u3u_3, u4u_4, and u5u_5. Comment on the sequence.

Details

Solution u2=3+131=2u_2 = \frac{3 + 1}{3 - 1} = 2

u3=2+121=3u_3 = \frac{2 + 1}{2 - 1} = 3

u4=3+131=2u_4 = \frac{3 + 1}{3 - 1} = 2

u5=2+121=3u_5 = \frac{2 + 1}{2 - 1} = 3

The sequence is periodic: 3,2,3,2,3,2,3, 2, 3, 2, 3, 2, \ldots with period 2.

If you get this wrong, revise: Recurrence relations


Problem 7. The first three terms of a geometric sequence are x,x+4,x+12x, x + 4, x + 12. Find xx and the common ratio.

Details

Solution x+4x=x+12x+4\frac{x + 4}{x} = \frac{x + 12}{x + 4}

(x+4)2=x(x+12)(x + 4)^2 = x(x + 12)

x2+8x+16=x2+12xx^2 + 8x + 16 = x^2 + 12x

4x=16    x=44x = 16 \implies x = 4

The sequence is 4,8,16,4, 8, 16, \ldots with r=2r = 2.

If you get this wrong, revise: Geometric sequences


Problem 8. A ball is dropped from a height of 10 m. Each bounce reaches 80% of the previous height. Find the total distance travelled before the ball comes to rest.

Details

Solution The ball falls 10 m, then rises 10×0.8=810 \times 0.8 = 8 m, falls 8 m, rises 8×0.8=6.48 \times 0.8 = 6.4 m, etc.

Total distance = 10+2(8+6.4+5.12+)10 + 2(8 + 6.4 + 5.12 + \cdots).

The bracketed series is geometric with a=8a = 8, r=0.8r = 0.8.

S=810.8=80.2=40S_\infty = \frac{8}{1 - 0.8} = \frac{8}{0.2} = 40

Total distance = 10+2×40=9010 + 2 \times 40 = 90 m.

If you get this wrong, revise: Sum to infinity


Problem 9. Find the least value of nn such that the sum of the first nn terms of 3+6+12+24+3 + 6 + 12 + 24 + \cdots exceeds 10000.

Details

Solution a=3a = 3, r=2r = 2.

Sn=3(2n1)21=3(2n1)>10000S_n = \frac{3(2^n - 1)}{2 - 1} = 3(2^n - 1) > 10000

2n1>100003    2n>1000333334.332^n - 1 > \frac{10000}{3} \implies 2^n > \frac{10003}{3} \approx 3334.33

n>log2(3334.33)11.7n > \log_2(3334.33) \approx 11.7

So n=12n = 12.

Check: S11=3(20481)=6141<10000S_{11} = 3(2048 - 1) = 6141 < 10000.

S12=3(40961)=12285>10000S_{12} = 3(4096 - 1) = 12285 > 10000. ✓

If you get this wrong, revise: Sum of finite geometric series


Problem 10. Prove that k=1nk(k+1)=n(n+1)(n+2)3\sum_{k=1}^{n} k(k+1) = \frac{n(n+1)(n+2)}{3}.

Details

Solution By induction.

Base case (n=1n = 1): LHS =1×2=2= 1 \times 2 = 2. RHS =LB1×2×3RB◆◆LB3RB=2= \frac◆LB◆1 \times 2 \times 3◆RB◆◆LB◆3◆RB◆ = 2. ✓

Inductive step: Assume k=1nk(k+1)=n(n+1)(n+2)3\sum_{k=1}^{n} k(k+1) = \frac{n(n+1)(n+2)}{3}.

Then:

k=1n+1k(k+1)=n(n+1)(n+2)3+(n+1)(n+2)=n(n+1)(n+2)+3(n+1)(n+2)3=(n+1)(n+2)(n+3)3=(n+1)((n+1)+1)((n+1)+2)3\begin{aligned} \sum_{k=1}^{n+1} k(k+1) &= \frac{n(n+1)(n+2)}{3} + (n+1)(n+2) \\ &= \frac{n(n+1)(n+2) + 3(n+1)(n+2)}{3} \\ &= \frac{(n+1)(n+2)(n + 3)}{3} \\ &= \frac{(n+1)((n+1)+1)((n+1)+2)}{3} \end{aligned}

This is the formula for n+1n + 1. ✓ \blacksquare

If you get this wrong, revise: Proof by induction


Problem 11. Given that x>0x \gt{} 0, find the minimum value of x2+9x2x^2 + \frac{9}{x^2} and state the value of xx at which it occurs.

Details

Solution By AM-GM with a=x2a = x^2 and b=9x2b = \frac{9}{x^2} (both positive since x>0x \gt{} 0):

LBx2+9x2RB◆◆LB2RBLBx29x2RB=9=3\frac◆LB◆x^2 + \frac{9}{x^2}◆RB◆◆LB◆2◆RB◆ \geq \sqrt◆LB◆x^2 \cdot \frac{9}{x^2}◆RB◆ = \sqrt{9} = 3

So x2+9x26x^2 + \frac{9}{x^2} \geq 6.

Equality when x2=9x2x^2 = \frac{9}{x^2}, i.e., x4=9x^4 = 9, so x2=3x^2 = 3, giving x=3x = \sqrt{3} (positive root).

Minimum value is 6, achieved at x=3x = \sqrt{3}.

If you get this wrong, revise: AM-GM inequality


Problem 12. Evaluate k=1n2(k+1)(k+3)\sum_{k=1}^{n} \frac{2}{(k+1)(k+3)} using the method of differences.

Details

Solution Using partial fractions:

2(k+1)(k+3)=Ak+1+Bk+3\frac{2}{(k+1)(k+3)} = \frac{A}{k+1} + \frac{B}{k+3}

2=A(k+3)+B(k+1)2 = A(k+3) + B(k+1)

k=3k = -3: B=1B = -1. k=1k = -1: A=1A = 1.

So 2(k+1)(k+3)=1k+11k+3\frac{2}{(k+1)(k+3)} = \frac{1}{k+1} - \frac{1}{k+3}.

k=1n2(k+1)(k+3)=k=1n(1k+11k+3)\sum_{k=1}^{n} \frac{2}{(k+1)(k+3)} = \sum_{k=1}^{n} \left(\frac{1}{k+1} - \frac{1}{k+3}\right)

Writing out terms:

=(1214)+(1315)+(1416)++(1n+11n+3)= \left(\frac{1}{2} - \frac{1}{4}\right) + \left(\frac{1}{3} - \frac{1}{5}\right) + \left(\frac{1}{4} - \frac{1}{6}\right) + \cdots + \left(\frac{1}{n+1} - \frac{1}{n+3}\right)

After cancellation, surviving terms:

=12+131n+21n+3=562n+5(n+2)(n+3)= \frac{1}{2} + \frac{1}{3} - \frac{1}{n+2} - \frac{1}{n+3} = \frac{5}{6} - \frac{2n + 5}{(n+2)(n+3)}

If you get this wrong, revise: Method of differences


Problem 13. Find the sum to infinity of the arithmetic-geometric series whose terms are 1,  4×12,  7×14,  10×18,  1, \; 4 \times \tfrac{1}{2}, \; 7 \times \tfrac{1}{4}, \; 10 \times \tfrac{1}{8}, \; \ldots

Details

Solution Identify the components:

  • AP part: first term a=1a = 1, common difference d=3d = 3 (since 41=34 - 1 = 3, 74=37 - 4 = 3, etc.)
  • GP part: common ratio r=12r = \frac{1}{2}

Since r<1|r| \lt{} 1, the sum to infinity converges:

S=a1r+dr(1r)2S_\infty = \frac{a}{1 - r} + \frac{dr}{(1-r)^2}

=LB1RB◆◆LB112RB+LB3×12RB◆◆LB(112)2RB= \frac◆LB◆1◆RB◆◆LB◆1 - \frac{1}{2}◆RB◆ + \frac◆LB◆3 \times \frac{1}{2}◆RB◆◆LB◆\left(1 - \frac{1}{2}\right)^2◆RB◆

=LB1RB◆◆LB12RB+LB32RB◆◆LB14RB= \frac◆LB◆1◆RB◆◆LB◆\frac{1}{2}◆RB◆ + \frac◆LB◆\frac{3}{2}◆RB◆◆LB◆\frac{1}{4}◆RB◆

=2+6=8= 2 + 6 = 8

If you get this wrong, revise: Arithmetic-geometric sequences


Problem 14. Find k=1nk(k1)\sum_{k=1}^{n} k(k-1) in closed form, and verify your answer for n=4n = 4.

Solution
k=1nk(k1)=k=1n(k2k)=k=1nk2k=1nk=n(n+1)(2n+1)6n(n+1)2=n(n+1)6[(2n+1)3]=n(n+1)(2n2)6=n(n+1)(n1)3\begin{aligned} \sum_{k=1}^{n} k(k-1) &= \sum_{k=1}^{n} (k^2 - k) \\ &= \sum_{k=1}^{n} k^2 - \sum_{k=1}^{n} k \\ &= \frac{n(n+1)(2n+1)}{6} - \frac{n(n+1)}{2} \\ &= \frac{n(n+1)}{6}\bigl[(2n+1) - 3\bigr] \\ &= \frac{n(n+1)(2n - 2)}{6} \\ &= \frac{n(n+1)(n-1)}{3} \end{aligned}

Verification for n=4n = 4: 1×0+2×1+3×2+4×3=0+2+6+12=201 \times 0 + 2 \times 1 + 3 \times 2 + 4 \times 3 = 0 + 2 + 6 + 12 = 20.

Formula: LB4×5×3RB◆◆LB3RB=20\frac◆LB◆4 \times 5 \times 3◆RB◆◆LB◆3◆RB◆ = 20. ✓

If you get this wrong, revise: Sigma notation


Problem 15. A sequence satisfies un+1=3un+2u_{n+1} = 3u_n + 2 with u1=1u_1 = 1. Find a closed-form expression for unu_n and verify it for n=1,2,3n = 1, 2, 3.

Details

Solution This is a first-order linear recurrence relation. We solve it by finding the equilibrium and subtracting.

At equilibrium, u=3u+2u = 3u + 2, giving 2u=2-2u = 2, so u=1u = -1.

Define vn=un(1)=un+1v_n = u_n - (-1) = u_n + 1. Then:

vn+1=un+1+1=3un+2+1=3un+3=3(un+1)=3vnv_{n+1} = u_{n+1} + 1 = 3u_n + 2 + 1 = 3u_n + 3 = 3(u_n + 1) = 3v_n

So vnv_n is a geometric sequence with ratio 3. Since v1=u1+1=2v_1 = u_1 + 1 = 2:

vn=23n1v_n = 2 \cdot 3^{n-1}

Therefore:

un=23n11u_n = 2 \cdot 3^{n-1} - 1

Verification:

  • n=1n = 1: u1=211=1u_1 = 2 \cdot 1 - 1 = 1
  • n=2n = 2: u2=231=5u_2 = 2 \cdot 3 - 1 = 5. Check: 3(1)+2=53(1) + 2 = 5
  • n=3n = 3: u3=291=17u_3 = 2 \cdot 9 - 1 = 17. Check: 3(5)+2=173(5) + 2 = 17

If you get this wrong, revise: Recurrence relations


tip

tip Ready to test your understanding of Sequences and Series? The diagnostic test contains the hardest questions within the A-Level specification for this topic, each with a full worked solution.

Unit tests probe edge cases and common misconceptions. Integration tests combine Sequences and Series with other pure mathematics topics to test synthesis under exam conditions.

See Diagnostic Guide for instructions on self-marking and building a personal test matrix.