✔ 最佳答案
When finding the LCM of a set of numbers, find the prime factorization and then for each common base, collect the maximum exponent of that base, find the product, and that's your LCM.
Since we're given then LCM and need to find one of the three numbers, we have to work backwards a little bit.
So we'll do the prime factorizations of what we do know.
60 = 2² * 3¹ * 5¹
-------------------------
4 = 2² * 3º * 5º
5 = 2º * 3º * 5¹
So we already have our maximum 2 exponent in the 4, and the maximum 5 exponent in the 5. The only thing we're missing is the maximum 3 exponent.
x = 2^? * 3¹ * 5^?
Note that the exponent of the 2 can still be 0, 1, or 2 and the maximum exponent on the 2 is still 2. Same with the 5, exept it can be 0 or 1.
So there's 6 possible values for x that will make this work:
2º * 3¹ * 5º = 3
2º * 3¹ * 5¹ = 15
2¹ * 3¹ * 5º = 6
2¹ * 3¹ * 5¹ = 30
2² * 3¹ * 5º = 12
2² * 3¹ * 5¹ = 60
Any one of the above 6 values for x will keep the LCM of 4, 5, and x equal to 60.