

InterviewSolution
Saved Bookmarks
1. |
Find the products: ((1/x) + (1/y)) ((1/x)-(1/y)) |
Answer» Given ((1/x) + (1/y)) ((1/x)-(1/y)) By using the formula (a + b) (a – b) = a2 – b2 Applying the formula we get ((1/x) + (1/y)) ((1/x)-(1/y))= (1/x)2-(1/y)2 ((1/x) + (1/y)) ((1/x)-(1/y))= (1/x2)-(1/y2) |
|