Thursday, March 19, 2015

Do Prime Factorization

Prime factorization refers to expressing a number as the product of prime numbers. Prime numbers are numbers that only have two factors: 1 and itself. Prime factorization is not as hard as it may seem. This article discusses go about solving prime factorization problems.


Instructions


1. Learn a short list of prime numbers. 2, 3, 5, 7, 11, 13, 17, and 19 are all prime. There are more prime numbers than those mentioned, of course.


2. Start solving a prime factorization problem by writing the given number as the product of any two integers and go from there.


3. If one or both of the integers you write down is not prime, write it as the product of two smaller integers.


4. Repeat step 3 until you have written the given number as the product of two or more prime numbers.


5. Verify your answer with a calculator.


6. As an example, let's write the prime factorization of 360. Well, 360 = 36*10. Since neither 36 nor 10 is a prime number, we are not done. 36 = 9*4 and 10 = 2*5. 2 and 5 are both prime, so we have part of the answer. Let's look at 9*4. Neither number is prime. 9 = 3*3 and 4 = 2*2. 3 and 2 are prime, so we have 360 = 2*5*3*3*2*2, which is the answer.