on the computational complexity of mathematical functions
play

On the computational complexity of mathematical functions - PowerPoint PPT Presentation

On the computational complexity of mathematical functions Jean-Pierre Demailly Institut Fourier, Universit e de Grenoble I & Acad emie des Sciences, Paris (France) November 26, 2011 KVPY conference at Vijyoshi Camp Jean-Pierre


  1. On the computational complexity of mathematical functions Jean-Pierre Demailly Institut Fourier, Universit´ e de Grenoble I & Acad´ emie des Sciences, Paris (France) November 26, 2011 KVPY conference at Vijyoshi Camp Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  2. Computing, a very old concern Babylonian mathematical tablet √ allowing the computation of 2 (1800 – 1600 BC) Decimal numeral system invented in India ( ∼ 500BC ?) : Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  3. Madhava’s formula for π Early calculations of π were done by Greek and Indian mathematicians several centuries BC. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  4. Madhava’s formula for π Early calculations of π were done by Greek and Indian mathematicians several centuries BC. These early evaluations used polygon approximations and Pythagoras theorem. In this way, using 96 sides, Archimedes got 3 + 10 71 < π < 3 + 10 70 whose average is 3 . 1418 (c. 230 BC). Chinese mathematicians reached 7 decimal places in 480 AD. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  5. Madhava’s formula for π Early calculations of π were done by Greek and Indian mathematicians several centuries BC. These early evaluations used polygon approximations and Pythagoras theorem. In this way, using 96 sides, Archimedes got 3 + 10 71 < π < 3 + 10 70 whose average is 3 . 1418 (c. 230 BC). Chinese mathematicians reached 7 decimal places in 480 AD. The next progress was the discovery of the first infinite series formula by Madhava (circa 1350 – 1450), a prominent mathematician-astronomer from Kerala (formula rediscovered in the XVIIe century by Leibniz and Gregory) : 11 + · · · + ( − 1) n π 4 = 1 − 1 3 + 1 5 − 1 7 + 1 9 − 1 2 n + 1 + · · · Convergence is unfortunately very slow, but Madhava was able to improve convergence and reached in this way 11 decimal places. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  6. Ramanujan’s formula for π Srinivasa Ramanujan (1887 – 1920), a self-taught mathematical prodigee. His work dealt mainly with arithmetics and function theory √ + ∞ � 1 π = 2 2 (4 n )!(1103 + 26390 n ) (1910) . ( n !) 4 396 4 n 9801 n =0 Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  7. Ramanujan’s formula for π Srinivasa Ramanujan (1887 – 1920), a self-taught mathematical prodigee. His work dealt mainly with arithmetics and function theory √ + ∞ � π = 2 1 2 (4 n )!(1103 + 26390 n ) (1910) . ( n !) 4 396 4 n 9801 n =0 Each term is approximately 10 8 times smaller than the preceding one, so the convergence is very fast. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  8. Computational complexity theory • Complexity theory is a branch of computer science and mathematics that : – tries to classify problems according to their difficulty – focuses on the number of steps (or time) needed to solve them. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  9. Computational complexity theory • Complexity theory is a branch of computer science and mathematics that : – tries to classify problems according to their difficulty – focuses on the number of steps (or time) needed to solve them. • Let N = size of the data (e.g. for a decimal number, the number N of digits.) A problem will be said to have polynomial complexity if it requires less than C N d steps (or units of time) to be solved, where C and d are constants ( d is the degree). Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  10. Computational complexity theory • Complexity theory is a branch of computer science and mathematics that : – tries to classify problems according to their difficulty – focuses on the number of steps (or time) needed to solve them. • Let N = size of the data (e.g. for a decimal number, the number N of digits.) A problem will be said to have polynomial complexity if it requires less than C N d steps (or units of time) to be solved, where C and d are constants ( d is the degree). • Especially, it is said to have – linear complexity when # steps ≤ C N Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  11. Computational complexity theory • Complexity theory is a branch of computer science and mathematics that : – tries to classify problems according to their difficulty – focuses on the number of steps (or time) needed to solve them. • Let N = size of the data (e.g. for a decimal number, the number N of digits.) A problem will be said to have polynomial complexity if it requires less than C N d steps (or units of time) to be solved, where C and d are constants ( d is the degree). • Especially, it is said to have – linear complexity when # steps ≤ C N – quadratic complexity when # steps ≤ C N 2 Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  12. Computational complexity theory • Complexity theory is a branch of computer science and mathematics that : – tries to classify problems according to their difficulty – focuses on the number of steps (or time) needed to solve them. • Let N = size of the data (e.g. for a decimal number, the number N of digits.) A problem will be said to have polynomial complexity if it requires less than C N d steps (or units of time) to be solved, where C and d are constants ( d is the degree). • Especially, it is said to have – linear complexity when # steps ≤ C N – quadratic complexity when # steps ≤ C N 2 – quasi-linear complexity when # steps ≤ C ε N 1+ ε , ∀ ε > 0. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  13. First observations about complexity • Addition has linear complexity: consider decimal numbers of the form 0 . a 1 a 2 a 3 . . . a N , 0 . b 1 b 2 b 3 . . . b N , we have � � � a n 10 − n + b n 10 − n = ( a n + b n )10 − n , 1 ≤ n ≤ N 1 ≤ n ≤ N 1 ≤ n ≤ N taking carries into account, this is done in N steps at most. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  14. First observations about complexity • Addition has linear complexity: consider decimal numbers of the form 0 . a 1 a 2 a 3 . . . a N , 0 . b 1 b 2 b 3 . . . b N , we have � � � a n 10 − n + b n 10 − n = ( a n + b n )10 − n , 1 ≤ n ≤ N 1 ≤ n ≤ N 1 ≤ n ≤ N taking carries into account, this is done in N steps at most. • What about multiplication ? Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  15. First observations about complexity • Addition has linear complexity: consider decimal numbers of the form 0 . a 1 a 2 a 3 . . . a N , 0 . b 1 b 2 b 3 . . . b N , we have � � � a n 10 − n + b n 10 − n = ( a n + b n )10 − n , 1 ≤ n ≤ N 1 ≤ n ≤ N 1 ≤ n ≤ N taking carries into account, this is done in N steps at most. • What about multiplication ? � � � � b ℓ 10 − ℓ = a k 10 − k × c n 10 − n , c n = a k b ℓ . 1 ≤ k ≤ N 1 ≤ ℓ ≤ N 1 ≤ n ≤ N k + ℓ = n Calculation of each c n requires at most N elementary multiplications and N − 1 additions and corresponding carries, thus the algorithm requires less than N × 3 N steps. Thus multiplication has at most quadratic complexity. Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  16. The Karatsuba algorithm Can one do better than quadratic complexity for multiplication? Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

  17. The Karatsuba algorithm Can one do better than quadratic complexity for multiplication? Yes !! It was discovered by Karatsuba around 1960 that multiplication has complexity less than C N log 2 3 ≃ C N 1 . 585 Karatsuba’s idea: for N = 2 q even, split x = 0 . a 1 a 2 . . . a N as x = x ′ + 10 − q x ′′ , x ′ = 0 . a 1 a 2 . . . a q , x ′′ = 0 . a q +1 a q +2 . . . a 2 q and similarly y = 0 . b 1 b 2 . . . b N = y ′ + 10 − q y ′′ . To calculate xy , one would normally need x ′ y ′ , x ′′ y ′′ and x ′ y ′′ + x ′′ y ′ which take 4 multiplications and 1 addition of q -digit numbers. However, one can use only 3 multiplications by calculating x ′ y ′′ + x ′′ y ′ = x ′ y ′ + x ′′ y ′′ − ( x ′ − x ′′ )( y ′ − y ′′ ) x ′ y ′ , x ′′ y ′′ , (at the expense of 4 additions). Jean-Pierre Demailly (Grenoble I), November 26, 2011 On the computational complexity of mathematical functions

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend