In
mathematics
Mathematics is a field of study that discovers and organizes methods, Mathematical theory, theories and theorems that are developed and Mathematical proof, proved for the needs of empirical sciences and mathematics itself. There are many ar ...
, 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
composite number
A composite number is a positive integer that can be formed by multiplying two smaller positive integers. Accordingly it is a positive integer that has at least one divisor other than 1 and itself. Every positive integer is composite, prime numb ...
, or it is not, in which case it is 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 ...
. For example, is a composite number because , but is a prime number because it cannot be decomposed in this way. If one of the factors is composite, it can in turn be written as a product of smaller factors, for example . Continuing this process until every factor is prime is called prime factorization; the result is always unique up to the order of the factors by the
prime factorization theorem.
To factorize a small integer using mental or pen-and-paper arithmetic, the simplest method is
trial division: checking if the number is divisible by prime numbers , , , and so on, up to the
square root of . For larger numbers, especially when using a computer, various more sophisticated factorization algorithms are more efficient. A prime factorization algorithm typically involves
testing whether each factor is prime each time a factor is found.
When the numbers are sufficiently large, no efficient non-
quantum integer factorization
algorithm
In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
is known. However, it has not been proven that such an algorithm does not exist. The presumed
difficulty of this problem is important for the algorithms used in
cryptography
Cryptography, or cryptology (from "hidden, secret"; and ''graphein'', "to write", or ''-logy, -logia'', "study", respectively), is the practice and study of techniques for secure communication in the presence of Adversary (cryptography), ...
such as
RSA public-key encryption and the
RSA digital signature. Many areas of
mathematics
Mathematics is a field of study that discovers and organizes methods, Mathematical theory, theories and theorems that are developed and Mathematical proof, proved for the needs of empirical sciences and mathematics itself. There are many ar ...
and
computer science
Computer science is the study of computation, information, and automation. Computer science spans Theoretical computer science, theoretical disciplines (such as algorithms, theory of computation, and information theory) to Applied science, ...
have been brought to bear on this problem, including
elliptic curves,
algebraic number theory
Algebraic number theory is a branch of number theory that uses the techniques of abstract algebra to study the integers, rational numbers, and their generalizations. Number-theoretic questions are expressed in terms of properties of algebraic ob ...
, and quantum computing.
Not all numbers of a given length are equally hard to factor. The hardest instances of these problems (for currently known techniques) are
semiprimes, the product of two prime numbers. When they are both large, for instance more than two thousand
bits long, randomly chosen, and about the same size (but not too close, for example, to avoid efficient factorization by
Fermat's factorization method), even the fastest prime factorization algorithms on the fastest classical computers can take enough time to make the search impractical; that is, as the number of digits of the integer being factored increases, the number of operations required to perform the factorization on any classical computer increases drastically.
Many cryptographic protocols are based on the presumed difficulty of factoring large composite integers or a related problem for example, the
RSA problem. An algorithm that efficiently factors an arbitrary integer would render
RSA-based
public-key cryptography insecure.
Prime decomposition
By the
fundamental theorem of arithmetic, every positive integer has a unique
prime factorization. (By convention, 1 is the
empty product
In mathematics, an empty product, or nullary product or vacuous product, is the result of multiplication, multiplying no factors. It is by convention equal to the multiplicative identity (assuming there is an identity for the multiplication operat ...
.)
Testing whether the integer is prime can be done in
polynomial time, for example, by the
AKS primality test. If composite, however, the polynomial time tests give no insight into how to obtain the factors.
Given a general algorithm for integer factorization, any integer can be factored into its constituent
prime factors by repeated application of this algorithm. The situation is more complicated with special-purpose factorization algorithms, whose benefits may not be realized as well or even at all with the factors produced during decomposition. For example, if where are very large primes,
trial division will quickly produce the factors 3 and 19 but will take divisions to find the next factor. As a contrasting example, if is the product of the primes , , and , where , Fermat's factorization method will begin with which immediately yields and hence the factors and . While these are easily recognized as composite and prime respectively, Fermat's method will take much longer to factor the composite number because the starting value of for is a factor of 10 from .
Current state of the art
Among the -bit numbers, the most difficult to factor in practice using existing algorithms are those
semiprimes whose factors are of similar size. For this reason, these are the integers used in cryptographic applications.
In 2019, a 240-digit (795-bit) number (
RSA-240) was factored by a team of researchers including
Paul Zimmermann, utilizing approximately 900 core-years of computing power. These researchers estimated that a 1024-bit RSA modulus would take about 500 times as long.
The largest such semiprime yet factored was
RSA-250, an 829-bit number with 250 decimal digits, in February 2020. The total computation time was roughly 2700 core-years of computing using Intel
Xeon Gold 6130 at 2.1 GHz. Like all recent factorization records, this factorization was completed with a highly optimized implementation of the
general number field sieve run on hundreds of machines.
Time complexity
No
algorithm
In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
has been published that can factor all integers in
polynomial time, that is, that can factor a -bit number in time for some constant . Neither the existence nor non-existence of such algorithms has been proved, but it is generally suspected that they do not exist.
There are published algorithms that are faster than for all positive , that is,
sub-exponential. , the algorithm with best theoretical asymptotic running time is the
general number field sieve (GNFS), first published in 1993, running on a -bit number in time:
:
For current computers, GNFS is the best published algorithm for large (more than about 400 bits). For a
quantum computer, however,
Peter Shor discovered an algorithm in 1994 that solves it in polynomial time.
Shor's algorithm takes only time and space on -bit number inputs. In 2001, Shor's algorithm was implemented for the first time, by using
NMR techniques on molecules that provide seven qubits.
In order to talk about
complexity classes such as P, NP, and co-NP, the problem has to be stated as a
decision problem
In computability theory and computational complexity theory, a decision problem is a computational problem that can be posed as a yes–no question on a set of input values. An example of a decision problem is deciding whether a given natura ...
.
It is known to be in both
NP and
co-NP, meaning that both "yes" and "no" answers can be verified in polynomial time. An answer of "yes" can be certified by exhibiting a factorization with . An answer of "no" can be certified by exhibiting the factorization of into distinct primes, all larger than ; one can verify their primality using the
AKS primality test, and then multiply them to obtain . The
fundamental theorem of arithmetic guarantees that there is only one possible string of increasing primes that will be accepted, which shows that the problem is in both
UP and co-UP. It is known to be in
BQP because of Shor's algorithm.
The problem is suspected to be outside all three of the complexity classes P, NP-complete,
[. See in particula]
p. 583
and
co-NP-complete.
It is therefore a candidate for the
NP-intermediate complexity class.
In contrast, the decision problem "Is a composite number?" (or equivalently: "Is a prime number?") appears to be much easier than the problem of specifying factors of . The composite/prime problem can be solved in polynomial time (in the number of digits of ) with the
AKS primality test. In addition, there are several
probabilistic algorithms that can test primality very quickly in practice if one is willing to accept a vanishingly small possibility of error. The ease of
primality testing is a crucial part of the
RSA algorithm, as it is necessary to find large prime numbers to start with.
Factoring algorithms
Special-purpose
A special-purpose factoring algorithm's running time depends on the properties of the number to be factored or on one of its unknown factors: size, special form, etc. The parameters which determine the running time vary among algorithms.
An important subclass of special-purpose factoring algorithms is the ''Category 1'' or ''First Category'' algorithms, whose running time depends on the size of smallest prime factor. Given an integer of unknown form, these methods are usually applied before general-purpose methods to remove small factors.
[
] For example, naive
trial division is a Category 1 algorithm.
*
Trial division
*
Wheel factorization
*
Pollard's rho algorithm, which has two common flavors to
identify group cycles: one by Floyd and one by Brent.
*
Algebraic-group factorization algorithms, among which are
Pollard's algorithm,
Williams' algorithm, and
Lenstra elliptic curve factorization
*
Fermat's factorization method
*
Euler's factorization method
*
Special number field sieve
*
Difference of two squares
General-purpose
A general-purpose factoring algorithm, also known as a ''Category 2'', ''Second Category'', or
''Kraitchik'' ''family'' algorithm,
has a running time which depends solely on the size of the integer to be factored. This is the type of algorithm used to factor
RSA numbers. Most general-purpose factoring algorithms are based on the
congruence of squares method.
*
Dixon's factorization method
*
Continued fraction factorization (CFRAC)
*
Quadratic sieve
*
Rational sieve
*
General number field sieve
*
Shanks's square forms factorization (SQUFOF)
Other notable algorithms
*
Shor's algorithm, for quantum computers
Heuristic running time
In number theory, there are many integer factoring algorithms that heuristically have expected
running time
:
in
little-o and
L-notation.
Some examples of those algorithms are the
elliptic curve method and the
quadratic sieve.
Another such algorithm is the class group relations method proposed by Schnorr,
Seysen,
and Lenstra,
which they proved only assuming the unproved
generalized Riemann hypothesis.
Rigorous running time
The Schnorr–Seysen–Lenstra probabilistic algorithm has been rigorously proven by Lenstra and Pomerance
[ to have expected running time by replacing the GRH assumption with the use of multipliers.
The algorithm uses the class group of positive binary ]quadratic form
In mathematics, a quadratic form is a polynomial with terms all of degree two (" form" is another name for a homogeneous polynomial). For example,
4x^2 + 2xy - 3y^2
is a quadratic form in the variables and . The coefficients usually belong t ...
s of discriminant denoted by .
is the set of triples of integers in which those integers are relative prime.
Schnorr–Seysen–Lenstra algorithm
Given an integer that will be factored, where is an odd positive integer greater than a certain constant. In this factoring algorithm the discriminant is chosen as a multiple of , , where is some positive multiplier. The algorithm expects that for one there exist enough smooth forms in . Lenstra and Pomerance show that the choice of can be restricted to a small set to guarantee the smoothness result.
Denote by the set of all primes with Kronecker symbol . By constructing a set of generators of and prime forms of with in a sequence of relations between the set of generators and are produced.
The size of can be bounded by for some constant .
The relation that will be used is a relation between the product of powers that is equal to the neutral element of . These relations will be used to construct a so-called ambiguous form of , which is an element of of order dividing 2. By calculating the corresponding factorization of and by taking a gcd, this ambiguous form provides the complete prime factorization of . This algorithm has these main steps:
Let be the number to be factored.
To obtain an algorithm for factoring any positive integer, it is necessary to add a few steps to this algorithm such as trial division, and the Jacobi sum test.
Expected running time
The algorithm as stated is a probabilistic algorithm as it makes random choices. Its expected running time is at most .
See also
* Aurifeuillean factorization
* Bach's algorithm for generating random numbers with their factorizations
* Canonical representation of a positive integer
* Factorization
* Multiplicative partition In number theory, a multiplicative partition or unordered factorization of an integer n is a way of writing n as a product of integers greater than 1, treating two products as equivalent if they differ only in the ordering of the factors. The number ...
* -adic valuation
* Integer partition – a way of writing a number as a sum of positive integers.
Notes
References
* Chapter 5: Exponential Factoring Algorithms, pp. 191–226. Chapter 6: Subexponential Factoring Algorithms, pp. 227–284. Section 7.4: Elliptic curve method, pp. 301–313.
* Donald Knuth. '' The Art of Computer Programming'', Volume 2: ''Seminumerical Algorithms'', Third Edition. Addison-Wesley, 1997. . Section 4.5.4: Factoring into Primes, pp. 379–417.
* .
*
External links
msieve
– SIQS and NFS – has helped complete some of the largest public factorizations known
* Richard P. Brent, "Recent Progress and Prospects for Integer Factorisation Algorithms", ''Computing and Combinatorics"'', 2000, pp. 3–22
* Manindra Agrawal, Neeraj Kayal, Nitin Saxena, "PRIMES is in P." Annals of Mathematics 160(2): 781–793 (2004)
August 2005 version PDF
* Eric W. Weisstein
“RSA-640 Factored” ''MathWorld Headline News'', November 8, 2005
Dario Alpern's Integer factorization calculator
– A web app for factoring large integers
{{Authority control
Computational hardness assumptions
Unsolved problems in computer science
Factorization