Difficulty: Easy
Correct Answer: 17, 18
Explanation:
Introduction / Context:
For consecutive integers n and n+1, the difference of their squares has a well-known identity that makes the calculation immediate. Recognizing this identity avoids unnecessary computation and speeds up problem solving.
Given Data / Assumptions:
Concept / Approach:
Use the difference of squares identity: (a^2 - b^2) = (a - b) * (a + b). For a = n + 1 and b = n, we get (n + 1)^2 - n^2 = (1) * (2n + 1) = 2n + 1. Set 2n + 1 equal to 35 and solve.
Step-by-Step Solution:
Write identity: (n + 1)^2 - n^2 = 2n + 1.Set equal to 35: 2n + 1 = 35.Solve: 2n = 34 → n = 17.Therefore, the numbers are 17 and 18.
Verification / Alternative check:
Compute directly: 18^2 - 17^2 = 324 - 289 = 35, exactly as required. This confirms the identity-based solution.
Why Other Options Are Wrong:
Common Pitfalls:
Squaring both numbers and subtracting without using the identity (slower and error-prone); forgetting that for consecutive numbers, the difference of squares simplifies to 2n + 1, an odd number.
Final Answer:
17, 18
Discussion & Comments