Mathematica 8 is now available
 Documentation /  Mathematica Teacher's Edition /  The Teacher's Book /  Appendix /  Some Notes on Internal Implementation /

A.9.4 Numerical and Related Functions

Number representation and numerical evaluation

FilledSmallCircle Large integers and high-precision approximate numbers are stored as arrays of base or digits, depending on the lengths of machine integers.
FilledSmallCircle Precision is internally maintained as a floating-point number.
FilledSmallCircle IntegerDigits and related base conversion functions use a recursive divide-and-conquer algorithm.
FilledSmallCircle N uses an adaptive procedure to increase its internal working precision in order to achieve whatever overall precision is requested.
FilledSmallCircle Floor, Ceiling and related functions use an adaptive procedure similar to N to generate exact results from exact input.

Basic arithmetic

FilledSmallCircle Multiplication of large integers and high-precision approximate numbers is done using interleaved Karatsuba and FFT algorithms.
FilledSmallCircle Integer powers are found by an algorithm based on Horner's rule.
FilledSmallCircle Reciprocals and rational powers of approximate numbers use Newton's method.
FilledSmallCircle Exact roots start from numerical estimates.
FilledSmallCircle Significance arithmetic is used for all arithmetic with approximate numbers beyond machine precision.
FilledSmallCircle Basic arithmetic uses approximately 400 pages of C source code.

Pseudorandom numbers

FilledSmallCircle Random uses the Wolfram rule 30 cellular automaton generator for integers.
FilledSmallCircle It uses a Marsaglia-Zaman subtract-with-borrow generator for real numbers.

Number-theoretical functions

FilledSmallCircle GCD uses the Jebelean-Weber accelerated GCD algorithm, together with a combination of Euclid's algorithm and an algorithm based on iterative removal of powers of 2.
FilledSmallCircle PrimeQ first tests for divisibility using small primes, then uses the Miller-Rabin strong pseudoprime test base 2 and base 3, and then uses a Lucas test.
FilledSmallCircle As of 1997, this procedure is known to be correct only for , and it is conceivable that for larger it could claim a composite number to be prime.
FilledSmallCircle The package NumberTheory`PrimeQ` contains a much slower algorithm which has been proved correct for all . It can return an explicit certificate of primality.
FilledSmallCircle FactorInteger switches between removing small primes by trial division and using the Pollard , Pollard rho and continued fraction algorithm.
FilledSmallCircle The package NumberTheory`FactorIntegerECM` contains an elliptic curve algorithm suitable for factoring some very large integers.
FilledSmallCircle Prime and PrimePi use sparse caching and sieving. For large , the Lagarias-Miller-Odlyzko algorithm for PrimePi is used, based on asymptotic estimates of the density of primes, and is inverted to give Prime.
FilledSmallCircle LatticeReduce uses the Lenstra-Lenstra-Lovasz lattice reduction algorithm.
FilledSmallCircle To find a requested number of terms ContinuedFraction uses a modification of Lehmer's indirect method, with a self-restarting divide-and-conquer algorithm to reduce the numerical precision required at each step.
FilledSmallCircle ContinuedFraction uses recurrence relations to find periodic continued fractions for quadratic irrationals.
FilledSmallCircle FromContinuedFraction uses iterated matrix multiplication optimized by a divide-and-conquer method.

Combinatorial functions

FilledSmallCircle Most combinatorial functions use sparse caching and recursion.
FilledSmallCircle Factorial, Binomial and related functions use a divide-and-conquer algorithm to balance the number of digits in subproducts.
FilledSmallCircle Fibonacci[n] uses an iterative method based on the binary digit sequence of n.
FilledSmallCircle PartitionsP[n] uses Euler's pentagonal formula for small n, and the non-recursive Hardy-Ramanujan-Rademacher method for larger n.
FilledSmallCircle ClebschGordan and related functions use generalized hypergeometric series.

Elementary transcendental functions

FilledSmallCircle Exponential and trigonometric functions use Taylor series, stable recursion by argument doubling, and functional relations.
FilledSmallCircle Log and inverse trigonometric functions use Taylor series and functional relations.

Mathematical constants

FilledSmallCircle Values of constants are cached once computed.
FilledSmallCircle Binary splitting is used to subdivide computations of constants.
FilledSmallCircle Pi uses the Chudnovsky formula for computations up to ten million digits.
FilledSmallCircle E is computed from its series expansion.
FilledSmallCircle EulerGamma uses the Brent-McMillan algorithm.
FilledSmallCircle Catalan is computed from a linearly convergent Ramanujan sum.

Special functions

FilledSmallCircle For machine precision most special functions use Mathematica-derived rational minimax approximations. The notes that follow apply mainly to arbitrary precision.
FilledSmallCircle Orthogonal polynomials use stable recursion formulas for polynomial cases and hypergeometric functions in general.
FilledSmallCircle Gamma uses recursion, functional equations and the Binet asymptotic formula.
FilledSmallCircle Incomplete gamma and beta functions use hypergeometric series and continued fractions.
FilledSmallCircle PolyGamma uses Euler-Maclaurin summation, functional equations and recursion.
FilledSmallCircle PolyLog uses Euler-Maclaurin summation, expansions in terms of incomplete gamma functions and numerical quadrature.
FilledSmallCircle Zeta and related functions use Euler-Maclaurin summation and functional equations. Near the critical strip they also use the Riemann-Siegel formula.
FilledSmallCircle StieltjesGamma uses Keiper's algorithm based on numerical quadrature of an integral representation of the zeta function.
FilledSmallCircle The error function and functions related to exponential integrals are all evaluated using incomplete gamma functions.
FilledSmallCircle The inverse error functions use binomial search and a high-order generalized Newton's method.
FilledSmallCircle Bessel functions use series and asymptotic expansions. For integer orders, some also use stable forward recursion.
FilledSmallCircle The hypergeometric functions use functional equations, stable recurrence relations, series expansions and asymptotic series. Methods from NSum and NIntegrate are also sometimes used.
FilledSmallCircle ProductLog uses high-order Newton's method starting from rational approximations and asymptotic expansions.
FilledSmallCircle Elliptic integrals are evaluated using the descending Gauss transformation.
FilledSmallCircle Elliptic theta functions use series summation with recursive evaluation of series terms.
FilledSmallCircle Other elliptic functions mostly use arithmetic-geometric mean methods.
FilledSmallCircle Mathieu functions use Fourier series. The Mathieu characteristic functions use generalizations of Blanch's Newton method.

