Factorisation Method

Trial Division method

Factorising any number we start with the smallest prime number and keep dividing the number until it becomes 1. We keep track of the prime numbers that divide the number. Example 231:

Fermat’s Factorisation Method

Fermat’s factorisation method is based on the formula:

If n is a composite number, then it can be expressed as the difference of two squares. We can find the value of x and y by solving the equation. Example:

Find Factors of 5959

  1. Compute
    1. is not a perfect square

Find factors of 10403

  1. Compute
    1. is a perfect square

In the above question

  • is the nearest integer to
  • is the difference between and
    • is the sum of and

Pollard’s Method

Pollard’s rho method is based on the Floyd’s cycle finding algorithm. The algorithm is as follows:

Factorising 10403 using Pollard’s Rho Method

  1. Choose a = 2
  2. Compute for increasing values of
  3. At ,

Pollard Rho Method

Pollard’s rho method is based on the Floyd’s cycle finding algorithm. The algorithm is as follows: formula:

gcd(|x_{2}-y_{2},10403)=gcd(|x_{2}-y_{2},10403)$$ Factorising $8051$ using Pollard's Rho Method 1. Choose x=2, y=2 2. Compute $x^2+1$ and $y^2+1$ 1. $x=2^2+1=5 ~ mod(10403)$ 2. $y=2^2+1=5~$ 3. $x=5^2+1=26$ 4. $y=5^2+1=26$ 5. $x=26^2+1=677$ 6. how to know when to stop? 1. $x=677$ 2. $y=26$ 3. $x-y=651$ 4. $gcd(651,8051)=59$ 5. $8051=59*137$ 3. Compute $d = gcd(x-y,n)$ 1. $d=gcd(677-26,8051)=gcd(651,8051)=59$ 2. $8051=59*137$ Factorising $10403$ using Pollard's Rho Method 1. Choose x=2, y=2 2. # References ###### Information - date: 2025.03.01 - time: 11:15