Home » Aptitude » Problems on Numbers

The sum of two numbers is 25 and their difference is 13. What is their product?

Difficulty: Easy

Correct Answer: 114

Explanation:

Problem restatement
Given S = x + y = 25 and D = x − y = 13, find xy.


Concept/Approach
Use the identity S2 − D2 = 4xy.


Step-by-Step calculation
xy = (S2 − D2) ÷ 4 = (252 − 132) ÷ 4= (625 − 169) ÷ 4 = 456 ÷ 4 = 114


Verification/Alternative
Explicit solution: x = (S + D)÷2 = 19, y = (S − D)÷2 = 6 ⇒ xy = 114.


Common pitfalls
Computing (S − D)2 instead of S2 − D2, or dividing by 2 instead of 4.


Final Answer
114

Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion