Fermat's factorization method

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 89.251.107.25 (talk) at 10:07, 21 February 2009 (→‎Fermat's and trial division). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Fermat's factorization method is based on the representation of an odd integer as the difference of two squares:

That difference is algebraically factorable as ; if neither factor equals one, it is a proper factorization of N.

Each odd number has such a representation. Indeed, if is a factorization of N, then

Since N is odd, then c and d are also odd, so those halves are integers. (A multiple of four is also a difference of squares: let c and d be even.)

In its simplest form, Fermat's method might be even slower than trial division (worst case). Nonetheless, the combination of trial division and Fermat's is more effective than either.

The basic method

One tries various values of a, hoping that is a square.

FermatFactor(N): // N should be odd
A ← ceil(sqrt(N))
Bsq ← A*A - N
while Bsq isn't a square:
A ← A + 1
Bsq ← A*A - N // equivalently: Bsq ← Bsq + 2*A + 1
endwhile
return A - sqrt(Bsq) // or A + sqrt(Bsq)

For example, to factor , one computes

A:787980
Bsq:125282441

The third try produces a square. , , and the factors are , and .

Suppose N has more than two prime factors. That procedure first finds the factorization with the least values of a and b. That is, is the smallest factor ≥ the square-root of N. And so is the largest factor ≤ root-N. If the procedure finds , that shows that N is prime.

For , let c be the largest subroot factor. , so the number of steps is approximately .

If N is prime (so that ), one needs steps! This is a bad way to prove primality. But if N has a factor close to its square-root, the method works quickly. More precisely, if c differs less than from the method requires only one step. Note, that this is independent of the size of N.

Fermat's and trial division

Let's try to factor the prime number N=2345678917, but also compute B and A-B throughout. Going up from , we can tabulate:

A: 48433 48434 48435 48436
Bsq: 76572 173439 270308 367179
B: 276.7 416.5 519.9 605.9
A-B: 48156.348017.547915.147830.1

In practice, one wouldn't bother with that last row, until B is an integer. But observe that if N had a subroot factor above , Fermat's method would have found it already.

Trial division would normally try up to 48432; but after only four Fermat steps, we need only divide up to 47830, to find a factor or prove primality.

This all suggests a combined factoring method. Choose some bound ; use Fermat for factors between and . This gives a bound for trial division which is . In the above example, with the bound for trial division is 47830. A reasonable choice could be giving a bound of 28937.

In this regard, Fermat's method gives diminishing returns. One would surely stop before this point:

A: 60001 60002
Bsq: 12544410841254561087
B: 35418.1 35419.8
A-B: 24582.9 24582.2

Sieve improvement

One needn't compute all the square-roots of , nor even examine all the values for . Examine the tableau for :

A: 4843348434 48435 48436
Bsq:76572173439270308367179
B: 276.7416.5 519.9 605.9

One can quickly tell that none of these values of Bsq are squares. Squares end with 0, 1, 4, 5, 9, or 16 modulo 20. The values repeat with each increase of by 10. For this example produces 3, 4, 7, 8, 12, and 19 modulo 20 for these values. It is apparent that only the 4 from this list can be a square. Thus, must be 1 mod 20, which means that is 1 or 9 mod 10; it will produce a Bsq which ends in 4 mod 20, and if Bsq is a square, will end in 2 or 8 mod 10.

This can be performed with any modulus. Using the same ,

modulo 16:Squares are 0, 1, 4, or 9
N mod 16 is5
so can only be9
and must be3 or 5 modulo 16
modulo 9: Squares are 0, 1, 4, or 7
N mod 9 is7
so can only be7
and must be4 or 5 modulo 9

One generally chooses a power of a different prime for each modulus.

Given a sequence of a-values (start, end, and step) and a modulus, one can proceed thus:

FermatSieve(N, Astart, Aend, Astep, Modulus)
A ← Astart
do Modulus times:
Bsq ← A*A - N
if Bsq is a square, modulo Modulus:
FermatSieve(N, A, Aend, Astep * Modulus, NextModulus)
endif
A ← A + Astep
enddo

But one stops the recursion, when few a-values remain; that is, when (Aend-Astart)/Astep is small. Also, because a's step-size is constant, one can compute successive Bsq's with additions.

Multiplier improvement

Fermat's method works best when there is a factor near the square-root of N. Perhaps one can arrange for that to happen.

If one knows the approximate ratio of two factors (), then one can pick a rational number near that value. , and the factors are roughly equal: Fermat's, applied to Nuv, will find them quickly. Then and . (Unless c divides u or d divides v.)

Generally, one does not know the ratio, but one can try various values, and try to factor each resulting Nuv. R. Lehman devised a systematic way to do this, so that Fermat's plus trial-division can factor N in time. See R. Lehman, "Factoring Large Integers", Mathematics of Computation, 28:637-646, 1974.

Other improvements

The fundamental ideas of Fermat's factorization method are the basis of the quadratic sieve and general number field sieve, the best-known algorithms for factoring "worst-case" large semiprimes. The primary improvement that quadratic sieve makes over Fermat's factorization method is that instead of simply finding a square in the sequence of a2n, it finds a subset of elements of this sequence whose product is a square, and it does this in a highly efficient manner. The end result is the same: a difference of square mod n that, if nontrivial, can be used to factor n.

See also J. McKee, "Speeding Fermat's factoring method", Mathematics of Computation, 68:1729-1737 (1999).

External links