Sequences, Logarithms, Binomial Theorem & Proof
An arithmetic sequence has a constant difference $d$ between consecutive terms. If the first term is $u_1$, the $n$-th term and sum of $n$ terms are:
$$u_n = u_1 + (n-1)d$$
$$S_n = \frac{n}{2}(2u_1 + (n-1)d) = \frac{n}{2}(u_1 + u_n)$$
A geometric sequence has a constant ratio $r$ between consecutive terms. The $n$-th term, sum of $n$ terms, and infinite sum (when $|r| < 1$) are:
$$u_n = u_1 \cdot r^{n-1}$$
$$S_n = \frac{u_1(1 - r^n)}{1 - r}, \quad r \neq 1$$
$$S_\infty = \frac{u_1}{1 - r}, \quad |r| < 1$$
Logarithms are the inverse of exponential functions. The key identity is: $\log_a b = c \iff a^c = b$.
To solve exponential equations, take logarithms of both sides:
$$2^x = 5 \implies x\ln 2 = \ln 5 \implies x = \frac{\ln 5}{\ln 2} \approx 2.322$$
The binomial theorem expands $(a + b)^n$ for positive integer $n$:
$$(a+b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n-r}b^r$$
where $\displaystyle\binom{n}{r} = \frac{n!}{r!(n-r)!}$
The general term (the $(r+1)$-th term) is: $T_{r+1} = \binom{n}{r} a^{n-r} b^r$
Pascal's Triangle gives the coefficients: row $n$ gives the coefficients for $(a+b)^n$.
Proof by induction has two steps:
Prove: $\displaystyle\sum_{i=1}^{n} i = \frac{n(n+1)}{2}$
Base case ($n=1$): LHS $= 1$. RHS $= \frac{1 \cdot 2}{2} = 1$. ✓
Inductive step: Assume true for $n = k$: $\sum_{i=1}^{k} i = \frac{k(k+1)}{2}$.
Then $\sum_{i=1}^{k+1} i = \frac{k(k+1)}{2} + (k+1) = \frac{k(k+1) + 2(k+1)}{2} = \frac{(k+1)(k+2)}{2}$. ✓
This is exactly the formula with $n = k+1$, so by induction the result holds for all $n \geq 1$.
To decompose a rational function, write it as a sum of simpler fractions:
$$\frac{f(x)}{(x-a)(x-b)} = \frac{A}{x-a} + \frac{B}{x-b}$$
Multiply both sides by $(x-a)(x-b)$ and substitute $x = a$ and $x = b$ to find $A$ and $B$.
Repeated factor: $\dfrac{f(x)}{(x-a)^2} = \dfrac{A}{x-a} + \dfrac{B}{(x-a)^2}$
A geometric sequence has first term $u_1 = 12$ and common ratio $r = \frac{1}{3}$. Find (a) the 5th term, (b) the sum of the first 6 terms, and (c) the sum to infinity.
Find the term independent of $x$ in the expansion of $\left(2x - \dfrac{1}{x^2}\right)^6$.
Solve $3^{2x+1} = 7^{x-1}$. Give your answer to 3 significant figures.
Q1. An arithmetic sequence has $u_3 = 11$ and $u_8 = 26$. Find the first term and common difference. Hence find $S_{20}$.
From the two conditions: $u_1 + 2d = 11$ and $u_1 + 7d = 26$.
Subtracting: $5d = 15 \implies d = 3$. Then $u_1 = 11 - 6 = 5$.
$S_{20} = \frac{20}{2}(2(5) + 19(3)) = 10(10 + 57) = 10 \times 67 = \mathbf{670}$
Q2. The 2nd term of a geometric sequence is 6 and the 5th term is $\frac{6}{125}$. Find the common ratio and the sum to infinity.
$u_2 = u_1 r = 6$ and $u_5 = u_1 r^4 = \frac{6}{125}$.
Dividing: $r^3 = \frac{6/125}{6} = \frac{1}{125} \implies r = \frac{1}{5}$.
Then $u_1 = 6/r = 30$. Since $|r| = 1/5 < 1$: $S_\infty = \frac{30}{1 - 1/5} = \frac{30}{4/5} = \mathbf{37.5}$
Q3. Expand $(1 + 3x)^5$ up to and including the term in $x^3$.
Using the binomial theorem with $a=1$, $b=3x$, $n=5$:
$T_1 = \binom{5}{0}(3x)^0 = 1$
$T_2 = \binom{5}{1}(3x)^1 = 15x$
$T_3 = \binom{5}{2}(3x)^2 = 10 \cdot 9x^2 = 90x^2$
$T_4 = \binom{5}{3}(3x)^3 = 10 \cdot 27x^3 = 270x^3$
$(1+3x)^5 \approx 1 + 15x + 90x^2 + 270x^3 + \cdots$
Q4 (HL). Decompose $\dfrac{5x+1}{(x+1)(x-2)}$ into partial fractions.
Write $\frac{5x+1}{(x+1)(x-2)} = \frac{A}{x+1} + \frac{B}{x-2}$.
Multiply through: $5x+1 = A(x-2) + B(x+1)$.
Let $x = 2$: $11 = 3B \implies B = \frac{11}{3}$.
Let $x = -1$: $-4 = -3A \implies A = \frac{4}{3}$.
$$\frac{5x+1}{(x+1)(x-2)} = \frac{4/3}{x+1} + \frac{11/3}{x-2}$$