

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