The notation [a,b] denotes all real numbers between a and b, including a and b. The interval can be represted by the computer by the ordered pair [a,b]. By convention a <= b.
Arithmetic operations may be defined on intervals. The operations are expected to return an interval that contains the image of the input intervals under the operation, but the resulting interval need not be the smallest interval that contains the results of the operations.
[a,b] + [c,d] = [a+c,b+d],
[a,b] - [c,d] = [a-d,b-c],
[a,b] * [c,d] = [min(ac,ad,bc,bd),max(ac,ad,bc,bd)],
1/[a,b] = [1/b,1/a] only if 0 not in [a,b].
Using the above rules, interval versions of polynomials and rational functions (quotients of polynomials) can be evaluated. Under these rules, we are only guaranteed that
r(X) contain {r(x) | x in X}
for an interval rational function r and a given interval X. We are however able to also guarantee that if X is a subset of X', then r(X) is a subset of r(X').
Using the above rules, interval versions of polynomials and rational functions (quotients of polynomials) can be evaluated.
The natural interval extension of any function that is monotonic (always increasing or decreasing) returns the interval whose endpoints are the function applied to the input enpoints. For example
[a,b]^3 = [a^3,b^3],
exp([a,b]) = [exp(a),exp(b)].
The natural interval extension of any differentiable function is found by the extrema of the functions results. These extrema occur at the images of the interval's endpoints and at the critical values of the function. The point x is a critical point of f if f'(x) = 0, and the critical value is the result of f(x). Hence, for a function f with critical points a < x1,x2,... < b the natural interval extension returns
f([a,b]) = [min(f(a),f(x1),f(x2),...,f(b)),max(f(a),f(x1),f(x2),...,f(b))].
The zeroes of a function are the points x such that f(x) = 0. Assuming one has an interval implementation of a function f and its derivative f', the following procedure will isolate the zeroes of the function.
Given an interval [a,b]
Once a zero is isolated (such as from the above method) it can be refined using the following method. Given a function f, let F be its interval version, and F' the interval version of its derivative. Then the interval Newton iteration step is produced by the function
N(X) = m(X) - f(m(X))/F'(X)
where m([a,b]) returns (a+b)/2.