Answers for "quadratic equation what is it used for"

C
14

quadratic formula

x = [-b ± √(b² - 4ac)] / (2a)
Posted by: Guest on October-18-2021
2

quadratic equation

(-b-sqrt(b**2-4*a*c))/(2*a)
(-b+sqrt(b**2-4*a*c))/(2*a)
If that doesn't work,
((0-b)-sqrt(b**2-4*a*c))/(2*a)
((0-b)+sqrt(b**2-4*a*c))/(2*a)
Posted by: Guest on December-31-2021

Code answers related to "quadratic equation what is it used for"

Code answers related to "C"

Browse Popular Code Answers by Language