Topic 1 · Algebra
Geometric Sequence: \(u_n = u_1 \cdot r^{n-1}\), Sum: \(S_n = \frac{u_1(1-r^n)}{1-r}\)
Arithmetic Sequence: \(u_n = u_1 + (n-1)d\), Sum: \(S_n = \frac{n}{2}(2u_1+(n-1)d)\)
Binomial Theorem: \((a+b)^n = \sum_{k=0}^{n}\binom{n}{k}a^{n-k}b^k\)
Infinite Geo Sum (|r|<1): \(S_\infty = \frac{u_1}{1-r}\)
Laws of Logarithms: \(\log(ab)=\log a+\log b\), \(\log\!\left(\frac{a}{b}\right)=\log a-\log b\), \(\log(a^n)=n\log a\)
Example
Find the 8th term of a geometric sequence where \(u_1=3\), \(r=2\).
\(u_8 = 3 \cdot 2^7 = 3 \times 128 = 384\)
Topic 2 · Functions
Quadratic: \(x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}\), discriminant \(\Delta = b^2-4ac\)
Vertex form: \(f(x)=a(x-h)^2+k\), vertex at \((h,k)\)
Exponential: \(f(x)=a\cdot b^x\), growth if \(b>1\), decay if \(0<b<1\)
Inverse function: swap \(x\) and \(y\), solve for \(y\). Domain/range swap.
Transformation: \(f(x-a)+b\) shifts right \(a\), up \(b\)
Example
Find the vertex of \(f(x)=2x^2-8x+3\).
Complete square: \(f(x)=2(x-2)^2-5\). Vertex: \((2,-5)\)
Topic 3 · Geometry & Trigonometry
Sine Rule: \(\dfrac{a}{\sin A}=\dfrac{b}{\sin B}=\dfrac{c}{\sin C}\)
Cosine Rule: \(a^2=b^2+c^2-2bc\cos A\)
Area of triangle: \(\frac{1}{2}ab\sin C\)
Radians: \(\pi \text{ rad} = 180°\). Arc length \(s=r\theta\), Area sector \(A=\frac{1}{2}r^2\theta\)
Unit circle: \(\sin^2\theta+\cos^2\theta=1\), \(\tan\theta=\frac{\sin\theta}{\cos\theta}\)
Example
In triangle ABC, \(a=7\), \(b=5\), \(C=60°\). Find \(c\).
\(c^2=49+25-2(7)(5)(0.5)=39\), so \(c=\sqrt{39}\approx 6.24\)
Topic 4 · Statistics & Probability
Combined events: \(P(A\cup B)=P(A)+P(B)-P(A\cap B)\)
Conditional prob: \(P(A|B)=\dfrac{P(A\cap B)}{P(B)}\)
Independent events: \(P(A\cap B)=P(A)\cdot P(B)\)
Binomial distribution: \(X\sim B(n,p)\), \(P(X=k)=\binom{n}{k}p^k(1-p)^{n-k}\)
Normal distribution: \(X\sim N(\mu,\sigma^2)\), standardise: \(z=\frac{x-\mu}{\sigma}\)
Example
If \(P(A)=0.4\), \(P(B)=0.3\), A and B independent. Find \(P(A\cup B)\).
\(P(A\cap B)=0.12\), \(P(A\cup B)=0.4+0.3-0.12=0.58\)
Topic 5 · Calculus
Derivative rules: \(\frac{d}{dx}[x^n]=nx^{n-1}\), \(\frac{d}{dx}[e^x]=e^x\), \(\frac{d}{dx}[\ln x]=\frac{1}{x}\)
Chain rule: \(\frac{d}{dx}[f(g(x))]=f'(g(x))\cdot g'(x)\)
Product rule: \((uv)'=u'v+uv'\)
Integration: \(\int x^n\,dx=\frac{x^{n+1}}{n+1}+C\), \(\int e^x\,dx=e^x+C\)
Definite integral = area under curve. \(\int_a^b f(x)\,dx\)
Stationary points: set \(f'(x)=0\), classify with \(f''(x)\)
Example
Differentiate \(f(x)=3x^4-2x^2+5x-1\).
\(f'(x)=12x^3-4x+5\)