| Alternative 1 | |
|---|---|
| Accuracy | 88.5% |
| Cost | 40964 |
(FPCore (a b c) :precision binary64 (/ (+ (- b) (sqrt (- (* b b) (* (* 3.0 a) c)))) (* 3.0 a)))
(FPCore (a b c)
:precision binary64
(if (<= (/ (- (sqrt (- (* b b) (* (* 3.0 a) c))) b) (* 3.0 a)) -0.01)
(* -0.3333333333333333 (/ (- b (sqrt (fma b b (* a (* c -3.0))))) a))
(fma
-0.5625
(* (* a a) (* (* c c) (* c (pow b -5.0))))
(fma
-0.5
(/ c b)
(fma
-0.375
(* a (/ (* c c) (pow b 3.0)))
(/ (* (pow (* a c) 4.0) -1.0546875) (* a (pow b 7.0))))))))double code(double a, double b, double c) {
return (-b + sqrt(((b * b) - ((3.0 * a) * c)))) / (3.0 * a);
}
double code(double a, double b, double c) {
double tmp;
if (((sqrt(((b * b) - ((3.0 * a) * c))) - b) / (3.0 * a)) <= -0.01) {
tmp = -0.3333333333333333 * ((b - sqrt(fma(b, b, (a * (c * -3.0))))) / a);
} else {
tmp = fma(-0.5625, ((a * a) * ((c * c) * (c * pow(b, -5.0)))), fma(-0.5, (c / b), fma(-0.375, (a * ((c * c) / pow(b, 3.0))), ((pow((a * c), 4.0) * -1.0546875) / (a * pow(b, 7.0))))));
}
return tmp;
}
function code(a, b, c) return Float64(Float64(Float64(-b) + sqrt(Float64(Float64(b * b) - Float64(Float64(3.0 * a) * c)))) / Float64(3.0 * a)) end
function code(a, b, c) tmp = 0.0 if (Float64(Float64(sqrt(Float64(Float64(b * b) - Float64(Float64(3.0 * a) * c))) - b) / Float64(3.0 * a)) <= -0.01) tmp = Float64(-0.3333333333333333 * Float64(Float64(b - sqrt(fma(b, b, Float64(a * Float64(c * -3.0))))) / a)); else tmp = fma(-0.5625, Float64(Float64(a * a) * Float64(Float64(c * c) * Float64(c * (b ^ -5.0)))), fma(-0.5, Float64(c / b), fma(-0.375, Float64(a * Float64(Float64(c * c) / (b ^ 3.0))), Float64(Float64((Float64(a * c) ^ 4.0) * -1.0546875) / Float64(a * (b ^ 7.0)))))); end return tmp end
code[a_, b_, c_] := N[(N[((-b) + N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(N[(3.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(3.0 * a), $MachinePrecision]), $MachinePrecision]
code[a_, b_, c_] := If[LessEqual[N[(N[(N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(N[(3.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - b), $MachinePrecision] / N[(3.0 * a), $MachinePrecision]), $MachinePrecision], -0.01], N[(-0.3333333333333333 * N[(N[(b - N[Sqrt[N[(b * b + N[(a * N[(c * -3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision], N[(-0.5625 * N[(N[(a * a), $MachinePrecision] * N[(N[(c * c), $MachinePrecision] * N[(c * N[Power[b, -5.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(-0.5 * N[(c / b), $MachinePrecision] + N[(-0.375 * N[(a * N[(N[(c * c), $MachinePrecision] / N[Power[b, 3.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(N[Power[N[(a * c), $MachinePrecision], 4.0], $MachinePrecision] * -1.0546875), $MachinePrecision] / N[(a * N[Power[b, 7.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\begin{array}{l}
\mathbf{if}\;\frac{\sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c} - b}{3 \cdot a} \leq -0.01:\\
\;\;\;\;-0.3333333333333333 \cdot \frac{b - \sqrt{\mathsf{fma}\left(b, b, a \cdot \left(c \cdot -3\right)\right)}}{a}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \left(\left(c \cdot c\right) \cdot \left(c \cdot {b}^{-5}\right)\right), \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(a \cdot c\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)\\
\end{array}
if (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)) < -0.0100000000000000002Initial program 77.5%
Simplified77.6%
[Start]77.5 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
|---|---|
/-rgt-identity [<=]77.5 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\color{blue}{\frac{3 \cdot a}{1}}}
\] |
metadata-eval [<=]77.5 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\frac{3 \cdot a}{\color{blue}{--1}}}
\] |
associate-/l* [<=]77.5 | \[ \color{blue}{\frac{\left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right) \cdot \left(--1\right)}{3 \cdot a}}
\] |
associate-*r/ [<=]77.5 | \[ \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right) \cdot \frac{--1}{3 \cdot a}}
\] |
*-commutative [=>]77.5 | \[ \color{blue}{\frac{--1}{3 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}
\] |
associate-*l/ [=>]77.5 | \[ \color{blue}{\frac{\left(--1\right) \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{3 \cdot a}}
\] |
associate-*r/ [<=]77.5 | \[ \color{blue}{\left(--1\right) \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}}
\] |
metadata-eval [=>]77.5 | \[ \color{blue}{1} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
metadata-eval [<=]77.5 | \[ \color{blue}{\frac{-1}{-1}} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
times-frac [<=]77.5 | \[ \color{blue}{\frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{-1 \cdot \left(3 \cdot a\right)}}
\] |
neg-mul-1 [<=]77.5 | \[ \frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{\color{blue}{-3 \cdot a}}
\] |
distribute-rgt-neg-in [=>]77.5 | \[ \frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{\color{blue}{3 \cdot \left(-a\right)}}
\] |
times-frac [=>]77.5 | \[ \color{blue}{\frac{-1}{3} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{-a}}
\] |
metadata-eval [=>]77.5 | \[ \color{blue}{-0.3333333333333333} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{-a}
\] |
neg-mul-1 [=>]77.5 | \[ -0.3333333333333333 \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\color{blue}{-1 \cdot a}}
\] |
if -0.0100000000000000002 < (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)) Initial program 47.1%
Simplified47.1%
[Start]47.1 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
|---|---|
/-rgt-identity [<=]47.1 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\color{blue}{\frac{3 \cdot a}{1}}}
\] |
metadata-eval [<=]47.1 | \[ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\frac{3 \cdot a}{\color{blue}{--1}}}
\] |
associate-/l* [<=]47.1 | \[ \color{blue}{\frac{\left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right) \cdot \left(--1\right)}{3 \cdot a}}
\] |
associate-*r/ [<=]47.1 | \[ \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right) \cdot \frac{--1}{3 \cdot a}}
\] |
*-commutative [=>]47.1 | \[ \color{blue}{\frac{--1}{3 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}
\] |
associate-*l/ [=>]47.1 | \[ \color{blue}{\frac{\left(--1\right) \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{3 \cdot a}}
\] |
associate-*r/ [<=]47.1 | \[ \color{blue}{\left(--1\right) \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}}
\] |
metadata-eval [=>]47.1 | \[ \color{blue}{1} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
metadata-eval [<=]47.1 | \[ \color{blue}{\frac{-1}{-1}} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\] |
times-frac [<=]47.1 | \[ \color{blue}{\frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{-1 \cdot \left(3 \cdot a\right)}}
\] |
neg-mul-1 [<=]47.1 | \[ \frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{\color{blue}{-3 \cdot a}}
\] |
distribute-rgt-neg-in [=>]47.1 | \[ \frac{-1 \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}\right)}{\color{blue}{3 \cdot \left(-a\right)}}
\] |
times-frac [=>]47.1 | \[ \color{blue}{\frac{-1}{3} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{-a}}
\] |
metadata-eval [=>]47.1 | \[ \color{blue}{-0.3333333333333333} \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{-a}
\] |
neg-mul-1 [=>]47.1 | \[ -0.3333333333333333 \cdot \frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{\color{blue}{-1 \cdot a}}
\] |
Taylor expanded in b around inf 94.4%
Taylor expanded in c around 0 94.7%
Simplified94.7%
[Start]94.7 | \[ -0.5625 \cdot \frac{{c}^{3} \cdot {a}^{2}}{{b}^{5}} + \left(-0.16666666666666666 \cdot \frac{{c}^{4} \cdot \left(1.265625 \cdot {a}^{4} + 5.0625 \cdot {a}^{4}\right)}{a \cdot {b}^{7}} + \left(-0.5 \cdot \frac{c}{b} + -0.375 \cdot \frac{{c}^{2} \cdot a}{{b}^{3}}\right)\right)
\] |
|---|---|
associate-+r+ [=>]94.7 | \[ -0.5625 \cdot \frac{{c}^{3} \cdot {a}^{2}}{{b}^{5}} + \color{blue}{\left(\left(-0.16666666666666666 \cdot \frac{{c}^{4} \cdot \left(1.265625 \cdot {a}^{4} + 5.0625 \cdot {a}^{4}\right)}{a \cdot {b}^{7}} + -0.5 \cdot \frac{c}{b}\right) + -0.375 \cdot \frac{{c}^{2} \cdot a}{{b}^{3}}\right)}
\] |
associate-+r+ [=>]94.7 | \[ \color{blue}{\left(-0.5625 \cdot \frac{{c}^{3} \cdot {a}^{2}}{{b}^{5}} + \left(-0.16666666666666666 \cdot \frac{{c}^{4} \cdot \left(1.265625 \cdot {a}^{4} + 5.0625 \cdot {a}^{4}\right)}{a \cdot {b}^{7}} + -0.5 \cdot \frac{c}{b}\right)\right) + -0.375 \cdot \frac{{c}^{2} \cdot a}{{b}^{3}}}
\] |
Applied egg-rr94.7%
[Start]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, -0.16666666666666666 \cdot \left(\frac{{\left(c \cdot a\right)}^{4}}{{b}^{7}} \cdot \frac{6.328125}{a}\right)\right)\right)\right)
\] |
|---|---|
frac-times [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, -0.16666666666666666 \cdot \color{blue}{\frac{{\left(c \cdot a\right)}^{4} \cdot 6.328125}{{b}^{7} \cdot a}}\right)\right)\right)
\] |
associate-*r/ [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \color{blue}{\frac{-0.16666666666666666 \cdot \left({\left(c \cdot a\right)}^{4} \cdot 6.328125\right)}{{b}^{7} \cdot a}}\right)\right)\right)
\] |
*-commutative [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{-0.16666666666666666 \cdot \left({\left(c \cdot a\right)}^{4} \cdot 6.328125\right)}{\color{blue}{a \cdot {b}^{7}}}\right)\right)\right)
\] |
Simplified94.7%
[Start]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{-0.16666666666666666 \cdot \left({\left(c \cdot a\right)}^{4} \cdot 6.328125\right)}{a \cdot {b}^{7}}\right)\right)\right)
\] |
|---|---|
*-commutative [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{\color{blue}{\left({\left(c \cdot a\right)}^{4} \cdot 6.328125\right) \cdot -0.16666666666666666}}{a \cdot {b}^{7}}\right)\right)\right)
\] |
associate-*l* [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{\color{blue}{{\left(c \cdot a\right)}^{4} \cdot \left(6.328125 \cdot -0.16666666666666666\right)}}{a \cdot {b}^{7}}\right)\right)\right)
\] |
metadata-eval [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot \color{blue}{-1.0546875}}{a \cdot {b}^{7}}\right)\right)\right)
\] |
Applied egg-rr94.7%
[Start]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \frac{{c}^{3}}{{b}^{5}}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
|---|---|
div-inv [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \color{blue}{\left({c}^{3} \cdot \frac{1}{{b}^{5}}\right)}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
unpow3 [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \left(\color{blue}{\left(\left(c \cdot c\right) \cdot c\right)} \cdot \frac{1}{{b}^{5}}\right), \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
associate-*l* [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \color{blue}{\left(\left(c \cdot c\right) \cdot \left(c \cdot \frac{1}{{b}^{5}}\right)\right)}, \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
pow-flip [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \left(\left(c \cdot c\right) \cdot \left(c \cdot \color{blue}{{b}^{\left(-5\right)}}\right)\right), \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
metadata-eval [=>]94.7 | \[ \mathsf{fma}\left(-0.5625, \left(a \cdot a\right) \cdot \left(\left(c \cdot c\right) \cdot \left(c \cdot {b}^{\color{blue}{-5}}\right)\right), \mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.375, a \cdot \frac{c \cdot c}{{b}^{3}}, \frac{{\left(c \cdot a\right)}^{4} \cdot -1.0546875}{a \cdot {b}^{7}}\right)\right)\right)
\] |
Final simplification90.0%
| Alternative 1 | |
|---|---|
| Accuracy | 88.5% |
| Cost | 40964 |
| Alternative 2 | |
|---|---|
| Accuracy | 88.5% |
| Cost | 40964 |
| Alternative 3 | |
|---|---|
| Accuracy | 88.5% |
| Cost | 40964 |
| Alternative 4 | |
|---|---|
| Accuracy | 85.0% |
| Cost | 21124 |
| Alternative 5 | |
|---|---|
| Accuracy | 85.1% |
| Cost | 21124 |
| Alternative 6 | |
|---|---|
| Accuracy | 84.9% |
| Cost | 21060 |
| Alternative 7 | |
|---|---|
| Accuracy | 84.8% |
| Cost | 15428 |
| Alternative 8 | |
|---|---|
| Accuracy | 84.8% |
| Cost | 15428 |
| Alternative 9 | |
|---|---|
| Accuracy | 75.9% |
| Cost | 14788 |
| Alternative 10 | |
|---|---|
| Accuracy | 73.6% |
| Cost | 7492 |
| Alternative 11 | |
|---|---|
| Accuracy | 64.2% |
| Cost | 320 |
| Alternative 12 | |
|---|---|
| Accuracy | 64.3% |
| Cost | 320 |
| Alternative 13 | |
|---|---|
| Accuracy | 3.2% |
| Cost | 192 |
herbie shell --seed 2023151
(FPCore (a b c)
:name "Cubic critical, narrow range"
:precision binary64
:pre (and (and (and (< 1.0536712127723509e-8 a) (< a 94906265.62425156)) (and (< 1.0536712127723509e-8 b) (< b 94906265.62425156))) (and (< 1.0536712127723509e-8 c) (< c 94906265.62425156)))
(/ (+ (- b) (sqrt (- (* b b) (* (* 3.0 a) c)))) (* 3.0 a)))