Numerical analysis

Numerical analysis is the study of
Before modern computers, numerical methods often relied on hand interpolation formulas, using data from large printed tables. Since the mid-20th century, computers calculate the required functions instead, but many of the same formulas continue to be used in software algorithms.[5]
The numerical point of view goes back to the earliest mathematical writings. A tablet from the Yale Babylonian Collection (YBC 7289), gives a sexagesimal numerical approximation of the square root of 2, the length of the diagonal in a unit square.
Numerical analysis continues this long tradition: rather than giving exact symbolic answers translated into digits and applicable only to real-world measurements, approximate solutions within specified error bounds are used.
Applications
The overall goal of the field of numerical analysis is the design and analysis of techniques to give approximate but accurate solutions to a wide variety of hard problems, many of which are infeasible to solve symbolically:
- Advanced numerical methods are essential in making numerical weather prediction feasible.
- Computing the trajectory of a spacecraft requires the accurate numerical solution of a system of ordinary differential equations.
- Car companies can improve the crash safety of their vehicles by using computer simulations of car crashes. Such simulations essentially consist of solving partial differential equations numerically.
- In the financial field, (private investment funds) and other financial institutions use quantitative finance tools from numerical analysis to attempt to calculate the value of stocks and derivatives more precisely than other market participants.[6]
- Airlines use sophisticated optimization algorithms to decide ticket prices, airplane and crew assignments and fuel needs. Historically, such algorithms were developed within the overlapping field of operations research.
- Insurance companies use numerical programs for actuarial analysis.
History
The field of numerical analysis predates the invention of modern computers by many centuries.

