Convert between inequalities and interval notation
Use 'inf' for positive infinity and '-inf' for negative infinity. Use parentheses () for open intervals (exclusive) and brackets [] for closed intervals (inclusive).
[-5, inf)
.(3, 7]
when you mean to include 3. This notation (3, 7]
means 3 < x <= 7
.[3, 7]
for 3 <= x <= 7
. Always use a bracket [
or ]
for an endpoint that is included in the set.[5, ∞]
or (-∞, 10]
.[5, ∞)
and (-∞, 10)
.(8, 2)
.(2, 8)
.{ x ∈ ℝ | a < x < b }
--- Interval: (a, b)
{ x ∈ ℝ | x ≥ a }
--- Interval: [a, ∞)
x < -3
or x > 3
. In interval notation, this is written as (-∞, -3) ∪ (3, ∞)
.