Numerical integration

FilledSmallCircle With Method->Automatic, NIntegrate uses GaussKronrod in one dimension, and MultiDimensional otherwise.
FilledSmallCircle If an explicit setting for MaxPoints is given, NIntegrate by default uses Method->QuasiMonteCarlo.
FilledSmallCircle GaussKronrod: adaptive Gaussian quadrature with error estimation based on evaluation at Kronrod points.
FilledSmallCircle DoubleExponential: non-adaptive double-exponential quadrature.
FilledSmallCircle Trapezoidal: elementary trapezoidal method.
FilledSmallCircle Oscillatory: transformation to handle integrals containing trigonometric and Bessel functions.
FilledSmallCircle MultiDimensional: adaptive Genz-Malik algorithm.
FilledSmallCircle MonteCarlo: non-adaptive Monte Carlo.
FilledSmallCircle QuasiMonteCarlo: non-adaptive Halton-Hammersley-Wozniakowski algorithm.

Numerical sums and products

FilledSmallCircle If the ratio test does not give 1, the Wynn epsilon algorithm is applied to a sequence of partial sums or products.
FilledSmallCircle Otherwise Euler-Maclaurin summation is used with Integrate or NIntegrate.

Numerical differential equations

FilledSmallCircle With Method->Automatic, NDSolve switches between a non-stiff Adams method and a stiff Gear method. Based on LSODE.
FilledSmallCircle Adams: implicit Adams method with order between 1 and 12.
FilledSmallCircle Gear: backward difference formula method with order between 1 and 5.
FilledSmallCircle RungeKutta: Fehlberg order 4-5 Runge-Kutta method for non-stiff equations.
FilledSmallCircle For linear boundary value problems the Gel'fand-Lokutsiyevskii chasing method is used.
FilledSmallCircle For 1+1-dimensional PDEs the method of lines is used.
FilledSmallCircle The code for NDSolve is about 500 pages long.

Approximate equation solving and minimization

FilledSmallCircle Polynomial root finding is done based on the Jenkins-Traub algorithm.
FilledSmallCircle For sparse linear systems, Solve and NSolve use several efficient numerical methods, mostly based on Gauss factoring with Markowitz products (approximately 250 pages of code).
FilledSmallCircle For systems of algebraic equations, NSolve computes a numerical Gröbner basis using an efficient monomial ordering, then uses eigenvalue methods to extract numerical roots.
FilledSmallCircle FindRoot uses a damped Newton's method, the secant method and Brent's method.
FilledSmallCircle With Method->Automatic, FindMinimum uses various methods due to Brent: the conjugate gradient in one dimension, and a modification of Powell's method in several dimensions.
FilledSmallCircle If the function to be minimized is a sum of squares, FindMinimum uses the Levenberg-Marquardt method (Method->LevenbergMarquardt).
FilledSmallCircle With Method->Newton FindMinimum uses Newton's method. With Method->QuasiNewton FindMinimum uses the BFGS version of the quasi-Newton method.
FilledSmallCircle ConstrainedMax and related functions use an enhanced version of the simplex algorithm.

Data manipulation

FilledSmallCircle Fourier uses the FFT algorithm with decomposition of the length into prime factors. When the prime factors are large, fast convolution methods are used to maintain asymptotic complexity.
FilledSmallCircle For real input, Fourier uses a real transform method.
FilledSmallCircle ListConvolve and ListCorrelate use FFT algorithms when possible. For exact integer inputs, enough digits are computed to deduce exact integer results.
FilledSmallCircle InterpolatingFunction uses divided differences to construct Lagrange or Hermite interpolating polynomials.
FilledSmallCircle Fit works by computing the product of the response vector with the pseudoinverse of the design matrix.

Approximate numerical linear algebra

FilledSmallCircle Machine-precision matrices are typically converted to a special internal representation for processing.
FilledSmallCircle Algorithms similar to those of LINPACK, EISPACK and LAPACK are used when appropriate.
FilledSmallCircle LUDecomposition, Inverse, RowReduce and Det use Gaussian elimination with partial pivoting. LinearSolve uses the same methods, together with iterative improvement for high-precision numbers.
FilledSmallCircle SingularValues uses the QR algorithm with Givens rotations. PseudoInverse and NullSpace are based on SingularValues.
FilledSmallCircle QRDecomposition uses Householder transformations.
FilledSmallCircle SchurDecomposition uses QR iteration.
FilledSmallCircle MatrixExp uses Schur decomposition.

Exact numerical linear algebra

FilledSmallCircle Inverse and LinearSolve use efficient row reduction based on numerical approximation.
FilledSmallCircle With Modulus->n, modular Gaussian elimination is used.
FilledSmallCircle Det uses modular methods and row reduction, constructing a result using the Chinese Remainder Theorem.
FilledSmallCircle Eigenvalues works by interpolating the characteristic polynomial.
FilledSmallCircle MatrixExp uses Putzer's method or Jordan decomposition.



Any questions about topics on this page? Click here to get an individual response.Buy NowMore Information
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.