

InterviewSolution
Saved Bookmarks
1. |
Solve the following quadratic equation by factorisation method: x2 - 2ax + a2 - b2 = 0. |
Answer» Here, Factors of constant term (a2 - b2) are (a - b) and (a + b). Also, Coefficient of the middle term = - 2a = - [(a - b) + (a + b)] So, x2 - 2ax + a2 - b2 = 0 => x2 - {(a - b) + (a + b)}x + (a - b)(a + b) = 0 => x2 - (a - b) x - (a + b) x + (a - b) (a + b) => x{x - (a - b)}- (a + b) {x - (a - b)} = 0 => {x - (a - b)} {x - (a + b)} = 0 => x - (a - b) = 0 or, x - (a + b) = 0 => x = a - b or x = a + b |
|