Integer factorization: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 1:
[[de:Faktorisierung]] [[ja:素因数分解]]
 
 
In [[mathematics]], the '''integer prime-factorization''' (also known as '''prime decomposition''') problem is this: given a positive [[integer]], write it as a product of [[prime number]]s. For example, given the number 45, the prime factorization would be 3<sup>2</sup>&middot;3&middot;5. The factorization is always unique, according to the [[fundamental theorem of arithmetic]]. This problem is of significance in [[mathematics]], [[cryptography]], [[computational complexity theory|complexity theory]], and [[quantum computer|quantum computers]].
 
The complete list of factors can be derived from the prime factorization by incrementing the exponents from zero until the number is reached. For example, since 45 = 3<sup>2</sup>&middot;5, 45 is divisible by 3<sup>0</sup>&middot;5<sup>0</sup>, 3<sup>0</sup>&middot;5<sup>1</sup>, 3<sup>1</sup>&middot;5<sup>0</sup>, 3<sup>1</sup>&middot;5<sup>1</sup>, 3<sup>2</sup>&middot;5<sup>0</sup>, and 3<sup>2</sup>&middot;5<sup>1</sup>, or 1, 5, 3, 15, 9, and 45. In contrast, the prime factorization only includes prime factors.