×

Search anything:

Integer Factorization Algorithms

Internship at OpenGenus

Get this book -> Problems on Array: For Interviews and Competitive Programming

In this article, we have explored in great detail some of the different factorization algorithms for Integers such as Trial Division, Pollard's rho algorithm, Dixon's algorithm and Quadratic Sieve.

Table of Contents

  • Introduction
  • Category 1 algorithms
    • Trial division
    • Pollard's rho algorithm
  • Category 2 algorithms
    • Dixon's algorithm
    • Quadratic sieve

The Time Complexity of the different algorithms for Integer Factorization are:

Algorithm Time Complexity
Trial division O(N)
Pollard's rho algorithm O(N1/2)
Dixon's algorithm O(e2√2 √(logn loglogn))
Quadratic sieve O(e(√(log n log log n)))

Let us get started with Integer Factorization Algorithms.

Introduction

In number theory, integer factorization is the decomposition of a composite number into smaller non-trivial divisors, which when multiplied together equals the original integer. There are many different algorithms present to factorize an integer. Depending on the running time of the algorithms, they have been classified into Category 1 and Category 2 which comprises of non-quantum integer factorization algorithms.

Category 1 algorithms

This category of algorithms are also known as special purpose algorithms. The running time of these algorithms depend on certain parameters or unknown factors of the integers like the size, special form, etc.

Some algorithms that come under this category are:

  • Trial division
  • Pollard's rho algorithm

Let us discuss these algorithms in detail.

Trial division

In trial division, the integer to be factorized (n) is divided by every number less than it. It consists of continually testing if n is divisible by a smaller number.
Further research has shown that the factors of n may be less than or equal to half of it (n/2), but never greater. Implementing this improves the efficiency of this algorithm.Given below is the code for the above

def trial_division(n: int) :
    a = []              
    f = 2                  
    while n > 1:        
        if n % f == 0:          
            a.append(f)  
            n //= f       
        else:            
            f += 1       
    return a 
trial_division(12)

The above program gives a list of prime factors of 12 using the trial division.

Output:

[2,2,3]

The Time Complexity of the above algorithm is O(N). Specifically, there are N/2 steps.

Pollard's rho algorithm

In this algorithm, the greatest common divisor of modulus of the difference between two integers and the integer to be factorized (n) is found out. If it is greater than 1, then that is one of the non-trivial factors of n.

This algorithm gets its name 'rho' as the sequence generated will cycle as each value depends on the value before it and the structure of this cycling resembles the Greek letter rho.

The two integers are found by using a function   f which generates pseudo random numbers. One such function used is  f = x2+ a mod n where a is generated using a random number generator. We generally start with x1=2 and perform the operations x2=f(x1), x3=f(x2) i.e. the general rule is xn+1=f(xn).

Scheme for the algorithm

x = 2;

while (.. exit criterion .. )

   y = f(x);
   p = GCD( | y - x | , N);
   if ( p > 1)
       return "Found factor:";
   x = y;
end

return "Failed"

Example:

Let us take n = 55 and f(x) = x2 + 2 mod 55.In the table below GCD refers to GCD(|xn - x(n+1)|, N).

xn x(n+1) GCD
2 6 1
6 38 1
38 16 1
16 36 5

From the table, 5 is one of the non-trivial factors of 55. The other factor can simply be found by dividing 55 by 5 or continuing the algorithm. Therefore, the factors are 5 * 11.

The Time Complexity of this algorithm will be O(N1/2) where N is the total number of possible values.

Category 2 algorithms

This category of algorithms are also known as general purpose algorithms or Kraitchik family algorithms. The running time of these algorithms depend on only on the size of the integer to be factored. They are used to factor RSA numbers.

Some algorithms that come under this category are:

  • Dixon's algorithm
  • Quadratic sieve

Let us explore these algorithm in depth.

Dixon's algorithm

Let the number to be factorized be n.

  • We choose a bound b and a factor base (p) of all primes less than or equal to b.

  • Look for an integer x such that   x2 mod(n) is b-smooth.

( An integer greater than 0 is called b-smooth if all of its prime factors are lesser than or equal to b).

  • After we obtain sufficient realtions, we use methods like Gaussian elimination to multiply them together and obtain a final expression in the form  y2= z2 mod(n) .

  • We then find the factors of the above equation as

GCD(y - z, n), GCD(y + z, n).

The Time Complexity of this method is O(e2√2 √(logn loglogn)) where e = 2.718.

Example

Say we want to factor n = 23449 over p = 2, 3, 5, 7 and b=7.
x = [√n] = 154. Starting here, the first related squares we get are:

9702 mod(23449) = 2940 = 22 ∗ 3 ∗ 5 ∗ 72
86212 mod(23449) = 11760 = 24 ∗ 3 ∗ 5 ∗ 72

Here, 970 and 8621 are b-smooth numbers whose factors are not greater than 7.

So, (970* 8621)2 ≡ (23 ∗ 3 ∗ 5 ∗ 72)2 (mod 23449)

That is, 145262 ≡ 58802 (mod 23449)

Now , we find:

gcd(14526-5880,23449) = 131
gcd(14526+5880,23449) = 179
Factors are N = 131 * 179

Quadratic sieve

This algorithm is a modification of Dixon's algorithm.

In Dixon's algorithm, we chose 2 from the set of realtios obtained to arrive at the 'congruence of squares modulo n' form. But here, we assign a variable to each of the relation, and work mod 2 so that all the exponents are even. We then obtain a set of reduced relations and then find the values of the variables. These values will tell us which realtions are to be considered so that we get a 'congruence of squares modulo n' form.

The theoretical time and space complexity of this algorithm is O(e(√(log n log log n))).

Example

Let the number to be factorized be n = 539873 and b=19
x = [√n] = 734.6. Starting from 735, we work our way up.

Working mod 539873:
7352 ≡ 352 ≡ 25 ∗ 11
7502 ≡ 22627 ≡ 113 ∗ 17
7832 ≡ 73216 ≡ 29 ∗ 11 ∗ 13
8012 ≡ 101728 ≡ 25 ∗ 11 ∗ 172

Solving

QS-1

we get,

QS-2

working mod 2:

QS-3

which gives us a non trivial solution x1=1, x2=0, x3=0, x4=1.

Therefore, the first and fourth relations are multiplied to get the 'congruence of squares modulo n' form.

Further proceeding, we have:

QS-5

By applying the congruence of squares, we will find that the GCD of the difference of the two integers and 539873 will be a factor of 539873. That is:

QS-6

Hence, 539873 = 1949 * 277

With this article at OpenGenus, you must have the complete idea of Integer Factorization Algorithms.

Integer Factorization Algorithms
Share this