Shanks's square forms factorization

{{more footnotes|date=March 2015}}

Shanks' square forms factorization is a method for integer factorization devised by Daniel Shanks 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{N}. 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 divisors of N are distributed between these two factors, so that calculation of the greatest common divisor 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{N} 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, 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^{17} - 1)/9 = 11111111111111111 = 2071723 \cdot 5363222357.{{cite journal |last1=Lemmermeyer |first1=F. |title=Václav Šimerka: quadratic forms and factorization |journal=LMS Journal of Computation and Mathematics |date=2013 |volume=16 |pages=118–129 |doi=10.1112/S1461157013000065 |doi-access=free}}

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 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{kN}\rfloor,Q_{-1}=1,Q_0=kN-P_0^2.

Repeat

i=i+1,b_i=\left\lfloor\frac{P_0+P_{i-1}}{Q_{i-1}}\right\rfloor,P_i=b_iQ_{i-1}-P_{i-1},Q_i=Q_{i-2}+b_i(P_{i-1}-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{P_0-P_i}{\sqrt{Q_i}}\right\rfloor, Q_{-1}=\sqrt{Q_i}, and P_0=b_0\sqrt{Q_i}+P_i, where P_0, P_i, and Q_{i} 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{kN-P_0^2}{Q_{-1}}, where P_0 is the recently calculated value of P_0.

Repeat

i=i+1,b_i=\left\lfloor\frac{P_0+P_{i-1}}{Q_{i-1}}\right\rfloor,P_i=b_iQ_{i-1}-P_{i-1},Q_i=Q_{i-2}+b_i(P_{i-1}-P_i)

until P_i=P_{i-1}.{{cn|date=October 2023}}

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.{{cn|date=October 2023}}

Shanks' method has time complexity O(\sqrt[4]{N}).{{Harvcol|Riesel|1994|p=189}}

Stephen S. McMath wrote

a more detailed discussion of the mathematics of Shanks' method,

together with a proof of its correctness.{{Cite CiteSeerX|title=Daniel Shanks' Square Forms Factorization| year=2004 |citeseerx = 10.1.1.107.9984}}

Example

Let N = 11111

Q_{-1}=1

border="1" class="wikitable" style="text-align:center; "

!colspan="4" | Cycle forward

i

!b_{i}

!P_{i}

!Q_{i}

0

|

|105

|86

1

|2

|67

|77

2

|2

|87

|46

3

|4

|97

|37

4

|5

|88

|91

5

|2

|94

|25

Here Q_{5} = 25 is a perfect square, so the first phase ends.

For the second phase, set Q_{-1} = \sqrt{25} = 5. Then:

border="1" class="wikitable" style="text-align:center;"

!colspan="4" | Reverse cycle

i

!b_{i}

!P_{i}

!Q_{i}

0

|2

|104

|59

1

|3

|73

|98

2

|1

|25

|107

3

|1

|82

|41

4

|4

|82

|

Here P_{3} = P_{4} = 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. {{citation needed|date=May 2017}}

  1. include
  2. define nelems(x) (sizeof(x) / sizeof((x)[0]))

const int multiplier[] = {1, 3, 5, 7, 11, 3*5, 3*7, 3*11, 5*7, 5*11, 7*11, 3*5*7, 3*5*11, 3*7*11, 5*7*11, 3*5*7*11};

uint64_t SQUFOF( uint64_t N )

{

uint64_t D, Po, P, Pprev, Q, Qprev, q, b, r, s;

uint32_t L, B, i;

s = (uint64_t)(sqrtl(N)+0.5);

if (s*s == N) return s;

for (int k = 0; k < nelems(multiplier) && N <= UINT64_MAX/multiplier[k]; k++) {

D = multiplier[k]*N;

Po = Pprev = P = sqrtl(D);

Qprev = 1;

Q = D - Po*Po;

L = 2 * sqrtl( 2*s );

B = 3 * L;

for (i = 2 ; i < B ; i++) {

b = (uint64_t)((Po + P)/Q);

P = b*Q - P;

q = Q;

Q = Qprev + b*(Pprev - P);

r = (uint64_t)(sqrtl(Q)+0.5);

if (!(i & 1) && r*r == Q) break;

Qprev = q;

Pprev = P;

};

if (i >= B) continue;

b = (uint64_t)((Po - P)/r);

Pprev = P = b*r + P;

Qprev = r;

Q = (D - Pprev*Pprev)/Qprev;

i = 0;

do {

b = (uint64_t)((Po + P)/Q);

Pprev = P;

P = b*Q - P;

q = Q;

Q = Qprev + b*(Pprev - P);

Qprev = q;

i++;

} while (P != Pprev);

r = gcd(N, Qprev);

if (r != 1 && r != N) return r;

}

return 0;

}

References

{{Reflist}}

  • {{cite book

| author = D. A. Buell

| title = Binary Quadratic Forms

| url = https://archive.org/details/binaryquadraticf0000buel

| url-access = registration

| publisher = Springer-Verlag

| year = 1989

| isbn=0-387-97037-1 }}

  • {{cite book

| author = D. M. Bressoud

| authorlink = David Bressoud

| title = Factorisation and Primality Testing

| publisher = Springer-Verlag

| year = 1989

| isbn = 0-387-97040-1

| url-access = registration

| url = https://archive.org/details/factorizationpri0000bres

}}

  • {{cite book

| last=Riesel | first=Hans | authorlink=Hans Riesel

| title=Prime Numbers and Computer Methods for Factorization

| publisher=Birkhauser

|edition = 2nd

| year=1994

| isbn=0-8176-3743-5 }}

  • {{cite book | author =Samuel S. Wagstaff, Jr. | title=The Joy of Factoring | publisher=American Mathematical Society | location=Providence, RI | year=2013 | isbn=978-1-4704-1048-3 |url=http://www.ams.org/bookpages/stml-68 |author-link=Samuel S. Wagstaff, Jr. |pages=163–168 }}