Compute and print both roots of the quadratic equation x
2
-5.86 x+ 8.5408.
Hint: recall that the roots of a quadratic equation ax
2+bx+c are x=
−b ± √ b2 − 4ac
2a
Hint: use the math.sqrt function to compute the square root. (If you are using the Python
interpreter, you need to first do import math. This already appears in the hw1.py file that you will
be editing, so everything is already set up for you if you are working within that file.)