Python

Python Program to Solve Quadratic Equation2 min read

Write a program to Solve Quadratic Equation in Python

Code:




Output

The code you provided is a simple Python program that calculates the solutions of a quadratic equation of the form ax^2 + bx + c = 0.

The program starts by importing the cmath module, which is a standard library that provides mathematical functions for working with complex numbers.

Then, the program uses the input() function to prompt the user to enter the values of the coefficients a, b and c of the quadratic equation. The user’s input is stored as a string, so it needs to be converted to a float using the float() function.

Next, the program calculates the discriminant of the equation, which is the value under the square root in the quadratic formula, by using the formula (b^2) – (4ac) and assigns the result to the variable d.

Then, the program calculates two solutions of the equation, using the quadratic formula (-b ± √(b^2 – 4ac)) / 2a, by using the cmath.sqrt() function to find square root of d and assigns the result to the variables sol1 and sol2 respectively.

Finally, the print() function is used to output the solutions of the quadratic equation to the console. The format() method is used to insert the values of sol1 and sol2 into the string that is passed to the print() function.

The output will depend on the input provided by the user. For example, if the user inputs a=1, b=-5 and c=6, the output will be “The solution are (3+0j) and (2+0j)”

Take your time to comment on this article.

Leave a Comment