Difficulty: Easy
Correct Answer: 34
Explanation:
Introduction: Classic heads-and-legs problems are solved using linear equations. Each animal contributes one head; hens contribute 2 legs and goats contribute 4 legs. Two equations quickly reveal the counts of each type.
Given Data / Assumptions:
Concept / Approach: Use the system: h + g = 90 and 2h + 4g = 248. Divide the second by 2 to simplify, then eliminate h to solve for g.
Step-by-Step Solution:
h + g = 90 … (1)2h + 4g = 248 → h + 2g = 124 … (2)Subtract (1) from (2): (h + 2g) − (h + g) = 124 − 90 → g = 34.From (1): h = 90 − 34 = 56 (sanity check).Verification / Alternative check: Legs: 2*56 + 4*34 = 112 + 136 = 248, matches perfectly.
Why Other Options Are Wrong: 32, 36, 38 lead to leg counts not equal to 248; “Cannot be determined” is incorrect because the system has a unique integer solution.
Common Pitfalls: Forgetting each animal has one head; mixing leg coefficients; or not simplifying the equations.
Final Answer: 34
Discussion & Comments