![Integer factorization](https://www.english.nina.az/wikipedia/image/aHR0cHM6Ly91cGxvYWQud2lraW1lZGlhLm9yZy93aWtpcGVkaWEvY29tbW9ucy90aHVtYi9iL2JmL1ByaW1lRGVjb21wb3NpdGlvbkV4YW1wbGUuc3ZnLzE2MDBweC1QcmltZURlY29tcG9zaXRpb25FeGFtcGxlLnN2Zy5wbmc=.png )
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 composite number, or it is not, in which case it is a prime number. For example, 15 is a composite number because 15 = 3 · 5, but 7 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 60 = 3 · 20 = 3 · (5 · 4). 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 n using mental or pen-and-paper arithmetic, the simplest method is trial division: checking if the number is divisible by prime numbers 2, 3, 5, and so on, up to the square root of n. 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 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 such as RSA public-key encryption and the RSA digital signature. Many areas of mathematics and computer science have been brought to bear on this problem, including elliptic curves, algebraic number theory, 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
![image](https://www.english.nina.az/wikipedia/image/aHR0cHM6Ly93d3cuZW5nbGlzaC5uaW5hLmF6L3dpa2lwZWRpYS9pbWFnZS9hSFIwY0hNNkx5OTFjR3h2WVdRdWQybHJhVzFsWkdsaExtOXlaeTkzYVd0cGNHVmthV0V2WTI5dGJXOXVjeTkwYUhWdFlpOWlMMkptTDFCeWFXMWxSR1ZqYjIxd2IzTnBkR2x2YmtWNFlXMXdiR1V1YzNabkx6SXlNSEI0TFZCeWFXMWxSR1ZqYjIxd2IzTnBkR2x2YmtWNFlXMXdiR1V1YzNabkxuQnVadz09LnBuZw==.png)
By the fundamental theorem of arithmetic, every positive integer has a unique prime factorization. (By convention, 1 is the empty product.) 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 n = 171 × p × q where p < q are very large primes, trial division will quickly produce the factors 3 and 19 but will take p divisions to find the next factor. As a contrasting example, if n is the product of the primes 13729, 1372933, and 18848997161, where 13729 × 1372933 = 18848997157, Fermat's factorization method will begin with ⌈√n⌉ = 18848997159 which immediately yields b = √a2 − n = √4 = 2 and hence the factors a − b = 18848997157 and a + b = 18848997161. 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 ⌈√18848997157⌉ = 137292 for a is a factor of 10 from 1372933.
Current state of the art
Among the b-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 has been published that can factor all integers in polynomial time, that is, that can factor a b-bit number n in time O(bk) for some constant k. 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 O((1 + ε)b) for all positive ε, that is, sub-exponential. As of 2022[update], the algorithm with best theoretical asymptotic running time is the general number field sieve (GNFS), first published in 1993, running on a b-bit number n in time:
For current computers, GNFS is the best published algorithm for large n (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 O(b3) time and O(b) space on b-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.
Decision problem (Integer factorization) — For every natural numbers and
, does n have a factor smaller than k besides 1?
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 n = d(n/d) with d ≤ k. An answer of "no" can be certified by exhibiting the factorization of n into distinct primes, all larger than k; one can verify their primality using the AKS primality test, and then multiply them to obtain n. 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, and co-NP-complete. It is therefore a candidate for the NP-intermediate complexity class.
In contrast, the decision problem "Is n a composite number?" (or equivalently: "Is n a prime number?") appears to be much easier than the problem of specifying factors of n. The composite/prime problem can be solved in polynomial time (in the number b of digits of n) 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 p − 1 algorithm, Williams' p + 1 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 Ln[1/2, 1+o(1)] by replacing the GRH assumption with the use of multipliers. The algorithm uses the class group of positive binary quadratic forms of discriminant Δ denoted by GΔ. GΔ is the set of triples of integers (a, b, c) in which those integers are relative prime.
Schnorr–Seysen–Lenstra algorithm
Given an integer n that will be factored, where n is an odd positive integer greater than a certain constant. In this factoring algorithm the discriminant Δ is chosen as a multiple of n, Δ = −dn, where d is some positive multiplier. The algorithm expects that for one d there exist enough smooth forms in GΔ. Lenstra and Pomerance show that the choice of d can be restricted to a small set to guarantee the smoothness result.
Denote by PΔ the set of all primes q with Kronecker symbol (Δ/q) = 1. By constructing a set of generators of GΔ and prime forms fq of GΔ with q in PΔ a sequence of relations between the set of generators and fq are produced. The size of q can be bounded by c0(log|Δ|)2 for some constant c0.
The relation that will be used is a relation between the product of powers that is equal to the neutral element of GΔ. These relations will be used to construct a so-called ambiguous form of GΔ, which is an element of GΔ of order dividing 2. By calculating the corresponding factorization of Δ and by taking a gcd, this ambiguous form provides the complete prime factorization of n. This algorithm has these main steps:
Let n be the number to be factored.
- Let Δ be a negative integer with Δ = −dn, where d is a multiplier and Δ is the negative discriminant of some quadratic form.
- Take the t first primes p1 = 2, p2 = 3, p3 = 5, ..., pt, for some t ∈ N.
- Let fq be a random prime form of GΔ with (Δ/q) = 1.
- Find a generating set X of GΔ.
- Collect a sequence of relations between set X and {fq : q ∈ PΔ} satisfying:
- Construct an ambiguous form (a, b, c) that is an element f ∈ GΔ of order dividing 2 to obtain a coprime factorization of the largest odd divisor of Δ in which Δ = −4ac or Δ = a(a − 4c) or Δ = (b − 2a)(b + 2a).
- If the ambiguous form provides a factorization of n then stop, otherwise find another ambiguous form until the factorization of n is found. In order to prevent useless ambiguous forms from generating, build up the 2-Sylow group Sll2(Δ) of G(Δ).
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 Ln[1/2, 1+o(1)].
See also
- Aurifeuillean factorization
- Bach's algorithm for generating random numbers with their factorizations
- Canonical representation of a positive integer
- Factorization
- Multiplicative partition
- p-adic valuation
- Integer partition – a way of writing a number as a sum of positive integers.
Notes
- Lenstra, Arjen K. (2011), "Integer Factoring", in van Tilborg, Henk C. A.; Jajodia, Sushil (eds.), Encyclopedia of Cryptography and Security, Boston, MA: Springer US, pp. 611–618, doi:10.1007/978-1-4419-5906-5_455, ISBN 978-1-4419-5905-8, retrieved 2022-06-22
- "[Cado-nfs-discuss] 795-bit factoring and discrete logarithms". Archived from the original on 2019-12-02.
- Kleinjung, Thorsten; Aoki, Kazumaro; Franke, Jens; Lenstra, Arjen K.; Thomé, Emmanuel; Bos, Joppe W.; Gaudry, Pierrick; Kruppa, Alexander; Montgomery, Peter L.; Osvik, Dag Arne; te Riele, Herman J. J.; Timofeev, Andrey; Zimmermann, Paul (2010). "Factorization of a 768-Bit RSA Modulus" (PDF). In Rabin, Tal (ed.). Advances in Cryptology - CRYPTO 2010, 30th Annual Cryptology Conference, Santa Barbara, CA, USA, August 15-19, 2010. Proceedings. Lecture Notes in Computer Science. Vol. 6223. Springer. pp. 333–350. doi:10.1007/978-3-642-14623-7_18. ISBN 978-3-642-14622-0.
- Krantz, Steven G. (2011), The Proof is in the Pudding: The Changing Nature of Mathematical Proof, New York: Springer, p. 203, doi:10.1007/978-0-387-48744-1, ISBN 978-0-387-48908-7, MR 2789493
- Arora, Sanjeev; Barak, Boaz (2009), Computational complexity, Cambridge: Cambridge University Press, p. 230, doi:10.1017/CBO9780511804090, ISBN 978-0-521-42426-4, MR 2500087, S2CID 215746906
- Buhler, J. P.; Lenstra, H. W. Jr.; Pomerance, Carl (1993). "Factoring integers with the number field sieve". The development of the number field sieve. Lecture Notes in Mathematics. Vol. 1554. Springer. pp. 50–94. doi:10.1007/BFb0091539. hdl:1887/2149. ISBN 978-3-540-57013-4. Retrieved 12 March 2021.
- Vandersypen, Lieven M. K.; et al. (2001). "Experimental realization of Shor's quantum factoring algorithm using nuclear magnetic resonance". Nature. 414 (6866): 883–887. arXiv:quant-ph/0112176. Bibcode:2001Natur.414..883V. doi:10.1038/414883a. PMID 11780055. S2CID 4400832.
- Lance Fortnow (2002-09-13). "Computational Complexity Blog: Complexity Class of the Week: Factoring".
- Goldreich, Oded; Wigderson, Avi (2008), "IV.20 Computational Complexity", in Gowers, Timothy; Barrow-Green, June; Leader, Imre (eds.), The Princeton Companion to Mathematics, Princeton, New Jersey: Princeton University Press, pp. 575–604, ISBN 978-0-691-11880-2, MR 2467561. See in particular p. 583.
- David Bressoud and Stan Wagon (2000). A Course in Computational Number Theory. Key College Publishing/Springer. pp. 168–69. ISBN 978-1-930190-10-8.
- Schnorr, Claus P. (1982). "Refined analysis and improvements on some factoring algorithms". Journal of Algorithms. 3 (2): 101–127. doi:10.1016/0196-6774(82)90012-8. MR 0657269. Archived from the original on September 24, 2017.
- Seysen, Martin (1987). "A probabilistic factorization algorithm with quadratic forms of negative discriminant". Mathematics of Computation. 48 (178): 757–780. doi:10.1090/S0025-5718-1987-0878705-X. MR 0878705.
- Lenstra, Arjen K (1988). "Fast and rigorous factorization under the generalized Riemann hypothesis" (PDF). Indagationes Mathematicae. 50 (4): 443–454. doi:10.1016/S1385-7258(88)80022-2.
- Lenstra, H. W.; Pomerance, Carl (July 1992). "A Rigorous Time Bound for Factoring Integers" (PDF). Journal of the American Mathematical Society. 5 (3): 483–516. doi:10.1090/S0894-0347-1992-1137100-0. MR 1137100.
References
- Richard Crandall and Carl Pomerance (2001). Prime Numbers: A Computational Perspective. Springer. ISBN 0-387-94777-9. 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. ISBN 0-201-89684-2. Section 4.5.4: Factoring into Primes, pp. 379–417.
- Samuel S. Wagstaff Jr. (2013). The Joy of Factoring. Providence, RI: American Mathematical Society. ISBN 978-1-4704-1048-3..
- Warren, Henry S. Jr. (2013). Hacker's Delight (2 ed.). Addison Wesley - Pearson Education, Inc. ISBN 978-0-321-84268-8.
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. download
- 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
Unsolved problem in computer science Can integer factorization be solved in polynomial time on a classical computer more unsolved problems in computer science 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 composite number or it is not in which case it is a prime number For example 15 is a composite number because 15 3 5 but 7 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 60 3 20 3 5 4 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 n using mental or pen and paper arithmetic the simplest method is trial division checking if the number is divisible by prime numbers 2 3 5 and so on up to the square root of n 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 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 such as RSA public key encryption and the RSA digital signature Many areas of mathematics and computer science have been brought to bear on this problem including elliptic curves algebraic number theory 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 decompositionPrime decomposition of n 864 as 25 33 By the fundamental theorem of arithmetic every positive integer has a unique prime factorization By convention 1 is the empty product 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 n 171 p q where p lt q are very large primes trial division will quickly produce the factors 3 and 19 but will take p divisions to find the next factor As a contrasting example if n is the product of the primes 13729 1372933 and 18848997161 where 13729 1372933 18848997157 Fermat s factorization method will begin with n 18848997159 which immediately yields b a2 n 4 2 and hence the factors a b 18848997157 and a b 18848997161 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 18848997157 137292 for a is a factor of 10 from 1372933 Current state of the artAmong the b 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 has been published that can factor all integers in polynomial time that is that can factor a b bit number n in time O bk for some constant k 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 O 1 e b for all positive e that is sub exponential As of 2022 update the algorithm with best theoretical asymptotic running time is the general number field sieve GNFS first published in 1993 running on a b bit number n in time exp 83 23 o 1 log n 13 log log n 23 displaystyle exp left left left tfrac 8 3 right frac 2 3 o 1 right left log n right frac 1 3 left log log n right frac 2 3 right For current computers GNFS is the best published algorithm for large n 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 O b3 time and O b space on b 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 Decision problem Integer factorization For every natural numbers n displaystyle n and k displaystyle k does n have a factor smaller than k besides 1 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 n d n d with d k An answer of no can be certified by exhibiting the factorization of n into distinct primes all larger than k one can verify their primality using the AKS primality test and then multiply them to obtain n 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 and co NP complete It is therefore a candidate for the NP intermediate complexity class In contrast the decision problem Is n a composite number or equivalently Is n a prime number appears to be much easier than the problem of specifying factors of n The composite prime problem can be solved in polynomial time in the number b of digits of n 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 algorithmsSpecial 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 p 1 algorithm Williams p 1 algorithm and Lenstra elliptic curve factorization Fermat s factorization method Euler s factorization method Special number field sieve Difference of two squaresGeneral 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 computersHeuristic running timeIn number theory there are many integer factoring algorithms that heuristically have expected running time Ln 12 1 o 1 e 1 o 1 log n log log n displaystyle L n left tfrac 1 2 1 o 1 right e 1 o 1 sqrt log n log log n 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 timeThe Schnorr Seysen Lenstra probabilistic algorithm has been rigorously proven by Lenstra and Pomerance to have expected running time Ln 1 2 1 o 1 by replacing the GRH assumption with the use of multipliers The algorithm uses the class group of positive binary quadratic forms of discriminant D denoted by GD GD is the set of triples of integers a b c in which those integers are relative prime Schnorr Seysen Lenstra algorithm Given an integer n that will be factored where n is an odd positive integer greater than a certain constant In this factoring algorithm the discriminant D is chosen as a multiple of n D dn where d is some positive multiplier The algorithm expects that for one d there exist enough smooth forms in GD Lenstra and Pomerance show that the choice of d can be restricted to a small set to guarantee the smoothness result Denote by PD the set of all primes q with Kronecker symbol D q 1 By constructing a set of generators of GD and prime forms fq of GD with q in PD a sequence of relations between the set of generators and fq are produced The size of q can be bounded by c0 log D 2 for some constant c0 The relation that will be used is a relation between the product of powers that is equal to the neutral element of GD These relations will be used to construct a so called ambiguous form of GD which is an element of GD of order dividing 2 By calculating the corresponding factorization of D and by taking a gcd this ambiguous form provides the complete prime factorization of n This algorithm has these main steps Let n be the number to be factored Let D be a negative integer with D dn where d is a multiplier and D is the negative discriminant of some quadratic form Take the t first primes p1 2 p2 3 p3 5 pt for some t N Let fq be a random prime form of GD with D q 1 Find a generating set X of GD Collect a sequence of relations between set X and fq q PD satisfying x Xxr x q PDfqt q 1 displaystyle left prod x in X x r x right left prod q in P Delta f q t q right 1 Construct an ambiguous form a b c that is an element f GD of order dividing 2 to obtain a coprime factorization of the largest odd divisor of D in which D 4ac or D a a 4c or D b 2a b 2a If the ambiguous form provides a factorization of n then stop otherwise find another ambiguous form until the factorization of n is found In order to prevent useless ambiguous forms from generating build up the 2 Sylow group Sll2 D of G D 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 Ln 1 2 1 o 1 See alsoAurifeuillean factorization Bach s algorithm for generating random numbers with their factorizations Canonical representation of a positive integer Factorization Multiplicative partition p adic valuation Integer partition a way of writing a number as a sum of positive integers NotesLenstra Arjen K 2011 Integer Factoring in van Tilborg Henk C A Jajodia Sushil eds Encyclopedia of Cryptography and Security Boston MA Springer US pp 611 618 doi 10 1007 978 1 4419 5906 5 455 ISBN 978 1 4419 5905 8 retrieved 2022 06 22 Cado nfs discuss 795 bit factoring and discrete logarithms Archived from the original on 2019 12 02 Kleinjung Thorsten Aoki Kazumaro Franke Jens Lenstra Arjen K Thome Emmanuel Bos Joppe W Gaudry Pierrick Kruppa Alexander Montgomery Peter L Osvik Dag Arne te Riele Herman J J Timofeev Andrey Zimmermann Paul 2010 Factorization of a 768 Bit RSA Modulus PDF In Rabin Tal ed Advances in Cryptology CRYPTO 2010 30th Annual Cryptology Conference Santa Barbara CA USA August 15 19 2010 Proceedings Lecture Notes in Computer Science Vol 6223 Springer pp 333 350 doi 10 1007 978 3 642 14623 7 18 ISBN 978 3 642 14622 0 Krantz Steven G 2011 The Proof is in the Pudding The Changing Nature of Mathematical Proof New York Springer p 203 doi 10 1007 978 0 387 48744 1 ISBN 978 0 387 48908 7 MR 2789493 Arora Sanjeev Barak Boaz 2009 Computational complexity Cambridge Cambridge University Press p 230 doi 10 1017 CBO9780511804090 ISBN 978 0 521 42426 4 MR 2500087 S2CID 215746906 Buhler J P Lenstra H W Jr Pomerance Carl 1993 Factoring integers with the number field sieve The development of the number field sieve Lecture Notes in Mathematics Vol 1554 Springer pp 50 94 doi 10 1007 BFb0091539 hdl 1887 2149 ISBN 978 3 540 57013 4 Retrieved 12 March 2021 Vandersypen Lieven M K et al 2001 Experimental realization of Shor s quantum factoring algorithm using nuclear magnetic resonance Nature 414 6866 883 887 arXiv quant ph 0112176 Bibcode 2001Natur 414 883V doi 10 1038 414883a PMID 11780055 S2CID 4400832 Lance Fortnow 2002 09 13 Computational Complexity Blog Complexity Class of the Week Factoring Goldreich Oded Wigderson Avi 2008 IV 20 Computational Complexity in Gowers Timothy Barrow Green June Leader Imre eds The Princeton Companion to Mathematics Princeton New Jersey Princeton University Press pp 575 604 ISBN 978 0 691 11880 2 MR 2467561 See in particular p 583 David Bressoud and Stan Wagon 2000 A Course in Computational Number Theory Key College Publishing Springer pp 168 69 ISBN 978 1 930190 10 8 Schnorr Claus P 1982 Refined analysis and improvements on some factoring algorithms Journal of Algorithms 3 2 101 127 doi 10 1016 0196 6774 82 90012 8 MR 0657269 Archived from the original on September 24 2017 Seysen Martin 1987 A probabilistic factorization algorithm with quadratic forms of negative discriminant Mathematics of Computation 48 178 757 780 doi 10 1090 S0025 5718 1987 0878705 X MR 0878705 Lenstra Arjen K 1988 Fast and rigorous factorization under the generalized Riemann hypothesis PDF Indagationes Mathematicae 50 4 443 454 doi 10 1016 S1385 7258 88 80022 2 Lenstra H W Pomerance Carl July 1992 A Rigorous Time Bound for Factoring Integers PDF Journal of the American Mathematical Society 5 3 483 516 doi 10 1090 S0894 0347 1992 1137100 0 MR 1137100 ReferencesRichard Crandall and Carl Pomerance 2001 Prime Numbers A Computational Perspective Springer ISBN 0 387 94777 9 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 ISBN 0 201 89684 2 Section 4 5 4 Factoring into Primes pp 379 417 Samuel S Wagstaff Jr 2013 The Joy of Factoring Providence RI American Mathematical Society ISBN 978 1 4704 1048 3 Warren Henry S Jr 2013 Hacker s Delight 2 ed Addison Wesley Pearson Education Inc ISBN 978 0 321 84268 8 External linksmsieve 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 download 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