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