Sets & LogicDe Morgan's Laws
(A∪B)′=A′∩B′(A∩B)′=A′∪B′ When to use: Simplifying complements of combined sets or logic statements.
Example:
¬(p∨q)≡¬p∧¬qEasy
Sets & LogicInclusion–Exclusion
n(A∪B)=n(A)+n(B)−n(A∩B) When to use: Counting elements when two sets overlap.
Example:
18+14−6=26 students take math or physics.Easy
AlgebraDifference of Squares
a2−b2=(a−b)(a+b) When to use: Fast factoring when both terms are perfect squares.
Example:
x2−9=(x−3)(x+3)Easy
r1+r2=−abr1r2=ac When to use: Getting root sums and products without solving the quadratic.
Example:
2x2−7x+3: sum =27, product =23Medium
QuadraticQuadratic Formula
x=2a−b±b2−4ac When to use: Solving any ax2+bx+c=0, factorable or not. Example:
x2−5x+6=0⇒x=2,3Medium
Δ=b2−4ac When to use: Predicting root type: Δ>0 two real, Δ=0 one repeated, Δ<0 none real. Example:
x2+x+1: Δ=−3 no real rootsEasy
Exponents & LogsLaws of Exponents
aman=am+n(am)n=amn When to use: Combining powers with the same base.
Example:
23⋅24=27=128Easy
Exponents & LogsChange of Base
logbx=lnblnx When to use: Evaluating logs with any base on a calculator.
Example:
log210=ln2ln10≈3.32Medium
FunctionsComposite Function
(f∘g)(x)=f(g(x)) When to use: Chaining functions; setting up the chain rule.
Example:
f(x)=2x+1,g(x)=x2: (f∘g)(3)=19Medium
FunctionsAverage Rate of Change
b−af(b)−f(a) When to use: Slope of the secant line between two points on a graph.
Example:
f(x)=x2 from 1 to 3: 29−1=4Medium
GeometryDistance & Midpoint
d=(x2−x1)2+(y2−y1)2M=(2x1+x2,2y1+y2) When to use: Length and midpoint between two points in the plane.
Example:
(0,0) to (3,4): d=5Easy
(x−h)2+(y−k)2=r2 When to use: Reading center (h,k) and radius r; signs flip inside the brackets. Example:
(x−4)2+(y+2)2=25: center (4,−2), r=5Easy
TrigonometryPythagorean Identity
sin2θ+cos2θ=1 When to use: Converting between sin and cos; simplifying identities.
Example:
sinθ=53⇒cosθ=±54Easy
TrigonometryLaw of Cosines
c2=a2+b2−2abcosC When to use: Solving triangles with two sides and the included angle.
Example:
a=3,b=4,C=90°: c=5Medium
SequencesArithmetic nth Term & Sum
an=a1+(n−1)dSn=2n(a1+an) When to use: Any term or partial sum with constant difference d. Example:
2,5,8,…: a10=2+9⋅3=29Easy
SequencesGeometric Series
an=a1rn−1S∞=1−ra1(∣r∣<1) When to use: Terms and infinite sums with common ratio r. Example:
a1=3,r=21: S∞=6Medium
P(A∪B)=P(A)+P(B)−P(A∩B) When to use: Probability that at least one of two events occurs.
Example:
0.4+0.5−0.2=0.7Easy
ProbabilityPermutations & Combinations
nPr=(n−r)!n!nCr=r!(n−r)!n! When to use: Counting arrangements (order matters) vs selections (order doesn't).
Example:
5C2=10 ways to pick 2 of 5Medium
StatisticsMean & Weighted Mean
xˉ=n∑xixˉ=∑fi∑fixi When to use: The balancing point of a data set, plain or frequency-weighted.
Example:
(2+4+8+10)/4=6Easy
z=σx−μ When to use: How many standard deviations a value sits from the mean.
Example:
z=2,μ=50,σ=5⇒x=60Medium
det(acbd)=ad−bc When to use: Invertibility test; nonzero det means an inverse exists. Example:
rows (21),(34): det=5Easy
A−1=ad−bc1(d−c−ba) When to use: Solving AX=B when detA=0. Example:
Swap a,d; negate b,c; divide by det.Hard
Complex NumbersModulus & Conjugate
∣a+bi∣=a2+b2a+bi=a−bi When to use: Distance from the origin; rationalizing complex denominators.
Example:
∣3+4i∣=5, (2+i)(2−i)=5Easy
Complex NumbersPowers of i
i2=−1in+4=in When to use: Reducing any power of i via the 4-cycle i,−1,−i,1. Example:
i15=i3=−iMedium
a⋅b=∣a∣∣b∣cosθ=a1b1+a2b2 When to use: Angle between vectors; perpendicular exactly when it equals 0.
Example:
⟨1,2⟩⋅⟨3,4⟩=11Medium
VectorsMagnitude & Unit Vector
∣v∣=x2+y2v^=∣v∣v When to use: Length of a vector and the direction-only version of it.
Example:
∣⟨3,4⟩∣=5Easy
LimitsStandard Trig Limits
x→0limxsinx=1x→0limxtanx=1 When to use: Evaluating trig limits; deriving (sinx)′=cosx. Example:
limxsin3x=3Medium
LimitsRational Limits at Infinity
degP<degQ⇒0degP=degQ⇒bleadalead When to use: End behavior of P(x)/Q(x) by comparing degrees. Example:
5x2−32x2+1→52Hard
dxdxn=nxn−1 When to use: Differentiating polynomials term by term.
Example:
(x7)′=7x6Easy
DerivativesProduct & Chain Rules
(uv)′=u′v+uv′[f(g(x))]′=f′(g(x))g′(x) When to use: Differentiating products and nested functions.
Example:
(xsinx)′=sinx+xcosxMedium
IntegrationPower Rule (Integrals)
∫xndx=n+1xn+1+C(n=−1)∫x1dx=ln∣x∣+C When to use: Antiderivatives of polynomial terms, plus the n=−1 special case. Example:
∫x2dx=3x3+CEasy
IntegrationFundamental Theorem
∫abf(x)dx=F(b)−F(a) When to use: Evaluating definite integrals from any antiderivative F. Example:
∫012xdx=12−02=1Medium