0 votes
222 views
in Python by (98.9k points)
edited
Python Program to Solve Quadratic Equation

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer
import cmath

a = 1
b = 5
c = 6

# calculate the discriminant
d = (b**2) - (4*a*c)

# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)

print('The solution are {0} and {1}'.format(sol1,sol2))

 

Related questions

0 votes
1 answer 132 views
0 votes
1 answer 92 views
0 votes
1 answer 271 views
0 votes
1 answer 105 views
asked Jun 11, 2022 in Python by Doubtly (98.9k points)
0 votes
1 answer 168 views
asked Jun 11, 2022 in Python by Doubtly (98.9k points)

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

538 users

...