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:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments