Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 21 Online
OpenStudy (anonymous):

Exercise 2.5 works, I think, but with some parameters it complains that there's a 'math domain error' import math def roots (a,b,c): x = (math.sqrt(b**2 - 4*a*c)-b)/2 y = (-b - math.sqrt(b**2 - 4*a*c)-b)/2 print "x=",x print "y=", y

OpenStudy (anonymous):

You have to test the value of the discriminant before taking the square root. Alternatively, if you can to do the optional part and have it produce complex root. Takes a little bit of extra effort. The sqrt function is still limited to non-negative values. So take the sqrt of the absolute value and multiply by "1J"

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!