Given a, b and c, find the roots of the equation ax^2 +bx +c = 0 and then add them together.
1.0.findRootsSum(2, 4, -6) ➞ -2.00
findRootsSum(3, 4, -3) ➞ -1.33
findRootsSum(4, 3, -8) ➞ -0.75
The Discriminant of a quadratic equation is b^2-4(a)(c).