maths.free › Number Theory › Prime factorisation
Prime factorisation
Every integer is a product of primes in exactly one way.
Divide out the smallest prime again and again until only 1 is left; the primes you removed, with their multiplicities, are the unique prime factorisation. The factor tree below is drawn from those divisions. From it you can read the number of divisors and the gcd or lcm with any other number.
Fungerat exempel: prime factorization of 360
Steg för steg
- 360
Factor 360 by dividing out the smallest prime that goes in, again and again.
- 360 = 2 \times 180
2 is the smallest prime dividing 360.
- 180 = 2 \times 90
2 is the smallest prime dividing 180.
- 90 = 2 \times 45
2 is the smallest prime dividing 90.
- 45 = 3 \times 15
3 is the smallest prime dividing 45.
- 15 = 3 \times 5
3 is the smallest prime dividing 15. That leaves a prime, so we stop.
- 5 = 5 \times 1
5 is the smallest prime dividing 5. That leaves a prime, so we stop.
- 360 = 2^{3} \times 3^{2} \times 5
Collect equal primes as powers.
- d(360) = (3+1) \cdot (2+1) \cdot (1+1) = 24
Bonus: the number of divisors is the product of (exponent + 1) over the prime powers.
Avslöja svaret
Symbols used here
The exponent b must be raised to for x; ln uses base e.
Add a_k for k = 1 up to n.
Multiply a_k for k = 1 up to n.
Naturals, integers, rationals, reals, complex numbers.
n divides a − b; a and b have the same remainder.
b is a multiple of a; the largest number dividing both.
Count of 1..n coprime to n; number of primes up to x.
The remainders 0…n−1 with clock arithmetic.
What is left after dividing a by n.
How to: Prime factorisation
- Factor 360 by dividing out the smallest prime that goes in, again and again.
- 2 is the smallest prime dividing 360.
- 2 is the smallest prime dividing 180.
- 2 is the smallest prime dividing 90.
- 3 is the smallest prime dividing 45.
- 3 is the smallest prime dividing 15. That leaves a prime, so we stop.
- 5 is the smallest prime dividing 5. That leaves a prime, so we stop.
- Collect equal primes as powers.
Questions people ask
Why are primes so important?
Every integer factors into primes in exactly one way, so primes are the atoms of multiplication. Cryptography relies on that factoring being easy to state and hard to do.
How do I tell whether a big number is prime?
Trial division up to the square root works for small numbers. For large ones, probabilistic tests (Miller–Rabin) give an answer that is wrong with negligible probability, and deterministic tests (AKS) exist but are slower.
Prova själv
Mer information Number Theory
Prime numbersGCD and LCMModular arithmeticDivisorsSequencesNumber basesDiophantine equationsFermat's little theorem and Euler's theoremRSA: cryptography from number theory