Tests edge cases, boundary conditions, and common misconceptions for inequalities.
UT-1: Sign Flip When Dividing by Negative
Question:
Solve the inequality 2−x3x−1≥0.
Solution:
Critical values: x=31 (numerator zero) and x=2 (denominator zero).
Do NOT cross-multiply, because the sign of (2−x) is unknown.
Sign chart:
Interval
3x−1
2−x
Quotient
x<31
−
+
−
31<x<2
+
+
+
x>2
+
−
−
At x=31: quotient is 0 (included since ≥0).
At x=2: undefined (excluded).
Solution: x∈[31,2).
A common mistake is cross-multiplying by (2−x) without considering the sign, which would give the wrong inequality direction for x>2.
UT-2: Absolute Value Inequality
Question:
Solve ∣2x−5∣<3x+1.
Solution:
Since the RHS involves xWe cannot split into two cases without considering the sign of the RHS.
Case 1:3x+1≤0I.e. x≤−31.
∣2x−5∣≥0 and 3x+1≤0So ∣2x−5∣≥0>3x+1 is possible only if ∣2x−5∣<3x+1. But 3x+1≤0 while ∣2x−5∣≥0So ∣2x−5∣<3x+1 is impossible when 3x+1≤0 (since LHS ≥0 and RHS ≤0Equality requires both zero, but ∣2x−5∣=0⟹x=5/2≤−1/3).
No solution in this case.
Case 2:3x+1>0I.e. x>−31.
−(3x+1)<2x−5<3x+1
Left inequality: −3x−1<2x−5⟹−5x<−4⟹x>54.
Right inequality: 2x−5<3x+1⟹−x<6⟹x>−6 (always true when x>−31).
Combining with x>−31: x>54.
Solution: x∈(54,∞).
UT-3: Quadratic Inequality with Non-Standard Leading Coefficient
Question:
Solve −2x2+3x+5>0.
Solution:
Factorise: −2x2+3x+5=−(2x2−3x−5)=−(2x−5)(x+1).
So (2x−5)(x+1)<0.
Critical values: x=−1 and x=25.
Since the parabola 2x2−3x−5 opens upward, it is negative between the roots.
Solution: −1<x<25I.e. x∈(−1,25).
A common mistake is forgetting to reverse the inequality when factoring out the negative sign.
UT-4: System of Linear Inequalities — Feasible Region
Question:
Find the region satisfying all of the following:
x+y≤6,2x−y≥1,x≥0,y≥0
Find the maximum value of P=3x+2y in this region.
Solution:
Corner points of the feasible region:
Intersection of x+y=6 and 2x−y=1: adding gives 3x=7So x=37, y=6−37=311. Point: (37,311).
Intersection of 2x−y=1 with y=0: 2x=1, x=21. Point: (21,0).
Intersection of x+y=6 with x=0: y=6. Point: (0,6).
Origin: (0,0).
Evaluate P=3x+2y:
(37,311): P=7+322=343≈14.33
(21,0): P=23=1.5
(0,6): P=12
(0,0): P=0
Maximum value: 343 at (37,311).
UT-5: Inequality Involving Reciprocals
Question:
Solve x−11≤x+12.
Solution:
Bring to one side:
x−11−x+12≤0
(x−1)(x+1)(x+1)−2(x−1)≤0
(x−1)(x+1)x+1−2x+2≤0
(x−1)(x+1)3−x≤0
(x−1)(x+1)x−3≥0
Critical values: x=−1, x=1, x=3.
Sign chart:
Interval
Test
Sign
x<−1
x=−2
−
−1<x<1
x=0
+
1<x<3
x=2
−
x>3
x=4
+
Including zeros (x=3), excluding poles (x=−1,1):
Solution: (−1,1)∪[3,∞).
Integration Tests
Tests synthesis of inequalities with other topics.
IT-1: Inequalities and Quadratics (with Quadratics)
Question:
Find the range of values of k such that the quadratic expression x2+2kx+k2−2k+5 is always positive for all real x.
Solution:
The expression is always positive if the discriminant is negative (since the leading coefficient 1>0).
Δ=(2k)2−4(k2−2k+5)=4k2−4k2+8k−20=8k−20
Δ<0⟹8k−20<0⟹k<25.
Solution: k∈(−∞,25).
IT-2: Inequalities and Functions (with Functions)
Question:
Let f(x)=x2−6x+5. Find the set of values of x for which f(x)≤f(2x).
Solution:
f(x)=x2−6x+5 and f(2x)=4x2−12x+5.
x2−6x+5≤4x2−12x+5
0≤3x2−6x
3x2−6x≥0
3x(x−2)≥0
Critical values: x=0, x=2.
Solution: x≤0 or x≥2I.e. x∈(−∞,0]∪[2,∞).
IT-3: Inequalities and Logarithms (with Logarithms)
Question:
Solve log2(x+3)<log2(5−x).
Solution:
Since the logarithm function is strictly increasing, we can compare arguments directly:
x+3<5−x
2x<2⟹x<1
But we also need the domain: x+3>0 and 5−x>0Giving −3<x<5.
Combining: −3<x<1.
Solution: x∈(−3,1).
A common mistake is forgetting the domain restriction. If the base were between 0 and 1, the inequality would reverse.
Worked Examples
WE-1: Solving a System of Inequalities
Question:
Solve the simultaneous inequalities:
2x+3>x+7and3x−1≤2x+5
Solution:
First inequality: 2x+3>x+7⟹x>4.
Second inequality: 3x−1≤2x+5⟹x≤6.
Both must hold: 4<x≤6I.e. x∈(4,6].
WE-2: Quadratic Inequality with Equal Roots
Question:
Find the range of values of k for which x2−6x+k>0 for all real x.
Solution:
For the quadratic to be always positive (since the leading coefficient 1>0), we need Δ<0.
Δ=36−4k<0⟹k>9
When k=9: Δ=0And x2−6x+9=(x−3)2≥0. The inequality is strict (>), so x=3 gives 0>0.
Therefore k>9 (strictly).
WE-3: Absolute Value Inequality
Question:
Solve ∣3x−4∣≤8.
Solution:
−8≤3x−4≤8
−4≤3x≤12
−34≤x≤4
Solution: x∈[−34,4].
WE-4: Inequality with Rational Expression
Question:
Solve x2+1x2−1>0.
Solution:
The denominator x2+1>0 for all real x (always positive).
Therefore the sign of the expression is determined by the numerator alone:
x2−1>0⟹(x−1)(x+1)>0⟹x<−1 or x>1.
Solution: x∈(−∞,−1)∪(1,∞).
WE-5: Non-Linear Inequality
Question:
Solve x3−x2−x+1≤0.
Solution:
x3−x2−x+1=x2(x−1)−(x−1)=(x−1)(x2−1)=(x−1)2(x+1)
Critical values: x=1 (double root) and x=−1.
Sign chart:
Interval
Test
(x−1)2
(x+1)
Product
x<−1
x=−2
+
−
−
−1<x<1
x=0
+
+
+
x>1
x=2
+
+
+
The expression is non-positive when x≤−1 or x=1.
Solution: x∈(−∞,−1]∪{1}.
WE-6: Quadratic Inequality with No Real Roots
Question:
Show that x2+4x+5>0 for all real x.
Solution:
Δ=16−20=−4<0
Since the discriminant is negative and the leading coefficient is positive, the quadratic is always positive.
Alternatively, completing the square:
x2+4x+5=(x+2)2+1≥1>0
WE-7: Inequality Involving Square Roots
Question:
Solve 2x+1≤x+1.
Solution:
Domain: 2x+1≥0⟹x≥−21. Also RHS =x+1.
Since 2x+1≥0We need x+1≥0I.e. x≥−1.
Combined domain: x≥−21.
Squaring both sides: 2x+1≤x2+2x+1⟹0≤x2Which is true for all real x.
So the solution is the domain: x∈[−21,∞).
DSE Exam Technique: When squaring both sides of an inequality, always check the domain and the sign of both sides. Squaring is only valid when both sides are non-negative.
WE-8: Product of Two Linear Inequalities
Question:
Solve (2x−3)(x+4)>0.
Solution:
Critical values: x=23 and x=−4.
Since the quadratic opens upward (leading coefficient =2>0):
The product is positive outside the roots.
Solution: x<−4 or x>23I.e. x∈(−∞,−4)∪(23,∞).
Common Pitfalls
Forgetting to flip the inequality when multiplying or dividing by a negative number. If you multiply or divide both sides of an inequality by a negative quantity, you MUST reverse the inequality sign. This is the single most common error in inequality problems.
Cross-multiplying without considering the sign of the denominator. When solving BA>0You cannot write A>0 because the sign depends on B. Use a sign chart or consider cases.
Including values that make the denominator zero. When solving rational inequalities, the values that make the denominator zero must be EXCLUDED from the solution set, even if the numerator is also zero at those points.
Incorrectly handling double roots. A double root does not change the sign of the expression (it “bounces off” the axis). So at a double root, the expression equals zero, and the inequality direction determines whether to include or exclude it.
Not checking the domain before squaring. When solving f(x)>g(x)You must first establish that f(x)≥0 and g(x)≥0 before squaring both sides. Squaring an inequality where one side is negative gives incorrect results.
DSE Exam-Style Questions
DSE-1
Find the range of values of x for which:
(a) x2−5x+6<0 (2 marks) (b) 2x2+3x−2≥0 (3 marks) (c) Both inequalities in (a) and (b) are satisfied simultaneously. (2 marks)
Solution:
(a) (x−2)(x−3)<0⟹2<x<3I.e. x∈(2,3).
(b) (2x−1)(x+2)≥0.
Critical values: x=21 and x=−2.
Opens upward: x≤−2 or x≥21I.e. x∈(−∞,−2]∪[21,∞).
(c) Intersection of (2,3) and (−∞,−2]∪[21,∞):
(2,3)∩[21,∞)=(2,3).
Solution: x∈(2,3).
DSE-2
Find the range of values of k for which the equation x2+2kx+k2+3=0 has:
(a) Two distinct real roots. (2 marks) (b) No real roots. (1 mark) (c) Real roots that are both positive. (4 marks)
Solution:
(a) Δ=(2k)2−4(k2+3)=4k2−4k2−12=−12<0 for all k.
There are NEVER two distinct real roots. The answer is: no such value of k exists.
(b) Δ<0 for all kSo there are no real roots for all values of k.
(c) Since the equation never has real roots, there is no value of k for which both roots are positive.
DSE-3
Solve the inequality x2−9x2−4x+3≤0. (5 marks)
Solution:
(x−3)(x+3)(x−1)(x−3)=x+3x−1
Provided x=3 (makes denominator zero in original) and x=−3.
x+3x−1≤0.
Critical values: x=−3 (excluded) and x=1 (included).
Sign chart:
Interval
Test
Sign
x<−3
x=−4
+
−3<x<1
x=0
−
x>1
x=2
+
Including x=1Excluding x=−3 and x=3.
Solution: x∈(−3,1]∪(3,∞)? No — checking: for x>3, x+3x−1>0Which does not satisfy ≤0.
Correct solution: x∈(−3,1].
DSE-4
Solve ∣x−3∣>∣2x+1∣. (4 marks)
Solution:
Square both sides (both sides are non-negative after taking absolute value):
(x−3)2>(2x+1)2
x2−6x+9>4x2+4x+1
0>3x2+10x−8
3x2+10x−8<0
(3x−2)(x+4)<0
−4<x<32
Solution: x∈(−4,32).
DSE-5
Find the range of values of x for which both x−2x>0 and x2−4x+3<0 are satisfied. (5 marks)