Skip to content

Sequences and Series

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

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 (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).


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

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

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)dAnd 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.

ExampleFind the sum of the first 20 terms of $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


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

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

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.

Theorem. If r<1|r| < 1The 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| < 1We 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| < 1Then limnrn=0\lim_{n \to \infty} r^n = 0.

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

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

Proof. If r>1|r| > 1Then rn|r^n| \to \inftySo 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 + \cdotsWhich oscillates and does not converge. \blacksquare

ExampleFind the sum to infinity of $1 + \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \cdots$

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

S=1112=2S_\infty = \frac{1}{1 - \frac{1}{2}} = 2


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}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


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.

u_2 = 2(1) + 3 = 5$$u_3 = 2(5) + 3 = 13$$u_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. u_{n+1} = \frac{1}{u_n}$$u_1 = 2.

u_2 = \frac{1}{2}$$u_3 = 2$$u_4 = \frac{1}{2}… This is periodic with period 2.


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 0Both a\sqrt{a} and b\sqrt{b} are real numbers. For any real number xxWe 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:

x1+x2++xnnx1x2xnn\frac{x_1 + x_2 + \cdots + x_n}{n} \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.

ExampleFind the minimum value of $x + \frac{4}{x}$ for $x \gt 0$.

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

x+4x2x4x=4=2\frac{x + \frac{4}{x}}{2} \geq \sqrt{x \cdot \frac{4}{x}} = \sqrt{4} = 2

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

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

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


7. Sigma Notation — Method of Differences

Section titled “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

Section titled “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.

ExampleEvaluate $\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}

ExampleEvaluate $\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)}


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.

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_nThen 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

When r<1|r| \lt 1Both 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}

ExampleA 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 = 30000$$d = 1500
  • GP part: r=0.9r = 0.9

Since r<1|r| \lt 1:

S=3000010.9+1500×0.9(10.9)2S_\infty = \frac{30000}{1 - 0.9} + \frac{1500 \times 0.9}{(1 - 0.9)^2}

=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.1 Proof of k=1nk2=n(n+1)(2n+1)6\sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6}

Section titled “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}∑k=1n​k2=6n(n+1)(2n+1)​”

Proof by induction.

Base case (n=1n = 1): LHS =1= 1. RHS =1×2×36=1= \frac{1 \times 2 \times 3}{6} = 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=(n+1)[n(2n+1)+6(n+1)]6=(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{(n+1)\bigl[n(2n+1) + 6(n+1)\bigr]}{6} \\ &= \frac{(n+1)(2n^2 + 7n + 6)}{6} \\ &= \frac{(n+1)(n+2)(2n+3)}{6} \end{aligned}

This equals (n+1)((n+1)+1)(2(n+1)+1)6\frac{(n+1)\bigl((n+1)+1\bigr)\bigl(2(n+1)+1\bigr)}{6}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

Section titled “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∑k=1n​k3=[2n(n+1)​]2”

Proof by induction.

Base case (n=1n = 1): LHS =1= 1. RHS =[1×22]2=1= \left[\frac{1 \times 2}{2}\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=(n+1)2(n2+4(n+1))4=(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{(n+1)^2\bigl(n^2 + 4(n+1)\bigr)}{4} \\ &= \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

Section titled “9.3 Connection: (∑k)2=∑k3(\sum k)^2 = \sum k^3(∑k)2=∑k3”

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.


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.

Solution$$a + 4d = 17 \quad \mathrm{--- (1)}$$ $$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](#2-arithmetic-sequences)

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

SolutionThis is an arithmetic series with first term $a = 2$Last term $\ell = 3(50) - 1 = 149$, $n = 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](#4-sigma-notation)

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

Solution$$S_\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](#33-sum-to-infinity)

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

Solution$a = 2$$r = -3$$n = 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](#32-sum-of-a-finite-geometric-series)

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

Solution$$ \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](#4-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.

Solution$u_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](#5-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.

Solution$$\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](#3-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.

SolutionThe ball falls 10 m, then rises $10 \times 0.8 = 8$ m, falls 8 m, rises $8 \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](#33-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.

Solution$a = 3$, $r = 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](#32-sum-of-a-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}.

SolutionBy induction.

Base case (n=1n = 1): LHS =1×2=2= 1 \times 2 = 2. RHS =1×2×33=2= \frac{1 \times 2 \times 3}{3} = 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](./13-proof.md)

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

SolutionBy AM-GM with $a = x^2$ and $b = \frac{9}{x^2}$ (both positive since $x \gt 0$):

x2+9x22x29x2=9=3\frac{x^2 + \frac{9}{x^2}}{2} \geq \sqrt{x^2 \cdot \frac{9}{x^2}} = \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 = 9So x2=3x^2 = 3Giving 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](#6-arithmetic-mean-and-geometric-mean)

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

SolutionUsing 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](#7-sigma-notation--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

SolutionIdentify the components: - AP part: first term $a = 1$Common difference $d = 3$ (since $4 - 1 = 3$, $7 - 4 = 3$Etc.) - GP part: common ratio $r = \frac{1}{2}$

Since r<1|r| \lt 1The sum to infinity converges:

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

=1112+3×12(112)2= \frac{1}{1 - \frac{1}{2}} + \frac{3 \times \frac{1}{2}}{\left(1 - \frac{1}{2}\right)^2}

=112+3214= \frac{1}{\frac{1}{2}} + \frac{\frac{3}{2}}{\frac{1}{4}}

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

If you get this wrong, revise: [Arithmetic-geometric sequences](#8-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$$ \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: 4×5×33=20\frac{4 \times 5 \times 3}{3} = 20. ✓

If you get this wrong, revise: [Sigma notation](#4-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.

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

At equilibrium, u=3u+2u = 3u + 2Giving 2u=2-2u = 2So 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](#5-recurrence-relations)