INTERVAL2
INTERVAL2 is a formalism used in numerical analysis to represent and manipulate two-dimensional intervals. It extends traditional interval arithmetic by handling a pair of bound intervals, typically denoted as I1 = [a, b] and I2 = [c, d], which together bound a vector quantity or two correlated quantities.
A typical INTERVAL2 object is a pair of real intervals (I1, I2) that represents all pairs (x,
Arithmetic on INTERVAL2 follows extensions of interval arithmetic. For example, addition is performed componentwise: (I1, I2)
Applications of INTERVAL2 include validated numerics, robust optimization, and error bounding in simulations where two quantities
Example: if x ∈ [1, 2] and y ∈ [3, 4], then INTERVAL2(x, y) = ([1, 2], [3, 4]). For
See also: interval arithmetic, affine arithmetic, validated numerics.