Dictionary of Meaning
<<Back
Please select a letter:
A |
B |
C |
D |
E |
F |
G |
H |
I |
J |
K |
L |
M |
N |
O |
P |
Q |
R |
S |
T |
U |
V |
W |
X |
Y |
Z |
0-9
Click here for Shopping
Approximation theory
*** Shopping-Tip: Approximation theory
In
mathematics, '''approximation theory''' is concerned with how
functions can be
approximation approximated with simpler
function (mathematics) functions, and with
quantitatively
characterization (mathematics) characterising the
approximation error errors introduced thereby.
One problem of particular interest is that of approximating a function in a
computer
mathematical library, using operations that are easy for a computer (e.g. addition
and multiplication), such that the result is as close to the actual function as
possible. This is typically done with
polynomial or
rational approximations.
The objective is to make the approximation as close as possible to the actual function,
typically with an accuracy close to that of the underlying computer's
floating point
arithmetic. This is accomplished by using a polynomial of high degree, and/or narrowing
the domain over which the polynomial has to approximate the function.
Narrowing the domain can often be done though the use of various addition or scaling
formulas for the function being approximated. Modern mathematical libraries often reduce
the domain into many tiny segments and use a low-degree polynomial for each segment.
Once the domain and degree of the polynomial are chosen, the polynomial itself is chosen
in such a way as to minimize the worst-case error. That is, the goal is to minimize
the maximum value of
, where P(x) is the approximating polynomial
and f(x) is the actual function. For well-behaved functions, the optimum N
th
degree polynomial will lead to an error curve that oscillates back and forth between
and
a total of N+2 times, giving a
worst-case error of
. (It is possible to make contrived functions f(x)
for which this property doesn't hold, but in practice it's generally true.) Example graphs,
for N=4, showing the error in approximating log(x) and exp(x), are shown below.
Image:Logerror.png thumb|left|300px|Error between optimal polynomial and log(x) (red), and Chebyshev approximation and log(x) (blue) over the interval [2, 4]. Vertical divisions are 10-5. Maximum error for the optimal polynomial is 6.07 x 10-5
Image:Experror.png thumb|center|300px|Error between optimal polynomial and exp(x) (red), and Chebyshev approximation and exp(x) (blue) over the interval [-1, 1]. Vertical divisions are 10-4. Maximum error for the optimal polynomial is 5.47 x 10-4
Note that, in each case, the number of maxima is N+2, that is, 6. Two of the maxima are
at the end points. The red curves, for the optimal polynomial, are '''level''', that is,
they oscillate between
and
exactly.
If an N
th degree polynomial leads to an error function that oscillates between
maxima at
and
N+2 times, that polynomial is
optimal.
Approximation theory/proofs (proof)
Chebyshev Approximation
One can obtain polynomials very close to the optimal one by expanding the given function
in terms of
Chebyshev polynomials and then cutting off the expansion at the desired degree.
This is similar to the
Harmonic analysis Fourier analysis of the function, using the Chebyshev polynomials instead of the usual trigonometric functions.
If one calculates the coefficients in the Chebyshev expansion for a function:
:
and then cuts off the series after N terms, one gets an N
th degree polynomial
approximating f(x).
The reason this polynomial is nearly optimal is that, for functions with rapidly converging
power series, if the series is cut off after the N
th term, the total error
arising from the cutoff is close to the first term after the cutoff. That is, the first
term after the cutoff dominates all later terms. The same is true if the expansion is in terms
of Chebyshev polynomials. If a Chebyshev expansion is cut off after
, the
error will take a form close to
. The Chebyshev polynomials have the
property that they are level — they oscillate between +1 and -1 in the interval [-1, 1].
has N+2 level maxima. This means that the error between f(x) and
its Chebyshev expansion out to
is close to a level function with N+2
maxima, so it is close to the optimal N
th degree polynomial.
In the graphs above, note that the blue error function is sometimes better than (inside of)
the red function, but sometimes worse, meaning that it is not quite the optimal
polynomial. Note also that the discrepancy is relatively less serious for the
exp function, which has an extremely rapidly converging power series, than for the log function.
Remes' algorithm
Remes' algorithm is used to produce an optimal polynomial P(x) approximating a given function f(x)
over a given interval. It is an iterative algorithm that converges to a polynomial that has an error function with N+2 level extrema. By the theorem above, that polynomial is optimal.
Remes' algorithm uses the fact that one can construct an N
th degree polynomial that leads to level and alternating error values, given N+2 test points.
Given N+2 test points
,
...
(where
and
are presumably the end points of the interval
of approximation), these equations need to be solved:
:
:
:
:
:
The right-hand-sides alternate in sign.
That is,
:
:
:
Since
...
were given, all of their powers are known,
and
...
are also known. That means that the
above equations are just n+2 linear equations in the n+2 variables
,
...
, and
. Given the test
points
...
, one can solve this sytem to get the polynomial P
and the number
.
The graph below shows an example of this, producing a 4
th degree polynomial
approximating
over [-1, 1]. The test points were set at
-1, -0.7, -0.1, +0.4, +0.9, and 1. Those values are shown in green. The resultant
value of
is 4.43 x 10
-4
Image:Remesdemo.png thumb|center|300px|Error of the polynomial produced by the first step of Remes' algorithm, approximating ex over the interval [-1, 1]. Vertical divisions are 10-4.
Note that the error graph does indeed take on the values
at
the 6 test points, including the end points, but that those points are not extrema. If the 4 interior test points had been
extrema (that is, the function P(x)-f(x) had maxima or minima there), the polynomial would be
optimal.
The second step of Remes' algorithm consists of moving test points to the approximate
locations where the error function had its actual local minima or maxima. For example, one can tell from looking at the graph that the point at -0.1 should have been at about -0.28.
The way to do this in the algorithm is to use a single round of
Newton's method. Since one knows
the first and second derivatives of P(x)-f(x), one can calculate approximately how far a test point
has to be moved so that the derivative will be zero.
:Calculating the derivatives of a polynomial is straightforward. One must also be able to calculate the first and second derivatives of f(x). Remes' algorithm requires an ability to calculate
,
, and
to extremely high precision. The entire algorithm must be carried out to higher precision than the desired precision of the result.
After moving the test points, the linear equation part is repeated, getting a new polynomial,
and Newton's method is used again to move the test points again. This sequence is continued
until the result converges to the desired accuracy. The algorithm converges very rapidly.
Convergence is quadratic for well-behaved functions — if the test points are within
of the correct result, they will be approximately within
of the correct result after the next round.
Remes' algorithm is typically started by choosing the maxima of the Chebyshev polynomial
as the initial points, since the final error function will be similar to
that polynomial.
See also
*
Chebyshev polynomials
References
* C. Hastings, Jr. ''Approximations for Digital Computers,'' Princeton University Press, 1955.
* J. F. Hart, E. W. Cheney, C. L. Lawson, H. J. Maehly, C. K. Mesztenyi, J. R. Rice, H. C. Thacher Jr., C. Witzgall ''Computer Approximations,'' Wiley, 1968, Lib. Cong. 67-23326.
* W. J. Cody Jr., W. Waite ''Software Manual for the Elementary Functions,'' Prentice-Hall, 1980, ISBN 0-13-822064-6.
Category:Approximation theory *
Category:Numerical analysis
{{math-stub}}
es:Teoría de la aproximación
vi:Lý thuyết xấp xỉ
In
mathematics,
approximation theory is concerned with how functions can be approximated with other, simpler, functions, and with characterizing in a
quantitative way the errors introduced thereby.
Category:Functional analysis
Category:Numerical analysis
*** Shopping-Tip: Approximation theory