robust hgcd with no backup steps
play

Robust HGCD with No Backup Steps Niels M oller Lysator academic - PowerPoint PPT Presentation

Robust HGCD with No Backup Steps Niels M oller Lysator academic computer society and KTH, Sweden International Congress on Mathematical Software 2006 Comparison of gcd algorithms Algorithm Time (ms) # lines 1440 304 gmp -4.1.4 (Weber)


  1. Robust HGCD with No Backup Steps Niels M¨ oller Lysator academic computer society and KTH, Sweden International Congress on Mathematical Software 2006

  2. Comparison of gcd algorithms Algorithm Time (ms) # lines 1440 304 gmp -4.1.4 (Weber) mpn gcd 87 1967 “Classical” Sch¨ onhage gcd mpn rgcd 93 1348 Rec. bin. (Stehl´ e/Zimmermann) mpn bgcd 100 760 1987 alg. (Sch¨ onhage/Weilert) mpn sgcd 85 733 New algorithm for gmp -5 mpn ngcd

  3. Questions Q Where does the complexity come from? A Accurate computation of the quotient sequence. Q How to avoid that? A Stop bothering about quotients.

  4. Outline Background Algorithm comparison The half-gcd (HGCD) operation Subquadratic hgcd Quotient based HGCD Jebelean’s criterion A robustness condition Simple subquadratic hgcd Strong robustness Conclusions

  5. What is hgcd ? Definition (Reduction) � a � � α � = M β b ◮ Positive integers a , b , α , and β ◮ Matrix M , non-negative integer elements ◮ det M = 1

  6. What is hgcd ? Definition (Reduction) � a � � α � = M β b ◮ Positive integers a , b , α , and β ◮ Matrix M , non-negative integer elements ◮ det M = 1 Definition ( hgcd , “half gcd”) Input: a , b , of size n Output: M , size of α , β and M elements ≈ n / 2

  7. What is hgcd ? Definition (Reduction) � a � � α � = M β b ◮ Positive integers a , b , α , and β ◮ Matrix M , non-negative integer elements ◮ det M = 1 Definition ( hgcd , “half gcd”) Input: a , b , of size n Output: M , size of α , β and M elements ≈ n / 2 Fact For any reduction, gcd( a , b ) = gcd( α, β )

  8. Main idea of subquadratic hgcd n p 1 . . . A . . . B � �� � M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) � A � � A � ← M − 1 1 B B ≈ 3 n / 4 p 2 . . . A . . . B � �� � M 2 ← hgcd ( ⌊ 2 − p 2 A ⌋ , ⌊ 2 − p 2 B ⌋ ) M ← M 1 · M 2

  9. hgcd algorithm hgcd ( A , B ) 1 n ← #( A , B ) 2 Select p 1 ≈ n / 2 M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 3 ( A ; B ) ← M − 1 4 1 ( A ; B ) 5 Perform a small number of divisions or backup steps. ✄ A , B are now of size ≈ 3 n / 4 6 Select p 2 ≈ n / 4 M 2 ← hgcd ( ⌊ 2 − p 2 A ⌋ , ⌊ 2 − p 2 B ⌋ ) 7 ( A ; B ) ← M − 1 8 2 ( A ; B ) 9 Perform a small number of divisions or backup steps. ✄ A , B are now of size ≈ n / 2 10 Return M 1 · M 2

  10. hgcd algorithm hgcd ( A , B ) 1 n ← #( A , B ) 2 Select p 1 ≈ n / 2 M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 3 ( A ; B ) ← M − 1 4 1 ( A ; B ) 5 Perform a small number of divisions or backup steps. ✄ A , B are now of size ≈ 3 n / 4 6 Select p 2 ≈ n / 4 M 2 ← hgcd ( ⌊ 2 − p 2 A ⌋ , ⌊ 2 − p 2 B ⌋ ) 7 ( A ; B ) ← M − 1 8 2 ( A ; B ) 9 Perform a small number of divisions or backup steps. ✄ A , B are now of size ≈ n / 2 10 Return M 1 · M 2 1. Simplify Steps 5 and 9. 2. Eliminate multiplication in Step 8.

  11. Definition (Quotient sequence) For any positive integers a , b , quotient sequence q j and remainder sequence r j are defined by r 0 = a r 1 = b q j = ⌊ r j − 1 / r j ⌋ r j +1 = r j − 1 − q j r j

  12. Definition (Quotient sequence) For any positive integers a , b , quotient sequence q j and remainder sequence r j are defined by r 0 = a r 1 = b q j = ⌊ r j − 1 / r j ⌋ r j +1 = r j − 1 − q j r j Fact � a � � r j � = M b r j +1 with � q 1 � � q 2 � � q j � 1 1 1 M = · · · 1 0 1 0 1 0

  13. Theorem (Jebelean’s criterion) Let a > b > 0 , with remainders r j and r j +1 , � a � � u � � r j � u ′ = v ′ b v r j +1 � �� � = M Let p > 0 be arbitrary, 0 ≤ A ′ , B ′ < 2 p , and define � A � � a � � A ′ � = 2 p + B ′ B b � R j � � A � � r j � � A ′ � = M − 1 = 2 p + M − 1 B ′ R j +1 B r j +1 For even j, the following two statements are equivalent: (i) r j +1 ≥ v and r j − r j +1 ≥ u + u ′ (ii) For any p and any A ′ , B ′ , the jth remainders of A and B are R j and R j +1 .

  14. Quotient based hgcd A generalization of Lehmer’s algorithm Define hgcd ( a , b ) to return an M satisfying Jebelean’s criterion. Example (Recursive computation) ( a ; b ) = (858 824; 528 747) M 1 = (13 , 8; 8 , 5) No difficulties ( c ; d ) = M − 1 1 ( a ; b ) = 16 (4009; 194) + (0; 15) M 2 = hgcd (4009 , 194) = (21 , 20; 1 , 1) M − 1 2 (4009; 194) = (129; 65) Satisfies Jebelean M = M 1 · M 2 = (281 , 268; 173 , 165) M − 1 ( a ; b ) = (1764; 1355) Violates Jebelean

  15. Backup step Example (Fixing M ) ( a ; b ) = (858 824; 528 747) M = M 1 · M 2 = (281 , 268; 173 , 165) M − 1 ( a ; b ) = (1764; 1355) Violates Jebelean M corresponds to quotients 1 , 1 , 1 , 1 , 1 , 1 , 1 , 20 , 1. E.g., ( A ; B ) = 8 ( a ; b ) + (1; 7) has quotient sequence starting with 1 , 1 , 1 , 1 , 1 , 1 , 1 , 20 , 2.

  16. Backup step Example (Fixing M ) ( a ; b ) = (858 824; 528 747) M = M 1 · M 2 = (281 , 268; 173 , 165) M − 1 ( a ; b ) = (1764; 1355) Violates Jebelean M corresponds to quotients 1 , 1 , 1 , 1 , 1 , 1 , 1 , 20 , 1. E.g., ( A ; B ) = 8 ( a ; b ) + (1; 7) has quotient sequence starting with 1 , 1 , 1 , 1 , 1 , 1 , 1 , 20 , 2. Conclusion ◮ The quotients are correct for ( a ; b ), but not robust enough. ◮ Must drop final quotient before returning hgcd ( A , B ).

  17. A robustness condition Definition (Robust reduction) A reduction M of ( a ; b ) is robust iff �� a � � x �� M − 1 + > 0 b y for all “small” ( x ; y ). More precisely, for all ( x ; y ) ∈ S , where S = { ( x ; y ) ∈ R 2 , | x | < 2 , | y | < 2 , | x − y | < 2 }

  18. A robustness condition Definition (Robust reduction) A reduction M of ( a ; b ) is robust iff �� a � � x �� M − 1 + > 0 b y for all “small” ( x ; y ). More precisely, for all ( x ; y ) ∈ S , where S = { ( x ; y ) ∈ R 2 , | x | < 2 , | y | < 2 , | x − y | < 2 } Theorem The reduction � a � � u � � α � u ′ = v ′ β b v � �� � = M is robust iff α ≥ 2 max( u ′ , v ′ ) and β ≥ 2 max( u , v )

  19. hgcd based on robustness hgcd ( A , B ) 1 n ← #( A , B ) 2 p 1 ← ⌊ n / 2 ⌋ M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 3 ( C ; D ) ← M − 1 4 1 ( A ; B ) ✄ # | C − D | ≈ 3 n / 4 5 One subtraction and one division step on ( C ; D ). Update M 1 . 6 p 2 ← # M 1 + 2 M 2 ← hgcd ( ⌊ 2 − p 2 C ⌋ , ⌊ 2 − p 2 D ⌋ ) 7 8 return M 1 · M 2

  20. hgcd based on robustness hgcd ( A , B ) 1 n ← #( A , B ) 2 p 1 ← ⌊ n / 2 ⌋ M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 3 ( C ; D ) ← M − 1 4 1 ( A ; B ) ✄ # | C − D | ≈ 3 n / 4 5 One subtraction and one division step on ( C ; D ). Update M 1 . 6 p 2 ← # M 1 + 2 M 2 ← hgcd ( ⌊ 2 − p 2 C ⌋ , ⌊ 2 − p 2 D ⌋ ) 7 8 return M 1 · M 2 c = ⌊ 2 − p 2 C ⌋ c = 2 − p 2 C − c � �� A � � x �� � � c � �� � � x � � c M − 1 = 2 p 2 M − 1 + 2 − p 2 M − 1 + + � 2 1 B y d d y � �� � disturbance ∈ S

  21. Strong robustness Lemma (Strong robustess) Let n = #( a , b ) denote the bitsize of the larger of a and b. If # min( α, β ) > ⌊ n / 2 ⌋ + 1 , then M is robust.

  22. Strong robustness Lemma (Strong robustess) Let n = #( a , b ) denote the bitsize of the larger of a and b. If # min( α, β ) > ⌊ n / 2 ⌋ + 1 , then M is robust. Theorem (Sch¨ onhage/Weilert reduction) For arbitrary a , b > 0 , let n = #( a , b ) and s = ⌊ n / 2 ⌋ + 1 . There exists a unique strongly robust M such that # min( α, β ) > s and # | α − β | ≤ s.

  23. hgcd with strong robustness hgcd ( A , B ) 1 n ← #( A , B ) 2 s ← ⌊ n / 2 ⌋ + 1 3 p 1 ← ⌊ n / 2 ⌋ M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 4 ( C ; D ) ← M − 1 5 1 ( A ; B ) ✄ # | C − D | ≈ 3 n / 4 6 One subtraction and one division step on ( C ; D ). Update M 1 . 7 p 2 ← 2 s − #( C , D ) + 1 M 2 ← hgcd ( ⌊ 2 − p 2 C ⌋ , ⌊ 2 − p 2 D ⌋ ) 8 9 return M 1 · M 2

  24. hgcd with strong robustness hgcd ( A , B ) 1 n ← #( A , B ) 2 s ← ⌊ n / 2 ⌋ + 1 3 p 1 ← ⌊ n / 2 ⌋ M 1 ← hgcd ( ⌊ 2 − p 1 A ⌋ , ⌊ 2 − p 1 B ⌋ ) 4 ( C ; D ) ← M − 1 5 1 ( A ; B ) ✄ # | C − D | ≈ 3 n / 4 6 One subtraction and one division step on ( C ; D ). Update M 1 . 7 p 2 ← 2 s − #( C , D ) + 1 M 2 ← hgcd ( ⌊ 2 − p 2 C ⌋ , ⌊ 2 − p 2 D ⌋ ) 8 9 return M 1 · M 2 ◮ Uses strong robustness ◮ Returns with # | α − β | ≤ s + 2 k , where k is the recursion depth. ◮ To compute Sch¨ onhage/Weilert reduction, need at most four additional division steps before returning.

  25. Conclusions Conclusions ◮ hgcd in terms of correct quotients = ⇒ complexity. ◮ Reduction matrices are important, quotients are not. ◮ “Robust reduction” is a powerful notion in gcd algorithms analysis and design. ◮ Can use either plain robustness, or Sch¨ onhage/Weilert’s stronger condition on bitsizes.

Recommend


More recommend