Difficulty: Medium
Correct Answer: x < y
Explanation:
Introduction / Context:This problem tests log laws and equation solving. The identities transform into linear equations in x and y once we use log(a) − log(b) = log(a/b) and apply the one-to-one property of logarithms (same base, positive arguments).
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
x − 5 = x/5 ⇒ 5x − 25 = x ⇒ 4x = 25 ⇒ x = 25/4 = 6.25y − 6 = y/6 ⇒ 6y − 36 = y ⇒ 5y = 36 ⇒ y = 36/5 = 7.2Thus x = 6.25 and y = 7.2, so x < y.Verification / Alternative check:Both solutions satisfy domain constraints: x > 5 and y > 6 so all logs are defined, confirming validity.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:x < y
Discussion & Comments