43template <
typename realT>
50 return 18 * a * b * c *
d - 4 * b * b * b *
d + b * b * c * c - 4 * a * c * c * c - 27 * a * a *
d *
d;
57template <
typename realT>
62 return -1 * ( 4 * p * p * p + 27 *
q *
q );
76template <
typename realT>
85 p = ( 3 * a * c - b * b ) / ( 3 * a * a );
86 q = ( 2 * b * b * b - 9 * a * b * c + 27 * a * a *
d ) / ( 27 * a * a * a );
96template <
typename realT>
101 realT D =
q *
q / 4 + p * p * p / 27;
104 throw std::runtime_error(
"cannot apply Cardano's formula, find roots using...." );
108 realT
u1 = -
q / 2 + D;
109 realT
u2 = -
q / 2 - D;
111 return std::cbrt(
u1 ) + std::cbrt(
u2 );
125template <
typename realT>
136 p = ( 8.0 * a * c - 3.0 * b * b ) / ( 8.0 * a * a );
138 q = ( b * b * b - 4.0 * a * b * c + 8.0 * a * a *
d ) / ( 8.0 * a * a * a );
140 Delta0 = c * c - 3.0 * b *
d + 12.0 * a *
e;
141 Delta1 = 2.0 * c * c * c - 9.0 * b * c *
d + 27.0 * b * b *
e + 27.0 * a *
d *
d - 72.0 * a * c *
e;
143 Q =
pow(
static_cast<realT
>( 0.5 ) *
147 S =
static_cast<realT
>( 0.5 ) *
148 sqrt( -
static_cast<realT
>( 2.0 / 3.0 ) * p +
static_cast<realT
>( 1.0 / ( 3.0 * a ) ) * (
Q +
Delta0 /
Q ) );
152 x[0] = -b / ( 4 * a ) - S +
153 static_cast<realT
>( 0.5 ) *
sqrt(
static_cast<realT
>( -4 ) * S * S -
static_cast<realT
>( 2 ) * p +
q / S );
154 x[1] = -b / ( 4 * a ) - S -
155 static_cast<realT
>( 0.5 ) *
sqrt(
static_cast<realT
>( -4 ) * S * S -
static_cast<realT
>( 2 ) * p +
q / S );
156 x[2] = -b / ( 4 * a ) + S +
157 static_cast<realT
>( 0.5 ) *
sqrt(
static_cast<realT
>( -4 ) * S * S -
static_cast<realT
>( 2 ) * p -
q / S );
158 x[3] = -b / ( 4 * a ) + S -
159 static_cast<realT
>( 0.5 ) *
sqrt(
static_cast<realT
>( -4 ) * S * S -
static_cast<realT
>( 2 ) * p -
q / S );
void quarticRoots(std::vector< std::complex< realT > > &x, realT a, realT b, realT c, realT d, realT e)
Find the roots of the general quartic equation.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
realT cubicRealRoot(const realT &p, const realT &q)
Calculate the real root for a depressed cubic with negative descriminant.
realT cubicDescriminant(const realT &a, const realT &b, const realT &c, const realT &d)
Calculate the descriminant for the general cubic.
void cubicDepressed(realT &p, realT &q, const realT &a, const realT &b, const realT &c, const realT &d)
Convert a general cubic equation to depressed form.