KnowledgeBoat Logo

Computer Science

Write following expressions in Python:

x=b+b24ac2ax = \dfrac{-b + \sqrt{b^2 - 4ac}}{2a}

Python Data Handling

59 Likes

Answer


x = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)

Answered By

32 Likes


Related Questions