object MathUtil
Various math utilities.
Returns the real solutions to the quadratic ax^2 + bx + c.
fun solveQuadratic(a: Double, b: Double, c: Double): List<Double>