Difficulty: Easy
Correct Answer: 28
Explanation:
Introduction / Context:
If two consecutive odd numbers are n and n + 2, then their squares sum to a quadratic in n. Solving gives the actual numbers. The final request is the sum of the numbers, which can then be obtained easily once n is known.
Given Data / Assumptions:
Concept / Approach:
Expand and solve for n via the quadratic formula; choose the positive root. Then compute their sum S = n + (n + 2) = 2n + 2.
Step-by-Step Solution:
Verification / Alternative check:
13^2 + 15^2 = 169 + 225 = 394. The sum 28 follows immediately.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming difference 1 rather than 2 for odd consecutive numbers or arithmetic slips in expanding squares.
Final Answer:
Discussion & Comments