Shanks's square forms factorization
   HOME

TheInfoList



OR:

Shanks' square forms factorization is a method for
integer factorization In mathematics, integer factorization is the decomposition of a positive integer into a product of integers. Every positive integer greater than 1 is either the product of two or more integer factors greater than 1, in which case it is a comp ...
devised by
Daniel Shanks Daniel Charles Shanks (January 17, 1917 – September 6, 1996) was an American mathematician who worked primarily in numerical analysis and number theory. He was the first person to compute π to 100,000 decimal places. Life and education Shan ...
as an improvement on Fermat's factorization method. The success of Fermat's method depends on finding integers x and y such that x^2-y^2=N, where N is the integer to be factored. An improvement (noticed by Kraitchik) is to look for integers x and y such that x^2\equiv y^2\pmod. Finding a suitable pair (x, y) does not guarantee a factorization of N, but it implies that N is a factor of x^2-y^2=(x-y)(x+y), and there is a good chance that the
prime divisor A prime number (or a prime) is a natural number greater than 1 that is not a product of two smaller natural numbers. A natural number greater than 1 that is not prime is called a composite number. For example, 5 is prime because the only ways ...
s of N are distributed between these two factors, so that calculation of the
greatest common divisor In mathematics, the greatest common divisor (GCD), also known as greatest common factor (GCF), of two or more integers, which are not all zero, is the largest positive integer that divides each of the integers. For two integers , , the greatest co ...
of N and x-y will give a non-trivial factor of N. A practical algorithm for finding pairs (x,y) which satisfy x^2\equiv y^2\pmod was developed by Shanks, who named it Square Forms Factorization or SQUFOF. The algorithm can be expressed in terms of continued fractions or in terms of quadratic forms. Although there are now much more efficient factorization methods available, SQUFOF has the advantage that it is small enough to be implemented on a programmable calculator. Shanks programmed it on an
HP-65 The HP-65 is the first magnetic card-programmable handheld calculator. Introduced by Hewlett-Packard in 1974 at an MSRP of $795 (), it featured nine storage registers and room for 100 keystroke instructions. It also included a magnetic card ...
, made in 1974, which has storage for only nine digit numbers and allows only 100 steps/keystrokes of programming. There are versions of the algorithm that use little memory and versions that store a list of values that run more quickly. In 1858, the Czech mathematician Václav Šimerka used a method similar to SQUFOF to factor (10^ - 1)/9 = 11111111111111111 = 2071723 \cdot 5363222357.


Algorithm

Note This version of the algorithm works on some examples but often gets stuck in a loop. This version does not use a list. Input: N, the integer to be factored, which must be neither a
prime number A prime number (or a prime) is a natural number greater than 1 that is not a Product (mathematics), product of two smaller natural numbers. A natural number greater than 1 that is not prime is called a composite number. For example, 5 is prime ...
nor a perfect square, and a small positive integer, k. Output: a non-trivial factor of N. The algorithm: Initialize i=0,P_0=\lfloor\sqrt\rfloor,Q_=1,Q_0=kN-P_0^2. Repeat i=i+1,b_i=\left\lfloor\frac\right\rfloor,P_i=b_iQ_-P_,Q_i=Q_+b_i(P_-P_i) until Q_i is a perfect square at some odd value of i. Start the second phase (reverse cycle). Initialize b_0=\left\lfloor\frac\right\rfloor, Q_=\sqrt, and P_0=b_0\sqrt+P_i, where P_0, P_i, and Q_ are from the previous phase. The b_0 used in the calculation of P_0 is the recently calculated value of b_0. Set i=0 and Q_0=\frac, where P_0 is the recently calculated value of P_0. Repeat i=i+1,b_i=\left\lfloor\frac\right\rfloor,P_i=b_iQ_-P_,Q_i=Q_+b_i(P_-P_i) until P_i=P_. Then if f=\gcd(N,P_i) is not equal to 1 and not equal to N, then f is a non-trivial factor of N. Otherwise try another value of k. Shanks' method has time complexity O(\sqrt . Stephen S. McMath wrote a more detailed discussion of the mathematics of Shanks' method, together with a proof of its correctness.


Example

Let N = 11111 Q_=1 Here Q_ = 25 is a perfect square, so the first phase ends. For the second phase, set Q_ = \sqrt = 5. Then: Here P_ = P_ = 82, so the second phase ends. Now calculate gcd(11111, 82) = 41, which is a factor of 11111. Thus, N = 11111 = 41 \cdot 271.


Example implementation

Below is an example of C function for performing SQUFOF factorization on unsigned integer not larger than 64 bits, without overflow of the transient operations. #include #define nelems(x) (sizeof(x) / sizeof((x) ) const int multiplier[] = ; uint64_t SQUFOF( uint64_t N )


References

* * * *


External links

* Daniel Shanks
''Analysis and Improvement of the Continued Fraction Method of Factorization''
(transcribed by S. McMath 2004) * Daniel Shanks
''SQUFOF Notes''
(transcribed by S. McMath 2004) * Stephen S. McMath
''Parallel integer factorization using quadratic forms''
2005 * S. McMath, F. Crabbe, D. Joyner
''Continued fractions and parallel SQUFOF''
2005 * Jason Gower, Samuel Wagstaff
''Square Form Factorisation''(Published)

java-math-library
{{number theoretic algorithms Integer factorization algorithms