Computational complexity of mathematical operations

Computational complexity of mathematical operations

The following tables list the running time of various algorithms for common mathematical operations.

Here, complexity refers to the time complexity of performing computations on a multitape Turing machine.[1] See big O notation for an explanation of the notation used.

Note: Due to the variety of multiplication algorithms, M(n) below stands in for the complexity of the chosen multiplication algorithm.

Contents

Arithmetic functions

Operation Input Output Algorithm Complexity
Addition Two n-digit numbers One n+1-digit number Schoolbook addition with carry Θ(n)
Subtraction Two n-digit numbers One n+1-digit number Schoolbook subtraction with borrow Θ(n)
Multiplication Two n-digit numbers
One 2n-digit number Schoolbook long multiplication O(n2)
Karatsuba algorithm O(n1.585)
3-way Toom–Cook multiplication O(n1.465)
k-way Toom–Cook multiplication O(nlog (2k − 1)/log k)
Mixed-level Toom–Cook (Knuth 4.3.3-T)[2] O(n 2√(2 log n) log n)
Schönhage–Strassen algorithm O(n log n log log n)
Fürer's algorithm[3] O(n log n 2log* n)
Division Two n-digit numbers One n-digit number Schoolbook long division O(n2)
Newton's method M(n)
Square root One n-digit number One n-digit number Newton's method M(n)
Modular exponentiation Two n-digit numbers and a k-bit exponent One n-digit number Repeated multiplication and reduction O(2kM(n))
Exponentiation by squaring O(k M(n))
Exponentiation with Montgomery reduction O(k M(n))

Schnorr and Stumpf[4] conjectured that no fastest algorithm for multiplication exists.

Algebraic functions

Operation Input Output Algorithm Complexity
Polynomial evaluation One polynomial of degree n with fixed-size polynomial coefficients One fixed-size number Direct evaluation Θ(n)
Horner's method Θ(n)
Polynomial gcd (over Z[x] or F[x]) Two polynomials of degree n with fixed-size polynomial coefficients One polynomial of degree at most n Euclidean algorithm O(n2)
Fast Euclidean algorithm [5] O(n (log n)2 log log n)

Special functions

Many of the methods in this section are given in Borwein & Borwein.[6]

Elementary functions

The elementary functions are constructed by composing arithmetic operations, the exponential function (exp), the natural logarithm (log), trigonometric functions (sin, cos), and their inverses. The complexity of an elementary function is equivalent to that of its inverse, since all elementary functions are analytic and hence invertible by means of Newton's method. In particular, if either exp or log can be computed with some complexity, then that complexity is attainable for all other elementary functions.

Below, the size n refers to the number of digits of precision at which the function is to be evaluated.

Algorithm Applicability Complexity
Taylor series; repeated argument reduction (e.g. exp(2x) = [exp(x)]2) and direct summation exp, log, sin, cos O(n1/2 M(n))
Taylor series; FFT-based acceleration exp, log, sin, cos O(n1/3 (log n)2 M(n))
Taylor series; binary splitting + bit burst method[7] exp, log, sin, cos O((log n)2 M(n))
Arithmetic-geometric mean iteration log O(log n M(n))

It is not known whether O(log n M(n)) is the optimal complexity for elementary functions. The best known lower bound is the trivial bound Ω(M(n)).

Non-elementary functions

Function Input Algorithm Complexity
Gamma function n-digit number Series approximation of the incomplete gamma function O(n1/2 (log n)2 M(n))
Fixed rational number Hypergeometric series O((log n)2 M(n))
m/24, m an integer Arithmetic-geometric mean iteration O(log n M(n))
Hypergeometric function pFq n-digit number (As described in Borwein & Borwein) O(n1/2 (log n)2 M(n))
Fixed rational number Hypergeometric series O((log n)2 M(n))

Mathematical constants

This table gives the complexity of computing approximations to the given constants to n correct digits.

Constant Algorithm Complexity
Golden ratio, φ Newton's method O(M(n))
Square root of 2, √2 Newton's method O(M(n))
Euler's number, e Binary splitting of the Taylor series for the exponential function O(log n M(n))
Newton inversion of the natural logarithm O(log n M(n))
Pi, π Binary splitting of the arctan series in Machin's formula O((log n)2 M(n))
Salamin–Brent algorithm O(log n M(n))
Euler's constant, γ Sweeney's method (approximation in terms of the exponential integral) O((log n)2 M(n))

Number theory

Algorithms for number theoretical calculations are studied in computational number theory.

Operation Input Output Algorithm Complexity
Greatest common divisor Two n-digit numbers One number with at most n digits Euclidean algorithm O(n2)
Binary GCD algorithm O(n2)
Left/Right k-ary Binary GCD algorithm[8] O(n2 / log n)
Stehlé-Zimmermann algorithm[9] O(log n M(n))
Schönhage controlled Euclidean descent algorithm[10] O(log n M(n))
Jacobi symbol Two n-digit numbers 0, -1, or 1
Schönhage controlled Euclidean descent algorithm[11] O(log n M(n))
Stehlé-Zimmermann algorithm[12] O(log n M(n))
Factorial A fixed-size number m One O(m log m)-digit number Bottom-up multiplication O(m2 log m)
Binary splitting O(log m M(m log m))
Exponentiation of the prime factors of m O(log log m M(m log m)),[13]
O(M(m log m))[1]

Matrix algebra

The following complexity figures assume that arithmetic with individual elements has complexity O(1), as is the case with fixed-precision floating-point arithmetic.

Operation Input Output Algorithm Complexity
Matrix multiplication Two n×n-matrices One n×n-matrix Schoolbook matrix multiplication O(n3)
Strassen algorithm O(n2.807)
Coppersmith–Winograd algorithm O(n2.376)
Matrix multiplication One n×m-matrix &

