Classification of Numbers ▾
Natural Numbers
1, 2, 3, …
Counting numbers. Zero is NOT included.
Whole Numbers
0, 1, 2, 3, …
Natural numbers plus zero.
Integers
…, −2, −1, 0, 1, 2, …
All positives, negatives, and zero. No fractions.
Rational
p/q, q ≠ 0
Decimal either terminates or repeats. e.g. 1/3 = 0.333…
Irrational
Non-terminating, non-repeating
Cannot be p/q. e.g. √2, π, e, φ
Prime
Exactly 2 factors: 1 and itself
2 is the ONLY even prime. 1 is NOT prime.
Composite
More than 2 factors
Smallest composite = 4. 1 is neither prime nor composite.
Co-prime
GCD(a, b) = 1
They share no common factor other than 1. Need not be prime themselves.
Perfect Number
Sum of proper divisors = number
6 = 1+2+3. 28 = 1+2+4+7+14. Next: 496.
Factor Count
N = aᵖbᵍcʳ → (p+1)(q+1)(r+1)
e.g. 12 = 2²×3¹ → (2+1)(1+1) = 6 factors
Sum of Factors
∏ (pᵢᵃⁱ⁺¹ − 1)/(pᵢ − 1)
Geometric series product per prime factor.
Sum of N Naturals
n(n+1)/2
1+2+…+100 = 5050
Sum of N Odds
n²
1+3+5+…+(2n−1) = n²
Sum of N Evens
n(n+1)
2+4+6+…+2n = n(n+1)
Trailing Zeros in n!
⌊n/5⌋ + ⌊n/25⌋ + ⌊n/125⌋ + …
Count factors of 5. e.g. 100!: 20+4 = 24 zeros.
Highest Power of p in n!
⌊n/p⌋ + ⌊n/p²⌋ + …
Legendre's formula. e.g. power of 2 in 32! = 31.
Unit Digit Cyclicity
2,3,7,8 → period 4 | 4,9 → period 2 | 0,1,5,6 → period 1
e.g. 7¹=7, 7²=9, 7³=3, 7⁴=1, then repeats.
Terminating Decimal
p/q terminates iff q = 2ᵃ × 5ᵇ only
e.g. 3/8 = 3/2³ → 0.375 ✓. 1/3 ✗
0.999… = 1
10x − x = 9 ⟹ x = 1
Exact equality, not approximation.
Subset Chain
ℕ ⊂ 𝕎 ⊂ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ
Every natural is whole, every whole is integer, etc.
Divisibility Rules ▾
Div by 2
Last digit ∈ {0,2,4,6,8}
Even last digit. e.g. 4736 ✓
Div by 3
Sum of all digits divisible by 3
e.g. 123 → 1+2+3=6 ✓
Div by 4
Last 2 digits divisible by 4
e.g. 1732 → 32÷4=8 ✓
Div by 5
Last digit is 0 or 5
e.g. 145, 230 ✓
Div by 6
Divisible by BOTH 2 AND 3
Both tests must pass simultaneously.
Div by 7
Double last digit, subtract from rest. Repeat.
e.g. 343 → 34−6=28 → 2−16=−14 ✓
Div by 8
Last 3 digits divisible by 8
e.g. 1256 → 256÷8=32 ✓
Div by 9
Sum of all digits divisible by 9
e.g. 729 → 7+2+9=18 ✓
Div by 10
Last digit is 0
e.g. 230, 1000 ✓
Div by 11
|Alternating digit sum| = 0 or multiple of 11
e.g. 2728 → 2−7+2−8 = −11 ✓
Div by 12
Divisible by BOTH 3 AND 4
Both tests simultaneously.
Div by 25
Last 2 digits divisible by 25
e.g. 1375 → 75÷25=3 ✓
Div by 2ⁿ
Last n digits divisible by 2ⁿ
General rule for all powers of 2.
abba palindrome
Always divisible by 11
a−b+b−a = 0 always.
Fermat's Little Theorem
aᵖ⁻¹ ≡ 1 (mod p), gcd(a,p)=1
p prime. e.g. 2⁶ ≡ 1 (mod 7).
Wilson's Theorem
(p−1)! ≡ −1 (mod p)
For any prime p. e.g. 6! ≡ −1 (mod 7).
Trailing zeros in n!
⌊n/5⌋ + ⌊n/25⌋ + …
Count of 5s in prime factorisation of n!
Remainder shortcut
(a×b) mod m = [(a mod m)(b mod m)] mod m
Break large products into smaller remainders.
Factors and Multiples ▾
Number of Factors
N = p₁ᵃ¹ × p₂ᵃ² × … → (a₁+1)(a₂+1)…
e.g. 360 = 2³×3²×5 → 4×3×2 = 24 factors
Sum of Factors
∏ (pᵢᵃⁱ⁺¹ − 1)/(pᵢ − 1)
e.g. Sum of factors of 12 = (2³−1)/(2−1) × (3²−1)/(3−1) = 7×4 = 28
Product of All Factors
N^(d(N)/2)
d(N) = number of factors. Product of all factor pairs.
HCF × LCM
= a × b (for exactly 2 numbers only)
Does NOT extend to 3 numbers.
LCM of Fractions
LCM(numerators) / GCD(denominators)
GCD of Fractions
GCD(numerators) / LCM(denominators)
Perfect Square ↔ Odd Factors
N is perfect square iff d(N) is odd
Because one factor pairs with itself (the square root).
Co-prime Factor Pairs
2^(number of distinct prime factors)
e.g. 12 = 2²×3 → k=2 → 2²=4 co-prime pairs.
Euler's Totient
φ(N) = N × ∏(1 − 1/p)
Count of integers ≤ N that are co-prime to N. φ(36)=12.
Legendre's Formula
vₚ(n!) = ⌊n/p⌋ + ⌊n/p²⌋ + …
Highest power of prime p dividing n!
Divisor Sum Formula
σ(N) = ∏ (pᵢᵃⁱ⁺¹−1)/(pᵢ−1)
Sum includes N itself.
Perfect Number Condition
σ(N) = 2N
Sum of ALL divisors (including N) = 2N.
Percentages ▾
x% of y
xy/100
e.g. 15% of 200 = 30
% Change
(New − Old)/Old × 100
Positive = increase. Negative = decrease.
Successive %
Net = a + b + ab/100
Two consecutive changes a% and b%. e.g. 10%+10% = 21%.
Multiplying Factor
(100+r)/100 for increase | (100−r)/100 for decrease
1.2 = 20% up. 0.8 = 20% down.
Reverse %
Original = Final × 100/(100+r)
Find original before r% increase.
Price↑r% → Qty must ↓
100r/(100+r) %
To keep expenditure constant.
False Weight Profit
(True − False)/False × 100
800g instead of 1kg → 200/800 = 25%.
Same SP Both Items
Net loss = (x/10)² %
One item x% gain, other x% loss at same SP → always net loss.
% to Key Fractions
25%=1/4, 33.33%=1/3, 16.67%=1/6, 12.5%=1/8, 11.11%=1/9
Memorise for CAT speed.
Expenditure = Price × Qty
If P↑a% and Q↓b%, Net = a+b+ab/100 change
Use successive % formula.
Ratio and Proportions ▾
Ratio
a : b = a/b
Compare quantities of same kind.
Proportion
a/b = c/d ⟹ ad = bc
Cross-multiplication rule.
Compounded Ratio
(a×c×e) : (b×d×f)
Multiply corresponding terms.
Duplicate Ratio
a² : b²
Square of a:b.
Sub-duplicate Ratio
√a : √b
Square root of a:b.
Triplicate Ratio
a³ : b³
Cube of a:b.
Mean Proportion
b² = ac
b is mean proportion of a and c. b = √(ac).
Third Proportion
c = b²/a
If a:b = b:c, then c = b²/a.
k-method
a/b = c/d = k ⟹ each ratio = k
All equal ratios share the same constant k.
Componendo–Dividendo
(a+b)/(a−b) = (c+d)/(c−d)
From a/b = c/d. Avoids solving for a,b,c,d individually.
If 4A = 5B = 7C
A:B:C = 1/4 : 1/5 : 1/7 = 35:28:20
Take reciprocals when equated to same constant.
Profit, Loss, Discounts ▾
Profit %
(SP − CP)/CP × 100
Always calculated on Cost Price.
Loss %
(CP − SP)/CP × 100
Always calculated on Cost Price.
SP given Profit %
SP = CP × (100+p)/100
p = profit percent.
CP from SP (profit)
CP = SP × 100/(100+p)
Find original cost.
Discount %
(Discount/MP) × 100
Discount always on Marked Price, NOT CP.
SP after Discount
SP = MP × (100−d)/100
d = discount percent.
Successive Discounts
1 − (1−d₁/100)(1−d₂/100)
Net single equivalent discount.
False Weight Profit
(True − False)/False × 100
Charge for True, deliver False weight.
Same SP Both Items
Net Loss = (x/10)² %
One x% gain + one x% loss at same SP = always loss.
Dishonest Buying + Selling
Profit = [(100+b)(100+s)/100²−1]×100
b% gain while buying, s% gain while selling.
MP from CP
MP = CP × (100+markup)/100
Mark up is always on CP.
Overall Profit in Chain
P_final = CP × ∏(1 + rᵢ/100)
r₁%, r₂%,… profits at each link of chain.
Surds and Indices ▾
Product Rule
aᵐ × aⁿ = aᵐ⁺ⁿ
Same base: add exponents.
Quotient Rule
aᵐ ÷ aⁿ = aᵐ⁻ⁿ
Same base: subtract exponents.
Power Rule
(aᵐ)ⁿ = aᵐⁿ
Power of a power: multiply.
Negative Index
a⁻ⁿ = 1/aⁿ
Negative exponent = reciprocal.
Fractional Index
a^(1/n) = ⁿ√a
nth root expressed as exponent.
Zero Index
a⁰ = 1, a ≠ 0
Any non-zero number to power 0 = 1.
Rationalising
1/(√a+√b) = (√a−√b)/(a−b)
Multiply by conjugate.
Surd Addition
a√c + b√c = (a+b)√c
Only like surds can be added.
(√a + √b)(√a − √b)
= a − b
Difference of surds. Key identity.
√(a/b)
= √a / √b
Square root distributes over division.
If aˣ = bʸ = cᶻ and b² = ac
then 2/y = 1/x + 1/z
Important exam identity linking index and proportion.
Surds on Number Line
√n is between ⌊√n⌋ and ⌈√n⌉
e.g. √50 is between 7 and 8.
Linear Equations ▾
Standard Form
ax + b = 0 → x = −b/a
Single variable.
Two Variable System
a₁x+b₁y=c₁ and a₂x+b₂y=c₂
Solve by elimination or substitution.
Unique Solution
a₁/a₂ ≠ b₁/b₂
Lines intersect at one point.
Infinite Solutions
a₁/a₂ = b₁/b₂ = c₁/c₂
Lines are identical (coincident).
No Solution
a₁/a₂ = b₁/b₂ ≠ c₁/c₂
Lines are parallel, never meet.
Cramer's Rule
x = (c₁b₂−c₂b₁)/D, y = (a₁c₂−a₂c₁)/D
D = a₁b₂ − a₂b₁
Age Problems
Present + n = future | Present − n = past
Set up as two equations from two conditions.
Number Problems
10a + b = 2-digit number
Reverse = 10b + a. Difference = 9(a−b).
Speed-Work Framework
Rate × Time = Work
Rate = 1/Time. Combined rates add.
Averages ▾
Arithmetic Mean
Sum / Count
Average = total ÷ number of items.
New Average (add element)
Old avg + (New value − Old avg)/(n+1)
Faster than recalculating from scratch.
New Average (remove element)
Old avg − (Removed value − Old avg)/(n−1)
Missing Value
Total − Sum of known
If average and all but one values are known.
Average Speed (equal dist)
2S₁S₂/(S₁+S₂)
Harmonic mean of two speeds for equal distances.
Weighted Average
Σ(wᵢxᵢ)/Σwᵢ
Each value multiplied by its weight.
Average of AP
(First + Last)/2
Average of any arithmetic progression.
Average of 1 to n
(n+1)/2
e.g. Average of 1 to 99 = 50.
Average of first n odds
n
1,3,5,…,(2n−1). Average = n.
Average of first n evens
n+1
2,4,6,…,2n. Average = n+1.
Quadratic Equations ▾
Standard Form
ax² + bx + c = 0
a ≠ 0
Quadratic Formula
x = [−b ± √(b²−4ac)] / 2a
Universal. Works for all quadratics.
Discriminant
Δ = b² − 4ac
Δ>0: 2 real roots. Δ=0: 1 root. Δ<0: no real roots.
Sum of Roots
α + β = −b/a
Vieta's formula.
Product of Roots
αβ = c/a
Vieta's formula.
Nature (Δ = perfect sq)
Roots are rational
If a,b,c are integers.
Form from Roots
x² − (α+β)x + αβ = 0
Build equation if roots are known.
α² + β²
= (α+β)² − 2αβ
Express in terms of sum and product.
α³ + β³
= (α+β)³ − 3αβ(α+β)
Cubic identity using Vieta's.
|α − β|
= √[(α+β)² − 4αβ] = √Δ/|a|
Difference of roots.
Mixtures and Alligations ▾
Alligation Cross
(Higher − Mean) : (Mean − Lower)
Ratio to mix two ingredients for a desired mean.
Mean Concentration
(C₁n₁ + C₂n₂)/(n₁+n₂)
Weighted average of mixture.
Replacement Formula
Final conc = C × (1 − r/V)ⁿ
n replacements of quantity r from vessel of volume V.
Two Solutions
x/y = (C₂−C)/(C−C₁)
Alligation: amounts inversely proportional to gaps.
Alligation for Price
Cheap : Costly = (Mean−Cheap's price) inverted
Draw the cross: difference from mean gives opposite ratio.
SI and CI ▾
Simple Interest
SI = PRT/100
P=Principal, R=Rate%, T=Time(years).
Amount (SI)
A = P(1 + RT/100)
Total = Principal + SI.
Compound Interest
A = P(1 + R/100)ⁿ
Compounded annually.
CI Half-yearly
A = P(1 + R/200)²ⁿ
Rate halved, time doubled.
CI Quarterly
A = P(1 + R/400)⁴ⁿ
Rate quartered, time×4.
CI − SI (2 years)
= P(R/100)²
Difference for exactly 2 years.
CI − SI (3 years)
= P(R/100)²(3 + R/100)
Difference for exactly 3 years.
Rule of 72
Years to double ≈ 72/R
Quick estimate. e.g. 8% → doubles in 9 years.
Effective Annual Rate
= (1 + R/n)ⁿ − 1
n = compounding frequency per year.
Time, Speed and Distance ▾
Speed
Distance / Time
S = D/T
Distance
Speed × Time
D = S × T
Average Speed (equal dist)
2S₁S₂/(S₁+S₂)
Harmonic mean — NOT arithmetic mean.
Relative Speed (opposite)
S₁ + S₂
Trains/people approaching each other.
Relative Speed (same dir)
S₁ − S₂
Overtaking. The faster one gains.
Train crosses pole
L / S
L = length of train.
Train crosses platform
(L_train + L_platform) / S
Sum of both lengths.
Train crosses train (opposite)
(L₁+L₂)/(S₁+S₂)
Train crosses train (same dir)
(L₁+L₂)/(S₁−S₂)
Boat upstream
V_boat − V_current
Against current.
Boat downstream
V_boat + V_current
With current.
Still water speed
(Downstream + Upstream)/2
Current speed
(Downstream − Upstream)/2
Meeting point (circular)
Track / Relative Speed
Time to first meeting on circular track.
Linear and Circular Motion ▾
Linear Meeting (opposite)
Time = D/(S₁+S₂)
Two objects moving towards each other.
Linear Overtaking
Time = Head Start / (S₁−S₂)
Faster one closes the gap.
Circular Same Direction
First meet = Track/(S₁−S₂)
Faster laps the slower.
Circular Opposite Direction
First meet = Track/(S₁+S₂)
They approach each other.
All Meet at Start
LCM of individual lap times
When all participants return to start simultaneously.
3 people on circle
A & B meet at T₁, A & C at T₂. All 3 meet at LCM(T₁,T₂)
Combine pairwise meeting times.
Race: A beats B by d m in L m race
B covers L−d when A covers L
Translate 'beats by d metres' to this.
Race: A beats B by t sec
B takes t sec more to finish
Translate to time difference.
Time and Work ▾
Work Rate
1 unit of work / n days = rate of 1/n per day
If a task is done in n days.
Combined Rate
1/A + 1/B
A and B together per day.
Together Time
AB/(A+B)
Equivalent to harmonic mean/2.
Man-Days
Work = Men × Days × Hours/day
All three factors multiply.
Work done in d days
d × (1/n)
Fraction of work completed.
Pipe Fill + Empty
1/F − 1/E
Fill pipe adds, empty pipe subtracts.
Efficiency Ratio
Inversely proportional to time
More efficient → less time → higher daily rate.
Partial Work
If A works for d days then leaves, B finishes
Set up: d/A + x/B = 1. Solve for x.
Diophantine Equations ▾
Integer Solution Exists
ax + by = c has solutions iff GCD(a,b) | c
Necessary and sufficient condition.
General Solution
x = x₀ + bt/d, y = y₀ − at/d
d = GCD(a,b). t ∈ ℤ. x₀,y₀ is one particular solution.
Positive Solutions
Count values of t for which x>0 and y>0
Finite if a,b have same sign in equation.
Chicken-Rabbit type
x + y = n and ax + by = S
Two equations, two unknowns. Solve simultaneously.
Coin Problems
Σ(value × count) = Total amount
Set up and solve for integer solutions.
Polynomials ▾
Remainder Theorem
P(a) = remainder when P(x) ÷ (x−a)
Evaluate polynomial at x=a directly.
Factor Theorem
P(a) = 0 ⟺ (x−a) is a factor of P(x)
Special case of Remainder Theorem.
Sum of Roots (quadratic)
α+β = −b/a
ax²+bx+c.
Product of Roots (quadratic)
αβ = c/a
ax²+bx+c.
Sum of Roots (cubic)
α+β+γ = −b/a
ax³+bx²+cx+d.
Sum of products (cubic)
αβ+βγ+γα = c/a
ax³+bx²+cx+d.
Product of Roots (cubic)
αβγ = −d/a
ax³+bx²+cx+d.
Degree of Polynomial
Highest power of variable
deg(3x⁵+2x+1) = 5.
a³+b³
= (a+b)(a²−ab+b²)
Factoring sum of cubes.
a³−b³
= (a−b)(a²+ab+b²)
Factoring difference of cubes.
(a+b+c)²
= a²+b²+c²+2(ab+bc+ca)
Expansion of trinomial square.
Modulus ▾
|x|
x if x≥0 ; −x if x<0
Distance from zero on number line.
Triangle Inequality
|a+b| ≤ |a| + |b|
Equality when a,b have same sign.
Reverse Triangle
|a−b| ≥ ||a| − |b||
Lower bound on |a−b|.
|x| = a (a>0)
x = a or x = −a
Two solutions.
|x| < a
−a < x < a
Open interval.
|x| > a
x < −a or x > a
Two separate intervals.
|x − a| < r
a−r < x < a+r
All points within distance r of a.
|ab|
= |a| × |b|
Modulus distributes over multiplication.
|a/b|
= |a| / |b|
Modulus distributes over division.
Logarithms ▾
Definition
log_a(b) = x ⟺ aˣ = b
a>0, a≠1, b>0.
Product Rule
log(mn) = log m + log n
Log of product = sum of logs.
Quotient Rule
log(m/n) = log m − log n
Log of quotient = difference of logs.
Power Rule
log(mⁿ) = n·log m
Exponent becomes multiplier.
Change of Base
log_a(b) = log b / log a
Convert to any convenient base.
Special Values
log_a(1)=0 | log_a(a)=1
Universal for any valid base a.
Reciprocal
log_a(b) = 1/log_b(a)
Flip base and argument.
log_a(aˣ) = x
a^(log_a x) = x
Log and exponent are inverses.
Chain Rule
log_a(b) × log_b(c) = log_a(c)
Telescoping of bases.
Inequalities
If a>1: log_a is increasing. If 0
Direction of inequality changes for base < 1.
Inequalities ▾
Linear Inequality
ax+b > 0 → x > −b/a (if a>0)
Flip inequality sign when multiplying/dividing by negative.
Quadratic Inequality
ax²+bx+c > 0
Use sign chart. Roots divide number line into intervals.
AM ≥ GM
(a+b)/2 ≥ √(ab)
Equality iff a = b.
AM ≥ GM ≥ HM
For positive numbers
HM = 2ab/(a+b). Always AM ≥ GM ≥ HM.
AM-GM (n numbers)
(a₁+a₂+…+aₙ)/n ≥ (a₁a₂…aₙ)^(1/n)
Equality iff all are equal.
Cauchy-Schwarz
(a₁b₁+a₂b₂)² ≤ (a₁²+a₂²)(b₁²+b₂²)
Powerful bound — rarely needed in CAT but useful.
Min of x + 1/x
≥ 2 (for x>0)
By AM-GM: x+1/x ≥ 2√(x·1/x) = 2. Equality at x=1.
Modulus Inequality
|x−a| < b ↔ a−b < x < a+b
Interval around a.
Remainders ▾
Basic Remainder
N = DQ + R, 0 ≤ R < D
N÷D gives quotient Q and remainder R.
Addition
(A+B) mod D = [(A mod D) + (B mod D)] mod D
Reduce each term first.
Multiplication
(A×B) mod D = [(A mod D)(B mod D)] mod D
Reduce each factor first.
Fermat's Little
aᵖ⁻¹ ≡ 1 (mod p), gcd(a,p)=1
p prime. Key for large power remainders.
Euler's Theorem
aᵠ⁽ᴺ⁾ ≡ 1 (mod N), gcd(a,N)=1
Generalises Fermat. φ(N) = Euler's totient.
Chinese Remainder Theorem
Unique solution mod LCM(m₁,m₂,…)
For system x≡a₁(mod m₁), x≡a₂(mod m₂), … when mᵢ are co-prime.
Wilson's Theorem
(p−1)! ≡ −1 (mod p)
For prime p. Useful for factorial remainders.
Cyclicity for Unit Digit
2,3,7,8→cycle4 | 4,9→cycle2 | 0,1,5,6→cycle1
Find unit digit of large power.
Last 2 digits
Find pattern of aⁿ mod 100
Cycle usually found within 20 terms.
Functions ▾
Domain
Set of all valid inputs x
Function is defined only for these x values.
Range
Set of all possible outputs f(x)
Subset of codomain.
Composite
(f∘g)(x) = f(g(x))
Apply g first, then f.
Inverse
f⁻¹(y) = x iff f(x) = y
Exists only if f is one-one and onto.
Even Function
f(−x) = f(x)
Symmetric about y-axis. e.g. x², cos x.
Odd Function
f(−x) = −f(x)
Symmetric about origin. e.g. x³, sin x.
Periodic
f(x+T) = f(x)
T = period.
Floor Function
⌊x⌋ = greatest integer ≤ x
⌊3.7⌋=3, ⌊−1.2⌋=−2.
Ceiling Function
⌈x⌉ = smallest integer ≥ x
⌈3.2⌉=4, ⌈−1.2⌉=−1.
Fractional Part
{x} = x − ⌊x⌋
Always 0 ≤ {x} < 1.
Graphs ▾
Straight Line
y = mx + c
m = slope, c = y-intercept.
Slope
m = (y₂−y₁)/(x₂−x₁) = tan θ
θ = angle with positive x-axis.
Parabola
y = ax²+bx+c
Opens up if a>0, down if a<0. Vertex at x = −b/2a.
Circle
(x−h)²+(y−k)²=r²
Centre (h,k), radius r.
Modulus graph
y = |x|
V-shape with vertex at origin.
Intersection of lines
Solve equations simultaneously
Number of solutions = number of intersection points.
Parallel lines
Equal slopes, different intercepts
m₁ = m₂, c₁ ≠ c₂.
Perpendicular lines
m₁ × m₂ = −1
Product of slopes = −1.
Distance from point to line
|ax₀+by₀+c| / √(a²+b²)
Point (x₀,y₀) to line ax+by+c=0.
Lines and Angles ▾
Supplementary
∠A + ∠B = 180°
Linear pair on a straight line.
Complementary
∠A + ∠B = 90°
Sum is a right angle.
Vertically Opposite
Equal angles
Formed by two intersecting lines.
Corresponding Angles
Equal (parallel lines + transversal)
Same position at each intersection.
Alternate Interior
Equal (parallel lines + transversal)
On opposite sides of transversal, inside.
Co-interior (same side)
Supplementary: sum = 180°
Also called consecutive interior angles.
Angle Bisector
Divides angle into two equal parts
Locus of points equidistant from two lines.
Exterior Angle
= Sum of two non-adjacent interior angles
Triangle exterior angle theorem.
Triangles ▾
Angle Sum
∠A + ∠B + ∠C = 180°
Any triangle.
Area (base-height)
½ × base × height
Height must be perpendicular to base.
Area (two sides + angle)
½ab sin C
a,b are two sides, C is included angle.
Heron's Formula
√[s(s−a)(s−b)(s−c)]
s = (a+b+c)/2 is semi-perimeter.
Pythagoras Theorem
a² + b² = c²
Right triangle. c = hypotenuse.
Sine Rule
a/sinA = b/sinB = c/sinC = 2R
R = circumradius.
Cosine Rule
a² = b²+c²−2bc cosA
Any triangle. Generalises Pythagoras.
Median to hypotenuse
= hypotenuse/2
In a right triangle, median to hypotenuse = half hypotenuse.
Centroid
Divides median 2:1 from vertex
G = (x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3.
Circumradius R
abc / 4K
K = area of triangle.
Inradius r
K / s
K = area, s = semi-perimeter.
Similar triangles
AA, SAS, SSS similarity
Ratios of corresponding sides are equal.
Coordinate Geometry ▾
Distance
d = √[(x₂−x₁)² + (y₂−y₁)²]
Between two points.
Midpoint
((x₁+x₂)/2, (y₁+y₂)/2)
Midpoint of a segment.
Section Formula (internal)
((mx₂+nx₁)/(m+n), (my₂+ny₁)/(m+n))
Point dividing in ratio m:n internally.
Slope
m = (y₂−y₁)/(x₂−x₁) = tan θ
Line: slope-intercept
y = mx + c
m=slope, c=y-intercept.
Line: general
ax + by + c = 0
Slope = −a/b.
Two points form
(y−y₁)/(y₂−y₁) = (x−x₁)/(x₂−x₁)
Perpendicular distance
|ax₀+by₀+c| / √(a²+b²)
From point (x₀,y₀) to ax+by+c=0.
Area of triangle
½|x₁(y₂−y₃)+x₂(y₃−y₁)+x₃(y₁−y₂)|
Given 3 vertices.
Parallel: m₁=m₂
Same slope, c₁≠c₂
No intersection.
Perpendicular: m₁m₂=−1
Product of slopes = −1
Circle
(x−h)²+(y−k)²=r²
Centre (h,k), radius r.
Quadrilaterals ▾
Square
A=a², P=4a, d=a√2
All sides equal, all angles 90°.
Rectangle
A=lb, P=2(l+b), d=√(l²+b²)
Opposite sides equal, all angles 90°.
Parallelogram
A=base×height=ab sinθ
Diagonals bisect each other.
Rhombus
A=½d₁d₂, P=4a
Diagonals are perpendicular bisectors of each other.
Trapezium
A=½(a+b)×h
One pair of parallel sides (a,b). h=height.
Kite
A=½d₁d₂
One diagonal bisects the other perpendicularly.
Cyclic Quadrilateral
Opposite angles supplementary
Sum of opposite angles = 180°.
Ptolemy's Theorem
AC×BD = AB×CD + AD×BC
For cyclic quadrilateral.
Polygons ▾
Sum of interior angles
(n−2) × 180°
n-sided polygon.
Each interior angle (regular)
(n−2) × 180° / n
Regular polygon: all sides and angles equal.
Each exterior angle (regular)
360° / n
Sum of all exterior angles = 360° always.
Number of diagonals
n(n−3)/2
For n-sided polygon.
Number of triangles (from one vertex)
n−2
Triangles formed by drawing diagonals from one vertex.
Area of regular n-gon
(n/4) × a² × cot(π/n)
a = side length.
Circles ▾
Circumference
2πr
r = radius.
Area
πr²
Arc Length
(θ/360°) × 2πr
θ = central angle in degrees.
Sector Area
(θ/360°) × πr²
Chord Length
2r sin(θ/2)
θ = central angle subtended by chord.
Tangent ⊥ Radius
90° at point of contact
Fundamental property.
Angle in Semicircle
= 90°
Angle subtended by diameter = right angle.
Inscribed Angle
= Half the central angle
Same arc.
Tangent-Tangent
PA = PB
Tangents from external point are equal.
Power of a Point
PA × PB = PC × PD
For two chords/secants through a point.
Tangent-Secant
PT² = PA × PB
PT = tangent length. PA, PB = secant segments.
Trigonometry ▾
sin θ
Opposite / Hypotenuse
SOH
cos θ
Adjacent / Hypotenuse
CAH
tan θ
Opposite / Adjacent = sin/cos
TOA
cosec θ
1/sin θ
sec θ
1/cos θ
cot θ
1/tan θ = cos/sin
sin²θ + cos²θ = 1
Fundamental identity
Most used.
1 + tan²θ = sec²θ
Second Pythagorean identity
sec²−tan²=1 also.
1 + cot²θ = cosec²θ
Third Pythagorean identity
cosec²−cot²=1 also.
sin(A±B)
sinA cosB ± cosA sinB
cos(A±B)
cosA cosB ∓ sinA sinB
tan(A+B)
(tanA+tanB)/(1−tanA tanB)
sin 2A
2 sinA cosA
cos 2A
cos²A − sin²A = 2cos²A−1 = 1−2sin²A
Three forms.
Special: 30°
sin=½, cos=√3/2, tan=1/√3
Special: 45°
sin=cos=1/√2, tan=1
Special: 60°
sin=√3/2, cos=½, tan=√3
Mensuration ▾
Rectangle
A=lb, P=2(l+b)
Triangle
A=½bh or √[s(s−a)(s−b)(s−c)]
Heron's formula for all three sides.
Circle
A=πr², C=2πr
Cylinder
V=πr²h, CSA=2πrh, TSA=2πr(r+h)
Cone
V=⅓πr²h, l=√(r²+h²), CSA=πrl, TSA=πr(r+l)
l=slant height.
Sphere
V=⁴⁄₃πr³, SA=4πr²
Hemisphere
V=⅔πr³, CSA=2πr², TSA=3πr²
Cube
V=a³, SA=6a², d=a√3
d=space diagonal.
Cuboid
V=lbh, SA=2(lb+bh+lh), d=√(l²+b²+h²)
Prism
V=Base Area × Height
Any prism.
Pyramid
V=⅓ × Base Area × Height
Any pyramid.
Permutations and Combinations ▾
Permutation
P(n,r) = n!/(n−r)!
Ordered arrangement of r items from n.
Combination
C(n,r) = n! / [r!(n−r)!]
Unordered selection of r from n.
Relation
P(n,r) = r! × C(n,r)
Permutation = Combination × arrangements of r items.
Symmetry
C(n,r) = C(n,n−r)
Choosing r to include = choosing n−r to exclude.
Pascal's Identity
C(n,r) = C(n−1,r−1) + C(n−1,r)
Sum of all C(n,r)
2ⁿ
Total number of subsets of n items.
Circular Permutation
(n−1)!
Arrangements of n distinct items in a circle.
Necklace
(n−1)!/2
Circular, clockwise = anticlockwise.
Identical items
n! / (p! q! r! …)
Permutation with repeated items.
Distribution
Stars and bars: C(n+r−1, r−1)
r identical items into n distinct groups.
Probability ▾
Basic
P(E) = n(E)/n(S)
Favourable outcomes / Total outcomes.
Complement
P(E') = 1 − P(E)
Probability event does NOT occur.
Addition Rule
P(A∪B) = P(A)+P(B)−P(A∩B)
Any two events.
Mutually Exclusive
P(A∪B) = P(A)+P(B)
P(A∩B) = 0.
Independent Events
P(A∩B) = P(A)×P(B)
Events don't affect each other.
Conditional Probability
P(A|B) = P(A∩B)/P(B)
Probability of A given B has occurred.
Bayes' Theorem
P(A|B) = P(B|A)×P(A)/P(B)
Reverse conditional probability.
Expected Value
E(X) = Σ xᵢ P(xᵢ)
Weighted average of outcomes.
Geometric Probability
P = Favourable length or area / Total length or area
Continuous sample space.
Sequences and Series ▾
AP nth term
aₙ = a + (n−1)d
a=first term, d=common difference.
AP Sum
Sₙ = n/2 × [2a + (n−1)d] = n/2 × (a+l)
l = last term.
GP nth term
aₙ = arⁿ⁻¹
r = common ratio.
GP Sum (finite)
Sₙ = a(rⁿ−1)/(r−1)
r ≠ 1.
GP Sum (infinite)
S∞ = a/(1−r)
Valid only when |r| < 1.
Sum of squares
n(n+1)(2n+1)/6
1²+2²+3²+…+n²
Sum of cubes
[n(n+1)/2]²
1³+2³+3³+…+n³
Arithmetic Mean
(a+b)/2
AM of two terms.
Geometric Mean
√(ab)
GM of two terms.
Harmonic Mean
2ab/(a+b)
HM of two terms.
AM ≥ GM ≥ HM
For positive numbers
Equality iff a=b.
AGP Sum
Combine AP × GP
Multiply AP term by GP term; use subtraction method.