cs 473 algorithms
play

CS 473: Algorithms Chandra Chekuri Ruta Mehta University of - PowerPoint PPT Presentation

CS 473: Algorithms Chandra Chekuri Ruta Mehta University of Illinois, Urbana-Champaign Fall 2016 Chandra & Ruta (UIUC) CS473 1 Fall 2016 1 / 52 CS 473: Algorithms, Fall 2016 Polynomials, Convolutions and FFT Lecture 2 August 24/26,


  1. CS 473: Algorithms Chandra Chekuri Ruta Mehta University of Illinois, Urbana-Champaign Fall 2016 Chandra & Ruta (UIUC) CS473 1 Fall 2016 1 / 52

  2. CS 473: Algorithms, Fall 2016 Polynomials, Convolutions and FFT Lecture 2 August 24/26, 2016 Chandra & Ruta (UIUC) CS473 2 Fall 2016 2 / 52

  3. Outline Discrete Fourier Transfor (DFT) and Fast Fourier Transform (FFT) have many applications and are connected to important mathematics. “One of top 10 Algorithms of 20th Century” according to IEEE. Gilbert Strang: “The most important numerical algorithm of our lifetime”. Our goal: Multiplication of two degree n polynomials in O ( n log n ) time. Surprising and non-obvious. Algorithmic ideas change in representation mathematical properties of polynomials divide and conquer Chandra & Ruta (UIUC) CS473 3 Fall 2016 3 / 52

  4. Part I Polynomials, Convolutions and FFT Chandra & Ruta (UIUC) CS473 4 Fall 2016 4 / 52

  5. Polynomials Definition A polynomial is a function of one variable built from additions, subtractions and multiplications (but no divisions). n − 1 � a j x j p ( x ) = j =0 The numbers a 0 , a 1 , . . . , a n are the coefficients of the polynomial. The degree is the highest power of x with a non-zero coefficient. Example p ( x ) = 3 − 4 x + 5 x 3 a 0 = 3 , a 1 = − 4 , a 2 = 0 , a 3 = 5 and deg ( p ) = 3 Chandra & Ruta (UIUC) CS473 5 Fall 2016 5 / 52

  6. Polynomials Definition A polynomial is a function of one variable built from additions, subtractions and multiplications (but no divisions). n − 1 � a j x j p ( x ) = j =0 The numbers a 0 , a 1 , . . . , a n are the coefficients of the polynomial. The degree is the highest power of x with a non-zero coefficient. Coefficient Representation Polynomials represented by vector a = ( a 0 , a 1 , . . . a n − 1 ) of coefficients. Chandra & Ruta (UIUC) CS473 5 Fall 2016 5 / 52

  7. Operations on Polynomials Evaluate Given a polynomial p and a value α , compute p ( α ) Add Given (representations of) polynomials p , q , compute (reprsentation of) polynomial p + q Multiply Given (representation of) polynomials p , q , compute (representation of) polynomial p · q . Roots Given p find all roots of p . Chandra & Ruta (UIUC) CS473 6 Fall 2016 6 / 52

  8. Evaluation Compute value of polynomial a = ( a 0 , a 1 , . . . a n − 1 ) at α power = 1 value = 0 for j = 0 to n − 1 power = α j // invariant: value = value + a j · power power = power · α end for return value Uses 2 n multiplication and n additions Chandra & Ruta (UIUC) CS473 7 Fall 2016 7 / 52

  9. Evaluation Compute value of polynomial a = ( a 0 , a 1 , . . . a n − 1 ) at α power = 1 value = 0 for j = 0 to n − 1 power = α j // invariant: value = value + a j · power power = power · α end for return value Uses 2 n multiplication and n additions Horner’s rule can be used to cut the multiplications in half a ( x ) = a 0 + x ( a 1 + x ( a 2 + · · · + xa n − 1 )) Chandra & Ruta (UIUC) CS473 7 Fall 2016 7 / 52

  10. Evaluation: Numerical Issues Question How long does evaluation really take? O ( n ) time? Bits to represent α n is n log α while bits to represent α is only log α . Thus, need to pay attention to size of numbers and multiplication complexity. Ignore this issue for now. Can get around it for applications of interest where one typically wants to compute p ( α ) mod m for some number m . Chandra & Ruta (UIUC) CS473 8 Fall 2016 8 / 52

  11. Addition Compute the sum of polynomials a = ( a 0 , a 1 , . . . a n − 1 ) and b = ( b 0 , b 1 , . . . b n − 1 ) Chandra & Ruta (UIUC) CS473 9 Fall 2016 9 / 52

  12. Addition Compute the sum of polynomials a = ( a 0 , a 1 , . . . a n − 1 ) and b = ( b 0 , b 1 , . . . b n − 1 ) a + b = ( a 0 + b 0 , a 1 + b 1 , . . . a n − 1 + b n − 1 ) . Takes O ( n ) time. Chandra & Ruta (UIUC) CS473 9 Fall 2016 9 / 52

  13. Multiplication Compute the product of polynomials a = ( a 0 , a 1 , . . . a n ) and b = ( b 0 , b 1 , . . . b m ) Recall a · b = ( c 0 , c 1 , . . . c n + m ) where � c k = a i · b j i , j : i + j = k Takes Θ( nm ) time; Θ( n 2 ) when n = m . Chandra & Ruta (UIUC) CS473 10 Fall 2016 10 / 52

  14. Multiplication Compute the product of polynomials a = ( a 0 , a 1 , . . . a n ) and b = ( b 0 , b 1 , . . . b m ) Recall a · b = ( c 0 , c 1 , . . . c n + m ) where � c k = a i · b j i , j : i + j = k Takes Θ( nm ) time; Θ( n 2 ) when n = m . We will give a better algorithm! Chandra & Ruta (UIUC) CS473 10 Fall 2016 10 / 52

  15. Convolutions Definition The convolution of vectors a = ( a 0 , a 1 , . . . a n ) and b = ( b 0 , b 1 , . . . b m ) is the vector c = ( c 0 , c 1 , . . . c n + m ) where � c k = a i · b j i , j : i + j = k Convolution of vectors a and b is denoted by a ∗ b . In other words, the convolution is the coefficients of the product of the two polynomials. Chandra & Ruta (UIUC) CS473 11 Fall 2016 11 / 52

  16. Revisiting Polynomial Representations Representation Polynomials represented by vector a = ( a 0 , a 1 , . . . a n − 1 ) of coefficients. Chandra & Ruta (UIUC) CS473 12 Fall 2016 12 / 52

  17. Revisiting Polynomial Representations Representation Polynomials represented by vector a = ( a 0 , a 1 , . . . a n − 1 ) of coefficients. Question Are there other useful ways to represent polynomials? Chandra & Ruta (UIUC) CS473 12 Fall 2016 12 / 52

  18. Representing Polynomials by Roots Root of a polynomial p ( x ) : r such that p ( r ) = 0 . If r 1 , r 2 , . . . , r n − 1 are roots then p ( x ) = a n − 1 ( x − r 1 )( x − r 2 ) . . . ( x − r n − 1 ) . Valid representation because of: Theorem (Fundamental Theorem of Algebra) Every polynomial p ( x ) of degree d has exactly d roots r 1 , r 2 , . . . , r d where the roots can be complex numbers and can be repeated. Chandra & Ruta (UIUC) CS473 13 Fall 2016 13 / 52

  19. Representing Polynomials by Roots Representation Polynomials represented by vector scale factor a n − 1 and roots r 1 , r 2 , . . . , r n − 1 . Chandra & Ruta (UIUC) CS473 14 Fall 2016 14 / 52

  20. Representing Polynomials by Roots Representation Polynomials represented by vector scale factor a n − 1 and roots r 1 , r 2 , . . . , r n − 1 . Evaluating p at a given x is easy. Why? Multiplication: given p , q with roots r 1 , . . . , r n − 1 and s 1 , . . . , s m − 1 the product p · q has roots r 1 , . . . , r n − 1 , s 1 , . . . , s m − 1 . Easy! O ( n + m ) time. Addition: requires Ω( nm ) time? Given coefficient representation, how do we go to root representation? No finite algorithm because of potential for irrational roots. Chandra & Ruta (UIUC) CS473 14 Fall 2016 14 / 52

  21. Representing Polynomials by Samples Let p be a polynomial of degree n − 1 . Pick n distinct samples x 0 , x 1 , x 2 , . . . , x n − 1 Let y 0 = p ( x 0 ) , y 1 = p ( x 1 ) , . . . , y n − 1 = p ( x n − 1 ) . Representation Polynomials represented by ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . , ( x n − 1 , y n − 1 ) . Chandra & Ruta (UIUC) CS473 15 Fall 2016 15 / 52

  22. Representing Polynomials by Samples Let p be a polynomial of degree n − 1 . Pick n distinct samples x 0 , x 1 , x 2 , . . . , x n − 1 Let y 0 = p ( x 0 ) , y 1 = p ( x 1 ) , . . . , y n − 1 = p ( x n − 1 ) . Representation Polynomials represented by ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . , ( x n − 1 , y n − 1 ) . Is the above a valid representation? Chandra & Ruta (UIUC) CS473 15 Fall 2016 15 / 52

  23. Representing Polynomials by Samples Let p be a polynomial of degree n − 1 . Pick n distinct samples x 0 , x 1 , x 2 , . . . , x n − 1 Let y 0 = p ( x 0 ) , y 1 = p ( x 1 ) , . . . , y n − 1 = p ( x n − 1 ) . Representation Polynomials represented by ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . , ( x n − 1 , y n − 1 ) . Is the above a valid representation? Why do we use 2 n numbers instead of n numbers for coefficient and root representation? Chandra & Ruta (UIUC) CS473 15 Fall 2016 15 / 52

  24. Sample Representation Theorem Given a list { ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . ( x n − 1 , y n − 1 ) } there is exactly one polynomial p of degree n − 1 such that p ( x j ) = y j for j = 0 , 1 , . . . , n − 1 . Chandra & Ruta (UIUC) CS473 16 Fall 2016 16 / 52

  25. Sample Representation Theorem Given a list { ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . ( x n − 1 , y n − 1 ) } there is exactly one polynomial p of degree n − 1 such that p ( x j ) = y j for j = 0 , 1 , . . . , n − 1 . So representation is valid. Chandra & Ruta (UIUC) CS473 16 Fall 2016 16 / 52

  26. Sample Representation Theorem Given a list { ( x 0 , y 0 ) , ( x 1 , y 1 ) , . . . ( x n − 1 , y n − 1 ) } there is exactly one polynomial p of degree n − 1 such that p ( x j ) = y j for j = 0 , 1 , . . . , n − 1 . So representation is valid. Can use same x 0 , x 1 , . . . , x n − 1 for all polynomials of degree n − 1 . No need to store them explicitly and hence need only n numbers y 0 , y 1 , . . . , y n − 1 . Chandra & Ruta (UIUC) CS473 16 Fall 2016 16 / 52

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