Solve linear, quadratic, and absolute value inequalities step by step. Visualize the solution set on a number line, get interval notation, and learn the logic behind each transformation.
Try these examples to see how the inequality solver works:
An inequality is a mathematical statement that relates two expressions using symbols such as <, >, <=, or >=. Solving inequalities means finding all values of the variable that make the inequality true. Unlike equations, solutions are often intervals or unions of intervals on the real number line. Our solver handles three fundamental types: linear, quadratic, and absolute value inequalities.
The solution set can be expressed in interval notation (e.g., (a, b), [c, ∞)) or graphically on a number line.
Our inequality solver uses symbolic parsing and algebraic manipulation. It normalizes the inequality to bring all terms to one side (f(x) ⋛ 0), then identifies the type:
Solution intervals are displayed both in interval notation and on an interactive number line with proper open/closed endpoints.
| Inequality | Type | Solution (Interval) | Graph Interpretation |
|---|---|---|---|
| 2x - 5 <= 7 | Linear | (-∞, 6] | All x <= 6, closed dot at 6 |
| x^2 - 9 > 0 | Quadratic | (-∞, -3) ∪ (3, ∞) | Two open intervals |
| |x + 1| < 4 | Absolute | (-5, 3) | Open interval between -5 and 3 |
| 3 - 2x >= 7 | Linear | (-∞, -2] | Closed dot at -2, extends left |
| -x^2 + 4x >= 0 | Quadratic | [0, 4] | Closed interval between roots |
A manufacturing company determines profit P(x) = -2x^2 + 120x - 1000 (in thousands) where x is thousands of units. The company wants profit > 800. Solving -2x^2 + 120x - 1800 > 0 simplifies to x^2 - 60x + 900 < 0 -> (x-30)^2 < 0, which has no real solution. This tells management that profit never exceeds 800; they must adjust costs or pricing. Inequalities are critical in optimization, quality control, and engineering tolerance design.