Difficulty: Easy
Correct Answer: 540
Explanation:
Introduction / Context:This problem tests the relationship between a set of numbers given in a ratio and their actual values when a highest common factor (HCF) is specified. Once the actual numbers are reconstructed from the ratio using the given HCF, the least common multiple (LCM) can be computed by prime factorization or by reasoning about maximum prime powers.
Given Data / Assumptions:
Concept / Approach:If numbers are in the ratio k1 : k2 : k3 : k4 and the HCF of the actual numbers is h, then the actual numbers can be taken as h * k1, h * k2, h * k3, h * k4 provided that HCF(k1, k2, k3, k4) = 1. Then compute the LCM of these four actual integers using the highest power of each prime that appears across them.
Step-by-Step Solution:
Base ratio parts: 10, 12, 15, 18. Their overall HCF is 1, so actual numbers = 3*10, 3*12, 3*15, 3*18 = 30, 36, 45, 54.Prime factors: 30 = 2*3*5; 36 = 2^2*3^2; 45 = 3^2*5; 54 = 2*3^3.LCM takes maximum powers: 2^2 * 3^3 * 5 = 4 * 27 * 5 = 540.Verification / Alternative check:
Confirm each divides 540: 540/30=18, 540/36=15, 540/45=12, 540/54=10; all integers, so 540 is a common multiple. No smaller candidate has the required prime powers.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
540
Discussion & Comments