Difficulty: Easy
Correct Answer: 25 and 25
Explanation:
Introduction / Context:Classic coin-count problems involve two variables: the number of lower-denomination coins and higher-denomination coins. You are given both the total count of coins and the total monetary value, which leads to a solvable system of linear equations.
Given Data / Assumptions:
Concept / Approach:Let x be the count of ₹1 coins and y be the count of ₹2 coins. Then x + y = 50 (count equation) and x + 2y = 75 (value equation). Solve simultaneously to get x and y in integers consistent with the constraints.
Step-by-Step Solution:
x + y = 50 … (1)x + 2y = 75 … (2)Subtract (1) from (2): (x + 2y) − (x + y) = 75 − 50 ⇒ y = 25.From (1): x + 25 = 50 ⇒ x = 25.Verification / Alternative check:Total amount = 25*₹1 + 25*₹2 = 25 + 50 = ₹75; total coins = 25 + 25 = 50. Both conditions satisfied.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:25 and 25
Discussion & Comments