

InterviewSolution
Saved Bookmarks
1. |
Find the values of k for roots are real and equal in equation:4x2– 3kx + 1 = 0 |
Answer» The given equation 4x2 – 3kx + 1 = 0 is in the form of ax2 + bx + c = 0 Where a = 4, b = -3k, c = 1 For the equation to have real and equal roots, the condition is D = b2 – 4ac = 0 ⇒ (-3k)2 – 4(4)(1) = 0 ⇒ 9k2 – 16 = 0 ⇒ k = ± \(\frac{4}{3}\) The value of k is ± \(\frac{4}{3}\). |
|