Skip to content

Commit 6f9fb98

Browse files
authored
Quadratic Formula
Takes the values of a,b,c, and calculates the two solutions for the quadratic equation ax^2 + bx + c = -
1 parent f581e7e commit 6f9fb98

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Quadratic formula

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import cmath
2+
3+
print('Solve the quadratic equation: ax**2 + bx + c = 0')
4+
a = float(input('Please enter a : '))
5+
b = float(input('Please enter b : '))
6+
c = float(input('Please enter c : '))
7+
delta = (b**2) - (4*a*c)
8+
solution1 = (-b-cmath.sqrt(delta))/(2*a)
9+
solution2 = (-b+cmath.sqrt(delta))/(2*a)
10+
11+
print('The solutions are {0} and {1}'.format(solution1,solution2))

0 commit comments

Comments
 (0)