Visualize factor trees and explore unique prime factorization
Calculate GCD and LCM using prime factorization method
Demonstrate that different factor tree paths lead to the same prime factorization
Prime factorization is the process of breaking down a number into its prime factors. Every integer > 1 can be uniquely expressed as a product of prime numbers.
Example: 60 = 2² × 3 × 5
This theorem states that every integer greater than 1 can be uniquely represented as a product of prime numbers (ignoring order).
This means no matter how you factor a number, you'll always get the same prime factors. This tool demonstrates this with multiple factor tree paths.
A factor tree starts with your number at the top and branches down into factors until you reach only prime numbers.
To find the GCD using prime factorization:
Example: GCD(48, 60)
To find the LCM using prime factorization:
Example: LCM(48, 60)
From the prime factorization, you can generate all divisors by taking all possible combinations of the prime powers.
Example: 60 = 2² × 3 × 5
Divisors are products of 2^a × 3^b × 5^c where:
Number of divisors = (2+1)(1+1)(1+1) = 12