answersLogoWhite

0

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
User Avatar

Wiki User

15y ago

What else can I help you with?