How do you use the division method to find the prime factors of numbers?

Answer:

Using the division method to find prime factors

  1. let x be the number to be factorised
  2. let p be the first prime number below the square root of x (always 2, unless x is below 4)
  3. Calculate x/p
  4. if x/p was an integer, update the list of factors to include p and let x = x/p
  5. if x > 1, return to step 3
  6. you now have your completed list
First answer by Mrmr1993. Last edit by Mrmr1993. Contributor trust: 24 [recommend contributor recommended]. Question popularity: 2 [recommend question].