20 Problems ยท All Core Topics ยท Competition Style
Key Concepts to Master
Topic 01 ยท Arithmetic
Order of Operations & Fractions
Always evaluate: Parentheses โ Exponents โ Multiply & Divide (left to right) โ Add & Subtract (left to right). For fractions, find the LCM of denominators before adding or subtracting.
PEMDAS: P โ E โ MD (LโR) โ AS (LโR) a/b + c/d = (ad + bc) / bd
Topic 02 ยท Number Theory
Primes, GCF & LCM
A prime number has exactly 2 factors: 1 and itself. Use prime factorization to find GCF (take minimum exponents of shared primes) and LCM (take maximum exponents of all primes).
GCF ร LCM = a ร b (for two numbers) Primes: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29 โฆ
Topic 03 ยท Percentages
Percent, Ratio & Proportion
Percent means "per 100." A p% increase multiplies by (1 + p/100); a p% decrease multiplies by (1 โ p/100). Use inclusion-exclusion for overlapping groups: |A โช B| = |A| + |B| โ |A โฉ B|.
Percent change = (new โ old) / old ร 100% Proportion: a/b = c/d โ ad = bc
Topic 04 ยท Geometry
Area, Perimeter & Angles
Memorize area formulas for triangles, rectangles, circles, and trapezoids. Triangle angle sum = 180ยฐ. Polygon interior angle sum = (n โ 2) ร 180ยฐ. Exterior angle = sum of two non-adjacent interior angles.
Define a variable for the unknown, translate the problem into an equation, solve, and verify your answer makes sense. Consecutive odd/even integers: n, n+2, n+4, โฆ Ratio a:b with total T โ each part = T/(a+b).
Consecutive odds/evens: n, n+2, n+4 โฆ Rate ร Time = Distance (or Work)
Topic 06 ยท Counting
Permutations & Combinations
Fundamental counting principle: multiply the number of choices at each step. Use permutations when order matters (arrangements), combinations when it doesn't (selections).
P(event) = favorable outcomes / total equally-likely outcomes. Mean = sum รท count. Median = middle value when sorted. Mode = most frequent. Range = max โ min.
P(event) = favorable / total Mean = ฮฃx / n | Range = max โ min
Topic 08 ยท Sequences & Patterns
Arithmetic Sequences & Unit Digits
Arithmetic sequence: each term adds constant d. The nth term = aโ + (nโ1)d. For unit-digit patterns of powers, find the cycle length of the last digit and use the remainder when dividing the exponent by the cycle length.
nth term: aโ = aโ + (nโ1)d Sum of n terms: Sโ = n(aโ + aโ) / 2
Worked Examples
Example ยท Order of Operations
What is the value of (2 + 3) ร 4 โ 6 รท 2?
Step 1 โ Parentheses: (2+3) = 5 Step 2 โ Left to right: 5ร4 = 20, then 6รท2 = 3 Step 3 โ Subtraction: 20 โ 3 = 17 โ