►ClosedOpenInterval(a, b) — [a,b)
— Represents {x:x∈R∪{−∞,∞}anda≤xandx<b}.
►ClosedOpenInterval(0, 1) — [0,1)
— Represents the unit interval (including 0, excluding 1).
►ClosedOpenInterval(1, 1) — [1,1)
— Represents the empty set.
►ClosedOpenInterval(Neg(Infinity), 0) — [−∞,0)
— Represents half the extended real line (including minus infinity, excluding zero).
►ClosedOpenInterval(1, -1) — [1,−1)
— Represents the empty set. Note: potentially confusing rendering.
►Add(1, Mul(ClosedOpenInterval(0, 1), ConstI)) — 1+[0,1)i
— Represents a set of points in the complex plane. ClosedOpenInterval(a, b) should only be used with extended real number a
and b
as endpoints, but line segments in the complex plane can be constructed by applying arithmetic operations to a set of real numbers (acting pointwise).
►Add(ClosedOpenInterval(1, 4), Mul(ClosedOpenInterval(0, 1), ConstI)) — [1,4)+[0,1)i
— Represents a rectangle in the complex plane.
Definitions:
Fungrim symbol | Notation | Short description |
---|---|---|
ClosedOpenInterval | [a,b) | Closed-open interval |
RR | R | Real numbers |
Infinity | ∞ | Positive infinity |
ConstI | i | Imaginary unit |
Source code for this entry:
Entry(ID("b2162a"), SymbolDefinition(ClosedOpenInterval, ClosedOpenInterval(a, b), "Closed-open interval"), CodeExample(ClosedOpenInterval(a, b), "Represents", Set(x, ForElement(x, Union(RR, Set(Neg(Infinity), Infinity))), And(LessEqual(a, x), Less(x, b))), "."), CodeExample(ClosedOpenInterval(0, 1), "Represents the unit interval (including 0, excluding 1)."), CodeExample(ClosedOpenInterval(1, 1), "Represents the empty set."), CodeExample(ClosedOpenInterval(Neg(Infinity), 0), "Represents half the extended real line (including minus infinity, excluding zero)."), CodeExample(ClosedOpenInterval(1, -1), "Represents the empty set.", " Note: potentially confusing rendering."), CodeExample(Add(1, Mul(ClosedOpenInterval(0, 1), ConstI)), "Represents a set of points in the complex plane. ", SourceForm(ClosedOpenInterval(a, b)), "should only be used with extended real number", a, "and", b, "as endpoints, but line segments in the complex plane can be constructed by applying arithmetic operations to a set of real numbers (acting pointwise)."), CodeExample(Add(ClosedOpenInterval(1, 4), Mul(ClosedOpenInterval(0, 1), ConstI)), "Represents a rectangle in the complex plane. "))