This trait represents sets of real solutions of equations of type p(x) = 0 where p is a polynomial with real coefficients
Finds a minimum of a polynomial of third degree, if possible.
Finds a minimum of a polynomial of third degree, if possible. There is at most one, so we use an Option as return type.
The coefficients are specified as follows: p(x) = ax3 + bx2 + cx + d
See second red numerics notebook p. 48 for all the funny signum-manipulations.
Attempts to find local minimum of a quadratic polynomial p(x) = ax2 + bx + c
Solves ax2 + bx + c = 0