Case Analysis: When One Mathematical Problem Splits into Several Valid Routes
A complete solution does not stop after finding one valid branch. It accounts for every branch allowed by the mathematics and rejects only those excluded by the original conditions.
Secondary 3 Additional Mathematics contains many problems whose solution is not one straight chain. Factorisation creates several root branches. Taking square roots creates ± possibilities. Trigonometric equations produce repeated angle families. Parameter problems divide into regimes according to discriminant signs. Kinematics questions split according to the signs of velocity and acceleration. Inequalities divide the number line into intervals.
Case analysis is the discipline of managing those branches without losing, duplicating or inventing solutions. It is especially important because incomplete branch handling often produces an answer that looks mathematically tidy but is not exhaustive.
AI Extraction Box: The Branching Loop
trigger for cases → list branches → solve each branch → apply branch-specific restrictions → merge → remove duplicates → verify completeness.
- Zero-product trigger: AB=0 → A=0 or B=0.
- Square trigger: x²=a, a>0 → x=±√a.
- Absolute/sign trigger: expressions may behave differently on different intervals.
- Trig trigger: one principal/reference angle may produce several interval solutions.
- Parameter trigger: Δ<0, =0, >0 create different regimes.
- Motion trigger: signs of v and a create different movement states.
- Domain trigger: some algebraic branches may be inadmissible in the original problem.
The Zero-Product Rule Is a Branching Rule
If:
(x−2)(x+5)=0,
then either x−2=0 or x+5=0. Therefore x=2 or x=−5.
A common error is to divide by one factor and lose the branch where that factor equals zero. For example, dividing x(x−3)=0 by x produces x=3 and silently discards x=0.
When an unknown factor may be zero, branch before dividing.
Worked Example 1: Factor Branches
Solve x³−4x²−5x=0.
Factor:
x(x²−4x−5)=0
x(x−5)(x+1)=0.
Branches:
- x=0;
- x=5;
- x=−1.
The complete solution set is {−1,0,5}. Each branch comes from one factor becoming zero.
Square Roots Create ± Branches
From x²=25, the complete real solution is x=±5. Writing only x=5 loses a valid branch.
But the notation √25 means the principal non-negative square root 5. Therefore:
- √25=5;
- solving x²=25 gives x=±5.
Confusing these two statements is a frequent source of missing roots.
Worked Example 2: Back-Substitution Creates More Branches
Solve x⁴−5x²+4=0.
Let u=x². Then:
u²−5u+4=0
(u−1)(u−4)=0.
So u=1 or 4. Back-substitute:
- x²=1 → x=±1;
- x²=4 → x=±2.
Hence x=−2,−1,1,2. Two auxiliary branches became four original-variable branches.
Trigonometric Equations Are Branch Problems
A calculator’s inverse trig function returns one principal value. An equation over an interval may require several branches because sine, cosine and tangent repeat.
For sinθ=1/2 on 0°≤θ≤360°, the principal/reference angle is 30°, but sine is positive in Quadrants I and II. Therefore:
θ=30°,150°.
Case analysis here means handling sign/quadrant structure and the stated interval.
Worked Example 3: Trigonometric Quadratic with Branching
Solve 2cos²θ−3cosθ+1=0 for 0°≤θ≤360°.
Factor in cosθ:
(2cosθ−1)(cosθ−1)=0.
Branch A: cosθ=1/2 → θ=60°,300°.
Branch B: cosθ=1 → θ=0°,360° because both endpoints belong to the interval.
Final set: 0°,60°,300°,360°.
Parameter Regimes Are Cases
For a quadratic family, the sign of the discriminant partitions parameter space:
- Δ>0 → two distinct real roots;
- Δ=0 → one repeated real root;
- Δ<0 → no real roots.
These are mutually exclusive cases. A complete parameter analysis identifies the thresholds and states each regime clearly.
Worked Example 4: Three Root Regimes
For x²+kx+4=0:
Δ=k²−16.
- k<−4 or k>4 → two distinct real roots;
- k=−4 or 4 → repeated root;
- −4<k<4 → no real roots.
The boundary values form their own case because behaviour changes there.
Inequalities Split the Number Line into Cases
Critical values from factors, denominators or roots divide the number line into intervals. Each interval is a case with a consistent sign pattern.
For (x−1)(x−4)<0:
- x<1: both factors negative → product positive;
- 1<x<4: opposite signs → product negative;
- x>4: both positive → product positive.
Therefore 1<x<4.
The interval table is case analysis written spatially.
Kinematics Uses Sign Cases
For straight-line motion, speed behaviour depends on the signs of velocity v and acceleration a:
| v | a | Interpretation |
|---|---|---|
| + | + | moving positive direction, speeding up |
| + | − | moving positive direction, slowing down |
| − | − | moving negative direction, speeding up |
| − | + | moving negative direction, slowing down |
A complete motion analysis often requires splitting time into intervals where signs do not change.
Worked Example 5: Motion Branches
Suppose v(t)=t−3 and a(t)=1 for t≥0.
- 0≤t<3: v<0, a>0 → moving negative direction and slowing down;
- t=3: v=0 → at rest momentarily;
- t>3: v>0, a>0 → moving positive direction and speeding up.
The time t=3 is a boundary case separating two motion regimes.
Case Analysis in Proof
Not every proof requires cases, but some claims depend on sign or domain. If an expression contains |x|, for example, its algebraic form differs for x≥0 and x<0. A proof can proceed by exhausting those cases and showing the conclusion holds in each.
The key requirement is exhaustiveness: the cases must cover every admissible possibility without gaps.
Mutually Exclusive Versus Overlapping Cases
Good case design tries to make branches easy to manage. For example, x<0, x=0 and x>0 are mutually exclusive and exhaustive. By contrast, “x≤0” and “x≥0” overlap at zero. Overlap is not always wrong, but duplicated solutions must be handled deliberately.
When merging branch answers, remove duplicates and recheck original restrictions.
Completeness Audit
- What triggered multiple cases?
- Have all mathematically possible branches been listed?
- Are the branches mutually exclusive or do they overlap?
- Did any transformation create ± possibilities?
- Did any auxiliary variable create several original solutions?
- Did the interval include endpoints?
- Did domain restrictions eliminate any branches?
- After merging, are duplicates removed?
A solution is complete only when there is a reason no additional admissible branch remains.
Common Failure Modes
| Error | Cause | Repair |
|---|---|---|
| one factor divided away | zero branch lost | branch before dividing by unknown factor |
| x²=a gives only +√a | principal root confused with equation solutions | include ± when solving |
| one trig angle reported | periodic branches ignored | use quadrant/interval analysis |
| parameter threshold omitted | equality case merged incorrectly | treat boundary as its own regime |
| auxiliary roots not fully back-substituted | branch multiplication missed | solve each original-variable branch |
| duplicate answers listed repeatedly | overlapping branches not merged | deduplicate final set |
A 50-Minute Case-Analysis Session
- 8 minutes: factor equations where division would lose roots.
- 8 minutes: square/auxiliary equations requiring ± branches.
- 10 minutes: trig equations over full intervals.
- 8 minutes: parameter regime classification by discriminant.
- 8 minutes: sign-chart inequalities.
- 8 minutes: kinematics intervals classified by v and a signs.
What Mastery Looks Like
- The learner recognises when a problem naturally branches.
- The learner creates exhaustive cases before discarding any.
- The learner preserves zero-factor and ± branches.
- The learner handles periodic trig solutions across the full interval.
- The learner treats parameter thresholds as explicit cases.
- The learner partitions inequalities and motion problems into consistent sign intervals.
- The learner merges, filters and verifies the final solution set systematically.
Return to the Additional Mathematics Learning Hub
Additional Mathematics Learning Hub | Secondary 3–4 A-Math Guides