Show worked solution
Worked solution
Every number factorises uniquely
Each whole number has exactly one prime factorisation.
Listing all factors is slow
A large number can have very many factors.
And error-prone
It is easy to miss a factor or list one twice.
Prime factorisation is compact
The factorisation records everything with just a few prime powers.
For the HCF, use shared primes
Take each shared prime to its lowest power.
This gives the HCF directly
No listing of factors is needed.
For the LCM, use highest powers
Take each prime to its highest power.
This gives the LCM directly
Again, no long list is needed.
You only handle a few numbers
You just compare exponents, not dozens of factors.
So it scales to large numbers
The method stays quick even when the numbers are large.
Example numbers
Take 84, for instance.
And another
And 360.
HCF quickly
Lowest shared powers give HCF = 12 straight away.
LCM quickly
Highest powers give LCM = 2520 without listing factors.
State the point
Because prime factorisation is unique and compact, it gives a reliable, fast way to find HCF and LCM even for large numbers.