respostas incorretas para equações quadráticas

Eu queria saber se alguém poderia me dizer por que meu código python para resolver equações quadráticas não está funcionando. Eu olhei através dele e não encontrei nenhum erro.

print("This program will solve quadratic equations for you")

print("It uses the system 'ax**2 + bx + c'")

print("a, b and c are all numbers with or without decimal \
points")

print("Firstly, what is the value of a?")

a = float(input("\n\nType in the coefficient of x squared"))

b = float(input("\n\nNow for b. Type in the coefficient of x"))

c = float(input("\n\nGreat. now what is the c value? The number alone?"))

print("The first value for x is " ,(-b+(((b**2)-(4*a* c))* * 0.5)/(2*a)))

print("\n\nThe second value for x is " ,(-b-(((b * * 2)-(4*a*c))** 0.5)/(2*a)))

Quando a = 1 b = -4 ec = -3, eu estou esperando -1 e 4, mas recebo 5,5 e 0,5

questionAnswers(1)

yourAnswerToTheQuestion