Union of intervals
The union contains every point that lies in A or B (or both).
If the intervals overlap or touch in a way that fills the gap, the result is a single interval;
otherwise you get two disjoint intervals.
Example: [1, 5] ∪ (4, 10] = [1, 10].
Try it!
Intersection of intervals
The intersection keeps only points that belong to both intervals.
If they do not overlap, the result is empty (∅).
Example: [0, 5) ∩ [3, 8] = [3, 5).
Try it!
Disjoint union
When intervals do not meet, the union stays as two pieces.
Example: [0, 1] ∪ [2, 3] = [0, 1] ∪ [2, 3].
Try it!
FAQ
How do I write open vs closed endpoints?
Use square brackets for included endpoints and parentheses for excluded ones:
[a, b] closed, (a, b) open, mixtures like [a, b) allowed.
How is this different from a list set calculator?
List sets (home page) compare discrete items. Intervals compare all real numbers between endpoints.
Pick the tool that matches your homework notation.