To facilitate computations by hand, large books were produced with formulas and tables of data such as interpolation points and function coefficients. Using these tables, often calculated out to 16 decimal places or more for some functions, one could look up values to plug into the formulas given and achieve very good numerical estimates of some functions. The canonical work in the field is the
The mechanical calculator was also developed as a tool for hand computation. These calculators evolved into electronic computers in the 1940s, and it was then found that these computers were also useful for administrative purposes. But the invention of the computer also influenced the field of numerical analysis,[5] since now longer and more complicated calculations could be done.
The Leslie Fox Prize for Numerical Analysis was initiated in 1985 by the Institute of Mathematics and its Applications.
Key concepts
Direct and iterative methods
Direct methods compute the solution to a problem in a finite number of steps. These methods would give the precise answer if they were performed in
In contrast to direct methods,
Iterative methods are more common than direct methods in numerical analysis. Some methods are direct in principle but are usually used as though they were not, e.g.
As an example, consider the problem of solving
- 3x3 + 4 = 28
for the unknown quantity x.
3x3 + 4 = 28. | |
Subtract 4 | 3x3 = 24. |
Divide by 3 | x3 = 8. |
Take cube roots | x = 2. |
For the iterative method, apply the bisection method to f(x) = 3x3 − 24. The initial values are a = 0, b = 3, f(a) = −24, f(b) = 57.
a | b | mid | f(mid) |
---|---|---|---|
0 | 3 | 1.5 | −13.875 |
1.5 | 3 | 2.25 | 10.17... |
1.5 | 2.25 | 1.875 | −4.22... |
1.875 | 2.25 | 2.0625 | 2.32... |
From this table it can be concluded that the solution is between 1.875 and 2.0625. The algorithm might return any number in that range with an error less than 0.2.
Conditioning
Ill-conditioned problem: Take the function f(x) = 1/(x − 1). Note that f(1.1) = 10 and f(1.001) = 1000: a change in x of less than 0.1 turns into a change in f(x) of nearly 1000. Evaluating f(x) near x = 1 is an ill-conditioned problem.
Well-conditioned problem: By contrast, evaluating the same function f(x) = 1/(x − 1) near x = 10 is a well-conditioned problem. For instance, f(10) = 1/9 ≈ 0.111 and f(11) = 0.1: a modest change in x leads to a modest change in f(x).
Discretization
Furthermore, continuous problems must sometimes be replaced by a discrete problem whose solution is known to approximate that of the continuous problem; this process is called 'discretization'. For example, the solution of a differential equation is a function. This function must be represented by a finite amount of data, for instance by its value at a finite number of points at its domain, even though this domain is a continuum.
Generation and propagation of errors
The study of errors forms an important part of numerical analysis. There are several ways in which error can be introduced in the solution of the problem.
Round-off
Truncation and discretization error
Truncation errors are committed when an iterative method is terminated or a mathematical procedure is approximated and the approximate solution differs from the exact solution. Similarly, discretization induces a discretization error because the solution of the discrete problem does not coincide with the solution of the continuous problem. In the example above to compute the solution of , after ten iterations, the calculated root is roughly 1.99. Therefore, the truncation error is roughly 0.01.
Once an error is generated, it propagates through the calculation. For example, the operation + on a computer is inexact. A calculation of the type is even more inexact.
A truncation error is created when a mathematical procedure is approximated. To integrate a function exactly, an infinite sum of regions must be found, but numerically only a finite sum of regions can be found, and hence the approximation of the exact solution. Similarly, to differentiate a function, the differential element approaches zero, but numerically only a nonzero value of the differential element can be chosen.
Numerical stability and well-posed problems
An algorithm is called Both the original problem and the algorithm used to solve that problem can be well-conditioned or ill-conditioned, and any combination is possible. So an algorithm that solves a well-conditioned problem may be either numerically stable or numerically unstable. An art of numerical analysis is to find a stable algorithm for solving a well-posed mathematical problem.
Areas of study
The field of numerical analysis includes many sub-disciplines. Some of the major ones are:
Computing values of functions
Interpolation: Observing that the temperature varies from 20 degrees Celsius at 1:00 to 14 degrees at 3:00, a linear interpolation of this data would conclude that it was 17 degrees at 2:00 and 18.5 degrees at 1:30pm. Extrapolation: If the gross domestic product of a country has been growing an average of 5% per year and was 100 billion last year, it might be extrapolated that it will be 105 billion this year. ![]() Regression: In linear regression, given n points, a line is computed that passes as close as possible to those n points. Optimization: Suppose lemonade is sold at a lemonade stand, at $1.00 per glass, that 197 glasses of lemonade can be sold per day, and that for each increase of $0.01, one less glass of lemonade will be sold per day. If $1.485 could be charged, profit would be maximized, but due to the constraint of having to charge a whole-cent amount, charging $1.48 or $1.49 per glass will both yield the maximum income of $220.52 per day. ![]() Differential equation: If 100 fans are set up to blow air from one end of the room to the other and then a feather is dropped into the wind, what happens? The feather will follow the air currents, which may be very complex. One approximation is to measure the speed at which the air is blowing near the feather every second, and advance the simulated feather as if it were moving in a straight line at that same speed for one second, before measuring the wind speed again. This is called the Euler method for solving an ordinary differential equation. |
One of the simplest problems is the evaluation of a function at a given point. The most straightforward approach, of just plugging in the number in the formula is sometimes not very efficient. For polynomials, a better approach is using the
Interpolation, extrapolation, and regression
Interpolation solves the following problem: given the value of some unknown function at a number of points, what value does that function have at some other point between the given points?
Extrapolation is very similar to interpolation, except that now the value of the unknown function at a point which is outside the given points must be found.[14]
Regression is also similar, but it takes into account that the data are imprecise. Given some points, and a measurement of the value of some function at these points (with an error), the unknown function can be found. The least squares-method is one way to achieve this.
Solving equations and systems of equations
Another fundamental problem is computing the solution of some given equation. Two cases are commonly distinguished, depending on whether the equation is linear or not. For instance, the equation is linear while is not.
Much effort has been put in the development of methods for solving
Root-finding algorithms are used to solve nonlinear equations (they are so named since a root of a function is an argument for which the function yields zero). If the function is differentiable and the derivative is known, then Newton's method is a popular choice.[16][17] Linearization is another technique for solving nonlinear equations.
Solving eigenvalue or singular value problems
Several important problems can be phrased in terms of
Optimization
Optimization problems ask for the point at which a given function is maximized (or minimized). Often, the point also has to satisfy some constraints.
The field of optimization is further split in several subfields, depending on the form of the
The method of
Evaluating integrals
Numerical integration, in some instances also known as numerical
Differential equations
Numerical analysis is also concerned with computing (in an approximate way) the solution of
Partial differential equations are solved by first discretizing the equation, bringing it into a finite-dimensional subspace.[23] This can be done by a finite element method,[24][25][26] a finite difference method,[27] or (particularly in engineering) a finite volume method.[28] The theoretical justification of these methods often involves theorems from functional analysis. This reduces the problem to the solution of an algebraic equation.
Software
Since the late twentieth century, most algorithms are implemented in a variety of programming languages. The
Over the years the
There are several popular numerical computing applications such as MATLAB,[29][30][31] TK Solver, S-PLUS, and IDL[32] as well as free and open-source alternatives such as FreeMat, Scilab,[33][34] GNU Octave (similar to Matlab), and IT++ (a C++ library). There are also programming languages such as R[35] (similar to S-PLUS), Julia,[36] and Python with libraries such as NumPy, SciPy[37][38][39] and SymPy. Performance varies widely: while vector and matrix operations are usually fast, scalar loops may vary in speed by more than an order of magnitude.[40][41]
Many
Also, any spreadsheet software can be used to solve simple problems relating to numerical analysis. Excel, for example, has hundreds of available functions, including for matrices, which may be used in conjunction with its built in "solver".
See also
- Category:Numerical analysts
- Analysis of algorithms
- Approximation theory
- Computational science
- Computational physics
- Gordon Bell Prize
- Interval arithmetic
- List of numerical analysis topics
- Local linearization method
- Numerical differentiation
- Numerical Recipes
- Probabilistic numerics
- Symbolic-numeric computation
- Validated numerics
Notes
References
Citations
- ^ "Photograph, illustration, and description of the root(2) tablet from the Yale Babylonian Collection". Archived from the original on 13 August 2012. Retrieved 2 October 2006.
- ISBN 978-1-61197-144-6.
- OCLC 877155729.
- ISBN 978-0-89871-361-9.
- ^ ISBN 978-0-444-59858-5.
- ^ Stephen Blyth. "An Introduction to Quantitative Finance". 2013. page VII.
- ^ a b
Watson, G.A. (2010). "The history and development of numerical analysis in Scotland: a personal perspective" (PDF). The Birth of Numerical Analysis. World Scientific. pp. 161–177. ISBN 9789814469456.
- ^
ISBN 978-981-283-625-0.
- ISBN 978-0-89871-534-7.
- ISBN 978-0-8284-0312-2.
- ISBN 978-0-8284-0312-2.
- ISBN 978-0-89871-396-1.
- ^ a b c Higham 2002
- ISBN 978-0-08-050622-7.
- .
- ISBN 978-3-319-55976-6.
- ISBN 978-3-540-21099-3.
- ^ Ogden, C.J.; Huff, T. (1997). "The Singular Value Decomposition and Its Applications in Image Compression" (PDF). Math 45. College of the Redwoods. Archived from the original (PDF) on 25 September 2006.
- ISBN 978-0-486-45339-2.
- ^ Weisstein, Eric W. "Gaussian Quadrature". MathWorld.
- ISBN 9780444898579.
- ISBN 978-0-521-73490-5.
- ISBN 978-0-08-057130-0.
- ISBN 978-0-486-46900-3.
- ISBN 978-1-4757-3658-8.
- OCLC 1145780513.
- ISBN 978-0-89871-793-8.
- ISBN 978-1-139-43418-8.
- ISBN 978-3-642-45367-0.
- ISBN 978-3-642-18873-2.
- OCLC 1058138488.
- ISBN 978-0-08-051444-4.
- ISBN 978-1-4612-7204-5.
- ISBN 978-3-319-89533-8.
- S2CID 60206680.
- S2CID 13026838.
- ^ Jones, E., Oliphant, T., & Peterson, P. (2001). SciPy: Open source scientific tools for Python.
- ISBN 9781306810395.
- ISBN 9781782161639.
- ^ Speed comparison of various number crunching packages Archived 5 October 2006 at the Wayback Machine
- ^ Comparison of mathematical programs for data analysis Archived 18 May 2016 at the Portuguese Web Archive Stefan Steinhaus, ScientificWeb.com
- OCLC 1311056676.
- ISBN 9781579550042.
- OCLC 28149048.
- ISBN 978-0-8176-4205-1.
Sources
- ISBN 0-8018-5413-X.
- Ralston Anthony; Rabinowitz Philips (2001). A First Course in Numerical Analysis (2nd ed.). Dover publications. ISBN 978-0486414546.
- ISBN 0-89871-355-2.
- ISBN 0-07-028761-9.
- David Kincaid and Ward Cheney: Numerical Analysis : Mathematics of Scientific Computing, 3rd Ed., AMS, ISBN 978-0-8218-4788-6 (2002).
- ISBN 0-201-73499-0.
- ISBN 978-0-19-853418-1.
- OCLC 25116949. (examples of the importance of accurate arithmetic).
- ISBN 978-0-691-11880-2.
External links
Journals
- Numerische Mathematik, volumes 1–..., Springer, 1959–
- volumes 1–66, 1959–1994 (searchable; pages are images). (in English and German)
- Journal on Numerical Analysis (SINUM), volumes 1–..., SIAM, 1964–
Online texts
- "Numerical analysis", Encyclopedia of Mathematics, EMS Press, 2001 [1994]
- Numerical Recipes, William H. Press (free, downloadable previous editions)
- First Steps in Numerical Analysis (archived), R.J.Hosking, S.Joe, D.C.Joyce, and J.C.Turner
- CSEP (Computational Science Education Project), U.S. Department of Energy (archived 2017-08-01)
- Numerical Methods, ch 3. in the Digital Library of Mathematical Functions
- Numerical Interpolation, Differentiation and Integration, ch 25. in the Handbook of Mathematical Functions (Abramowitz and Stegun)
- Tobin A. Driscoll and Richard J. Braun: Fundamentals of Numerical Computation (free online version)
Online course material
- Numerical Methods (Archived 28 July 2009 at the Wayback Machine), Stuart Dalziel University of Cambridge
- Lectures on Numerical Analysis, Dennis Deturck and Herbert S. Wilf University of Pennsylvania
- Numerical methods, John D. Fenton University of Karlsruhe
- Numerical Methods for Physicists, Anthony O’Hare Oxford University
- Lectures in Numerical Analysis (archived), R. Radok Mahidol University
- Introduction to Numerical Analysis for Engineering, Henrik Schmidt Massachusetts Institute of Technology
- Numerical Analysis for Engineering, D. W. Harder University of Waterloo
- Introduction to Numerical Analysis, Doron Levy University of Maryland
- Numerical Analysis - Numerical Methods (archived), John H. Mathews California State University Fullerton