What is the smallest positive integer that is evenly divisible by the first ten positive integers?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Great problem, @Edu Alburo ! This can clear up some misconceptions surrounding Lowest Common Multiples .
In particular, we're looking for lcm ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 1 0 ) . If we write out the Prime Factorizations , this is lcm ( 1 , 2 , 3 , 2 2 , 5 , 2 ⋅ 3 , 7 , 2 3 , 3 2 , 2 ⋅ 5 ) = 2 3 ⋅ 3 2 ⋅ 5 ⋅ 7 = 2 5 2 0 .
If you're wondering how that last step worked, let's think about the prime factorization of this number which is divisible by 1 through 10. In particular, it must contain the highest powers of any primes found in the factorizations of 1 , 2 , … , 1 0 .