Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 18 Online
OpenStudy (anonymous):

How to find Positive root of the following equation: 34*x^2 + 68*x - 510 using IDLE

OpenStudy (e.mccormick):

Well, what did you code up so far in Python?

OpenStudy (anonymous):

Well, there's a library 'SymPy' for it. Do you want the code to compute it?

OpenStudy (anonymous):

LOL it's just a quadratic so if you want you can define the quadratic formula which takes the coefficients of the formula as an input and outputs roots e.g. def quadratic(a,b,c): from math import sqrt as s answer1 = (-b + s(b**2 - 4*ac)) / float(2*a) answer2 = (-b - s(b**2 - 4*ac)) / float(2*a) return answer1 , answer2 # then put in the above question print quadratic(34,68,-510) # and it will give you the answer

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!