One m×p-matrix

One n×p-matrix Schoolbook matrix multiplication O(nmp)
Matrix inversion One n×n-matrix One n×n-matrix Gauss–Jordan elimination O(n3)
Strassen algorithm O(n2.807)
Coppersmith–Winograd algorithm O(n2.376)
Determinant One n×n-matrix One number with at most O(n log n) bits Laplace expansion O(n!)
LU decomposition O(n3)
Bareiss algorithm O(n3)
Fast matrix multiplication O(n2.376)
Back Substitution Triangular matrix n solutions Back substitution O(n2)[14]

In 2005, Henry Cohn, Robert Kleinberg, Balázs Szegedy and Christopher Umans showed that either of two different conjectures would imply that the exponent of matrix multiplication is 2.[15] It has also been conjectured that no fastest algorithm for matrix multiplication exists, in light of the nearly 20 successive improvements leading to the Coppersmith–Winograd algorithm.

References

  1. ^ a b A. Schönhage, A.F.W. Grotefeld, E. Vetter: Fast Algorithms—A Multitape Turing Machine Implementation, BI Wissenschafts-Verlag, Mannheim, 1994
  2. ^ D. Knuth. The Art of Computer Programming, Volume 2. Third Edition, Addison-Wesley 1997.
  3. ^ Martin Fürer. Faster Integer Multiplication. Proceedings of the 39th Annual ACM Symposium on Theory of Computing, San Diego, California, USA, June 11–13, 2007, pp. 55–67.
  4. ^ C. P. Schnorr and G. Stumpf. A characterization of complexity sequences. Zeitschrift fur Mathematische Logik und Grundlagen der Mathematik 21(1):47–56, 1975.
  5. ^ http://planetmath.org/encyclopedia/HalfGCDAlgorithm.html
  6. ^ J. Borwein & P. Borwein. Pi and the AGM: A Study in Analytic Number Theory and Computational Complexity. John Wiley 1987.
  7. ^ David and Gregory Chudnovsky. Approximations and complex multiplication according to Ramanujan. Ramanujan revisited, Academic Press, 1988, pp 375–472.
  8. ^ J. Sorenson. (1994). "Two Fast GCD Algorithms". Journal of Algorithms 16 (1): 110–144. doi:10.1006/jagm.1994.1006. 
  9. ^ R. Crandall & C. Pomerance. Prime Numbers - A Computational Perspective. Second Edition, Springer 2005.
  10. ^ Möller N (2008). "On Schönhage's algorithm and subquadratic integer gcd computation". Mathematics of Computation 77 (261): 589–607. doi:10.1090/S0025-5718-07-02017-0. http://www.lysator.liu.se/~nisse/archive/sgcd.pdf. 
  11. ^ Bernstein D J. "Faster Algorithms to Find Non-squares Modulo Worst-case Integers". http://cr.yp.to/papers/nonsquare.ps. 
  12. ^ Richard P. Brent; Paul Zimmermann (2010). "An O(M(n) log n) algorithm for the Jacobi symbol". arXiv:1004.2091. 
  13. ^ P. Borwein. "On the complexity of calculating factorials". Journal of Algorithms 6, 376-380 (1985)
  14. ^ J. B. Fraleigh and R. A. Beauregard, "Linear Algebra," Addison-Wesley Publishing Company, 1987, p 95.
  15. ^ Henry Cohn, Robert Kleinberg, Balazs Szegedy, and Chris Umans. Group-theoretic Algorithms for Matrix Multiplication. arXiv:math.GR/0511460. Proceedings of the 46th Annual Symposium on Foundations of Computer Science, 23–25 October 2005, Pittsburgh, PA, IEEE Computer Society, pp. 379–388.

Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Computational complexity theory — is a branch of the theory of computation in theoretical computer science and mathematics that focuses on classifying computational problems according to their inherent difficulty, and relating those classes to each other. In this context, a… …   Wikipedia

  • Computational — may refer to: Computer Computational algebra Computational Aeroacoustics Computational and Information Systems Laboratory Computational and Systems Neuroscience Computational archaeology Computational auditory scene analysis Computational biology …   Wikipedia

  • Complexity (disambiguation) — In general usage, complexity tends to be used to characterize something with many parts in intricate arrangement. Complexity may also refer to: Complex systems Complexity theory (disambiguation) Kolmogorov complexity Los Angeles Complexity, a… …   Wikipedia

  • Computational number theory — In mathematics, computational number theory, also known as algorithmic number theory, is the study of algorithms for performing number theoretic computations. The best known problem in the field is integer factorization. See also Computational… …   Wikipedia

  • Mathematical logic — (also known as symbolic logic) is a subfield of mathematics with close connections to foundations of mathematics, theoretical computer science and philosophical logic.[1] The field includes both the mathematical study of logic and the… …   Wikipedia

  • Mathematical optimization — For other uses, see Optimization (disambiguation). The maximum of a paraboloid (red dot) In mathematics, computational science, or management science, mathematical optimization (alternatively, optimization or mathematical programming) refers to… …   Wikipedia

  • Complexity class — In computational complexity theory, a complexity class is a set of problems of related resource based complexity. A typical complexity class has a definition of the form: the set of problems that can be solved by an abstract machine M using… …   Wikipedia

  • Computational Sustainability — is an interdisciplinary field [1] [2] that aims to apply techniques from computer science, information science, operations research, applied mathematics, and statistics for balancing environmental, economic, and societal needs for sustainable… …   Wikipedia

  • Computational sociology — Sociology …   Wikipedia

  • Mathematical model — Not to be confused with the same term that is used in model theory, a branch of mathematical logic. An artifact that is used to illustrate a mathematical idea may also be called a mathematical model, the usage of which is the reverse of the sense …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”