| Alternative 1 | |
|---|---|
| Accuracy | 100.0% |
| Cost | 11208 |
(FPCore (x)
:precision binary64
(*
(/
(+
(+
(+
(+ (+ 1.0 (* 0.1049934947 (* x x))) (* 0.0424060604 (* (* x x) (* x x))))
(* 0.0072644182 (* (* (* x x) (* x x)) (* x x))))
(* 0.0005064034 (* (* (* (* x x) (* x x)) (* x x)) (* x x))))
(* 0.0001789971 (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x))))
(+
(+
(+
(+
(+
(+ 1.0 (* 0.7715471019 (* x x)))
(* 0.2909738639 (* (* x x) (* x x))))
(* 0.0694555761 (* (* (* x x) (* x x)) (* x x))))
(* 0.0140005442 (* (* (* (* x x) (* x x)) (* x x)) (* x x))))
(* 0.0008327945 (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x))))
(*
(* 2.0 0.0001789971)
(* (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x)) (* x x)))))
x))(FPCore (x)
:precision binary64
(let* ((t_0 (* x (* x (* x x))))
(t_1 (/ (/ 0.2514179000665374 x) (* x x)))
(t_2 (* t_0 t_0))
(t_3 (* (* x x) t_2)))
(if (<= x -200.0)
(+
t_1
(+
(/ 0.5 x)
(+
(/ 0.15298196345929074 (pow x 5.0))
(/ 11.259630434457211 (pow x 7.0)))))
(if (<= x 20000.0)
(*
x
(/
(+
(+
(+ (+ 1.0 (* (* x x) 0.1049934947)) (* 0.0424060604 t_0))
(* 0.0072644182 (* (* x x) t_0)))
(+ (* 0.0005064034 t_2) (* 0.0001789971 t_3)))
(+
(+
(+
(+ 1.0 (* (* x x) 0.7715471019))
(+ (* t_0 0.2909738639) (* (* x x) (* t_0 0.0694555761))))
(* t_2 0.0140005442))
(+ (* t_3 0.0008327945) (* 0.0003579942 (* t_0 t_2))))))
(+ t_1 (/ 0.5 x))))))double code(double x) {
return ((((((1.0 + (0.1049934947 * (x * x))) + (0.0424060604 * ((x * x) * (x * x)))) + (0.0072644182 * (((x * x) * (x * x)) * (x * x)))) + (0.0005064034 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0001789971 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) / ((((((1.0 + (0.7715471019 * (x * x))) + (0.2909738639 * ((x * x) * (x * x)))) + (0.0694555761 * (((x * x) * (x * x)) * (x * x)))) + (0.0140005442 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0008327945 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) + ((2.0 * 0.0001789971) * ((((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)) * (x * x))))) * x;
}
double code(double x) {
double t_0 = x * (x * (x * x));
double t_1 = (0.2514179000665374 / x) / (x * x);
double t_2 = t_0 * t_0;
double t_3 = (x * x) * t_2;
double tmp;
if (x <= -200.0) {
tmp = t_1 + ((0.5 / x) + ((0.15298196345929074 / pow(x, 5.0)) + (11.259630434457211 / pow(x, 7.0))));
} else if (x <= 20000.0) {
tmp = x * (((((1.0 + ((x * x) * 0.1049934947)) + (0.0424060604 * t_0)) + (0.0072644182 * ((x * x) * t_0))) + ((0.0005064034 * t_2) + (0.0001789971 * t_3))) / ((((1.0 + ((x * x) * 0.7715471019)) + ((t_0 * 0.2909738639) + ((x * x) * (t_0 * 0.0694555761)))) + (t_2 * 0.0140005442)) + ((t_3 * 0.0008327945) + (0.0003579942 * (t_0 * t_2)))));
} else {
tmp = t_1 + (0.5 / x);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
code = ((((((1.0d0 + (0.1049934947d0 * (x * x))) + (0.0424060604d0 * ((x * x) * (x * x)))) + (0.0072644182d0 * (((x * x) * (x * x)) * (x * x)))) + (0.0005064034d0 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0001789971d0 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) / ((((((1.0d0 + (0.7715471019d0 * (x * x))) + (0.2909738639d0 * ((x * x) * (x * x)))) + (0.0694555761d0 * (((x * x) * (x * x)) * (x * x)))) + (0.0140005442d0 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0008327945d0 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) + ((2.0d0 * 0.0001789971d0) * ((((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)) * (x * x))))) * x
end function
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: t_0
real(8) :: t_1
real(8) :: t_2
real(8) :: t_3
real(8) :: tmp
t_0 = x * (x * (x * x))
t_1 = (0.2514179000665374d0 / x) / (x * x)
t_2 = t_0 * t_0
t_3 = (x * x) * t_2
if (x <= (-200.0d0)) then
tmp = t_1 + ((0.5d0 / x) + ((0.15298196345929074d0 / (x ** 5.0d0)) + (11.259630434457211d0 / (x ** 7.0d0))))
else if (x <= 20000.0d0) then
tmp = x * (((((1.0d0 + ((x * x) * 0.1049934947d0)) + (0.0424060604d0 * t_0)) + (0.0072644182d0 * ((x * x) * t_0))) + ((0.0005064034d0 * t_2) + (0.0001789971d0 * t_3))) / ((((1.0d0 + ((x * x) * 0.7715471019d0)) + ((t_0 * 0.2909738639d0) + ((x * x) * (t_0 * 0.0694555761d0)))) + (t_2 * 0.0140005442d0)) + ((t_3 * 0.0008327945d0) + (0.0003579942d0 * (t_0 * t_2)))))
else
tmp = t_1 + (0.5d0 / x)
end if
code = tmp
end function
public static double code(double x) {
return ((((((1.0 + (0.1049934947 * (x * x))) + (0.0424060604 * ((x * x) * (x * x)))) + (0.0072644182 * (((x * x) * (x * x)) * (x * x)))) + (0.0005064034 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0001789971 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) / ((((((1.0 + (0.7715471019 * (x * x))) + (0.2909738639 * ((x * x) * (x * x)))) + (0.0694555761 * (((x * x) * (x * x)) * (x * x)))) + (0.0140005442 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0008327945 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) + ((2.0 * 0.0001789971) * ((((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)) * (x * x))))) * x;
}
public static double code(double x) {
double t_0 = x * (x * (x * x));
double t_1 = (0.2514179000665374 / x) / (x * x);
double t_2 = t_0 * t_0;
double t_3 = (x * x) * t_2;
double tmp;
if (x <= -200.0) {
tmp = t_1 + ((0.5 / x) + ((0.15298196345929074 / Math.pow(x, 5.0)) + (11.259630434457211 / Math.pow(x, 7.0))));
} else if (x <= 20000.0) {
tmp = x * (((((1.0 + ((x * x) * 0.1049934947)) + (0.0424060604 * t_0)) + (0.0072644182 * ((x * x) * t_0))) + ((0.0005064034 * t_2) + (0.0001789971 * t_3))) / ((((1.0 + ((x * x) * 0.7715471019)) + ((t_0 * 0.2909738639) + ((x * x) * (t_0 * 0.0694555761)))) + (t_2 * 0.0140005442)) + ((t_3 * 0.0008327945) + (0.0003579942 * (t_0 * t_2)))));
} else {
tmp = t_1 + (0.5 / x);
}
return tmp;
}
def code(x): return ((((((1.0 + (0.1049934947 * (x * x))) + (0.0424060604 * ((x * x) * (x * x)))) + (0.0072644182 * (((x * x) * (x * x)) * (x * x)))) + (0.0005064034 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0001789971 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) / ((((((1.0 + (0.7715471019 * (x * x))) + (0.2909738639 * ((x * x) * (x * x)))) + (0.0694555761 * (((x * x) * (x * x)) * (x * x)))) + (0.0140005442 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0008327945 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) + ((2.0 * 0.0001789971) * ((((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)) * (x * x))))) * x
def code(x): t_0 = x * (x * (x * x)) t_1 = (0.2514179000665374 / x) / (x * x) t_2 = t_0 * t_0 t_3 = (x * x) * t_2 tmp = 0 if x <= -200.0: tmp = t_1 + ((0.5 / x) + ((0.15298196345929074 / math.pow(x, 5.0)) + (11.259630434457211 / math.pow(x, 7.0)))) elif x <= 20000.0: tmp = x * (((((1.0 + ((x * x) * 0.1049934947)) + (0.0424060604 * t_0)) + (0.0072644182 * ((x * x) * t_0))) + ((0.0005064034 * t_2) + (0.0001789971 * t_3))) / ((((1.0 + ((x * x) * 0.7715471019)) + ((t_0 * 0.2909738639) + ((x * x) * (t_0 * 0.0694555761)))) + (t_2 * 0.0140005442)) + ((t_3 * 0.0008327945) + (0.0003579942 * (t_0 * t_2))))) else: tmp = t_1 + (0.5 / x) return tmp
function code(x) return Float64(Float64(Float64(Float64(Float64(Float64(Float64(1.0 + Float64(0.1049934947 * Float64(x * x))) + Float64(0.0424060604 * Float64(Float64(x * x) * Float64(x * x)))) + Float64(0.0072644182 * Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)))) + Float64(0.0005064034 * Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)))) + Float64(0.0001789971 * Float64(Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)))) / Float64(Float64(Float64(Float64(Float64(Float64(1.0 + Float64(0.7715471019 * Float64(x * x))) + Float64(0.2909738639 * Float64(Float64(x * x) * Float64(x * x)))) + Float64(0.0694555761 * Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)))) + Float64(0.0140005442 * Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)))) + Float64(0.0008327945 * Float64(Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)))) + Float64(Float64(2.0 * 0.0001789971) * Float64(Float64(Float64(Float64(Float64(Float64(x * x) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)) * Float64(x * x)) * Float64(x * x))))) * x) end
function code(x) t_0 = Float64(x * Float64(x * Float64(x * x))) t_1 = Float64(Float64(0.2514179000665374 / x) / Float64(x * x)) t_2 = Float64(t_0 * t_0) t_3 = Float64(Float64(x * x) * t_2) tmp = 0.0 if (x <= -200.0) tmp = Float64(t_1 + Float64(Float64(0.5 / x) + Float64(Float64(0.15298196345929074 / (x ^ 5.0)) + Float64(11.259630434457211 / (x ^ 7.0))))); elseif (x <= 20000.0) tmp = Float64(x * Float64(Float64(Float64(Float64(Float64(1.0 + Float64(Float64(x * x) * 0.1049934947)) + Float64(0.0424060604 * t_0)) + Float64(0.0072644182 * Float64(Float64(x * x) * t_0))) + Float64(Float64(0.0005064034 * t_2) + Float64(0.0001789971 * t_3))) / Float64(Float64(Float64(Float64(1.0 + Float64(Float64(x * x) * 0.7715471019)) + Float64(Float64(t_0 * 0.2909738639) + Float64(Float64(x * x) * Float64(t_0 * 0.0694555761)))) + Float64(t_2 * 0.0140005442)) + Float64(Float64(t_3 * 0.0008327945) + Float64(0.0003579942 * Float64(t_0 * t_2)))))); else tmp = Float64(t_1 + Float64(0.5 / x)); end return tmp end
function tmp = code(x) tmp = ((((((1.0 + (0.1049934947 * (x * x))) + (0.0424060604 * ((x * x) * (x * x)))) + (0.0072644182 * (((x * x) * (x * x)) * (x * x)))) + (0.0005064034 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0001789971 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) / ((((((1.0 + (0.7715471019 * (x * x))) + (0.2909738639 * ((x * x) * (x * x)))) + (0.0694555761 * (((x * x) * (x * x)) * (x * x)))) + (0.0140005442 * ((((x * x) * (x * x)) * (x * x)) * (x * x)))) + (0.0008327945 * (((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)))) + ((2.0 * 0.0001789971) * ((((((x * x) * (x * x)) * (x * x)) * (x * x)) * (x * x)) * (x * x))))) * x; end
function tmp_2 = code(x) t_0 = x * (x * (x * x)); t_1 = (0.2514179000665374 / x) / (x * x); t_2 = t_0 * t_0; t_3 = (x * x) * t_2; tmp = 0.0; if (x <= -200.0) tmp = t_1 + ((0.5 / x) + ((0.15298196345929074 / (x ^ 5.0)) + (11.259630434457211 / (x ^ 7.0)))); elseif (x <= 20000.0) tmp = x * (((((1.0 + ((x * x) * 0.1049934947)) + (0.0424060604 * t_0)) + (0.0072644182 * ((x * x) * t_0))) + ((0.0005064034 * t_2) + (0.0001789971 * t_3))) / ((((1.0 + ((x * x) * 0.7715471019)) + ((t_0 * 0.2909738639) + ((x * x) * (t_0 * 0.0694555761)))) + (t_2 * 0.0140005442)) + ((t_3 * 0.0008327945) + (0.0003579942 * (t_0 * t_2))))); else tmp = t_1 + (0.5 / x); end tmp_2 = tmp; end
code[x_] := N[(N[(N[(N[(N[(N[(N[(1.0 + N[(0.1049934947 * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0424060604 * N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0072644182 * N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0005064034 * N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0001789971 * N[(N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(1.0 + N[(0.7715471019 * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.2909738639 * N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0694555761 * N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0140005442 * N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.0008327945 * N[(N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(2.0 * 0.0001789971), $MachinePrecision] * N[(N[(N[(N[(N[(N[(x * x), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]
code[x_] := Block[{t$95$0 = N[(x * N[(x * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(0.2514179000665374 / x), $MachinePrecision] / N[(x * x), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$0 * t$95$0), $MachinePrecision]}, Block[{t$95$3 = N[(N[(x * x), $MachinePrecision] * t$95$2), $MachinePrecision]}, If[LessEqual[x, -200.0], N[(t$95$1 + N[(N[(0.5 / x), $MachinePrecision] + N[(N[(0.15298196345929074 / N[Power[x, 5.0], $MachinePrecision]), $MachinePrecision] + N[(11.259630434457211 / N[Power[x, 7.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 20000.0], N[(x * N[(N[(N[(N[(N[(1.0 + N[(N[(x * x), $MachinePrecision] * 0.1049934947), $MachinePrecision]), $MachinePrecision] + N[(0.0424060604 * t$95$0), $MachinePrecision]), $MachinePrecision] + N[(0.0072644182 * N[(N[(x * x), $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(0.0005064034 * t$95$2), $MachinePrecision] + N[(0.0001789971 * t$95$3), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(1.0 + N[(N[(x * x), $MachinePrecision] * 0.7715471019), $MachinePrecision]), $MachinePrecision] + N[(N[(t$95$0 * 0.2909738639), $MachinePrecision] + N[(N[(x * x), $MachinePrecision] * N[(t$95$0 * 0.0694555761), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(t$95$2 * 0.0140005442), $MachinePrecision]), $MachinePrecision] + N[(N[(t$95$3 * 0.0008327945), $MachinePrecision] + N[(0.0003579942 * N[(t$95$0 * t$95$2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(t$95$1 + N[(0.5 / x), $MachinePrecision]), $MachinePrecision]]]]]]]
\frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)} \cdot x
\begin{array}{l}
t_0 := x \cdot \left(x \cdot \left(x \cdot x\right)\right)\\
t_1 := \frac{\frac{0.2514179000665374}{x}}{x \cdot x}\\
t_2 := t_0 \cdot t_0\\
t_3 := \left(x \cdot x\right) \cdot t_2\\
\mathbf{if}\;x \leq -200:\\
\;\;\;\;t_1 + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)\\
\mathbf{elif}\;x \leq 20000:\\
\;\;\;\;x \cdot \frac{\left(\left(\left(1 + \left(x \cdot x\right) \cdot 0.1049934947\right) + 0.0424060604 \cdot t_0\right) + 0.0072644182 \cdot \left(\left(x \cdot x\right) \cdot t_0\right)\right) + \left(0.0005064034 \cdot t_2 + 0.0001789971 \cdot t_3\right)}{\left(\left(\left(1 + \left(x \cdot x\right) \cdot 0.7715471019\right) + \left(t_0 \cdot 0.2909738639 + \left(x \cdot x\right) \cdot \left(t_0 \cdot 0.0694555761\right)\right)\right) + t_2 \cdot 0.0140005442\right) + \left(t_3 \cdot 0.0008327945 + 0.0003579942 \cdot \left(t_0 \cdot t_2\right)\right)}\\
\mathbf{else}:\\
\;\;\;\;t_1 + \frac{0.5}{x}\\
\end{array}
Results
if x < -200Initial program 8.5%
Simplified8.5%
[Start]8.5 | \[ \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)} \cdot x
\] |
|---|---|
*-commutative [=>]8.5 | \[ \color{blue}{x \cdot \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}}
\] |
Taylor expanded in x around inf 100.0%
Simplified100.0%
[Start]100.0 | \[ 0.2514179000665374 \cdot \frac{1}{{x}^{3}} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + \left(11.259630434457211 \cdot \frac{1}{{x}^{7}} + 0.5 \cdot \frac{1}{x}\right)\right)
\] |
|---|---|
associate-*r/ [=>]100.0 | \[ \color{blue}{\frac{0.2514179000665374 \cdot 1}{{x}^{3}}} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + \left(11.259630434457211 \cdot \frac{1}{{x}^{7}} + 0.5 \cdot \frac{1}{x}\right)\right)
\] |
metadata-eval [=>]100.0 | \[ \frac{\color{blue}{0.2514179000665374}}{{x}^{3}} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + \left(11.259630434457211 \cdot \frac{1}{{x}^{7}} + 0.5 \cdot \frac{1}{x}\right)\right)
\] |
associate-+r+ [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \color{blue}{\left(\left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right) + 0.5 \cdot \frac{1}{x}\right)}
\] |
+-commutative [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \color{blue}{\left(0.5 \cdot \frac{1}{x} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right)\right)}
\] |
associate-*r/ [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\color{blue}{\frac{0.5 \cdot 1}{x}} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right)\right)
\] |
metadata-eval [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{\color{blue}{0.5}}{x} + \left(0.15298196345929074 \cdot \frac{1}{{x}^{5}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right)\right)
\] |
associate-*r/ [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{0.5}{x} + \left(\color{blue}{\frac{0.15298196345929074 \cdot 1}{{x}^{5}}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right)\right)
\] |
metadata-eval [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{0.5}{x} + \left(\frac{\color{blue}{0.15298196345929074}}{{x}^{5}} + 11.259630434457211 \cdot \frac{1}{{x}^{7}}\right)\right)
\] |
associate-*r/ [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \color{blue}{\frac{11.259630434457211 \cdot 1}{{x}^{7}}}\right)\right)
\] |
metadata-eval [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{\color{blue}{11.259630434457211}}{{x}^{7}}\right)\right)
\] |
Applied egg-rr100.0%
[Start]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
|---|---|
clear-num [=>]100.0 | \[ \color{blue}{\frac{1}{\frac{{x}^{3}}{0.2514179000665374}}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
unpow3 [=>]100.0 | \[ \frac{1}{\frac{\color{blue}{\left(x \cdot x\right) \cdot x}}{0.2514179000665374}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
associate-/l* [=>]100.0 | \[ \frac{1}{\color{blue}{\frac{x \cdot x}{\frac{0.2514179000665374}{x}}}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
associate-/r/ [=>]100.0 | \[ \color{blue}{\frac{1}{x \cdot x} \cdot \frac{0.2514179000665374}{x}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
Applied egg-rr100.0%
[Start]100.0 | \[ \frac{1}{x \cdot x} \cdot \frac{0.2514179000665374}{x} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
|---|---|
associate-*l/ [=>]100.0 | \[ \color{blue}{\frac{1 \cdot \frac{0.2514179000665374}{x}}{x \cdot x}} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
*-un-lft-identity [<=]100.0 | \[ \frac{\color{blue}{\frac{0.2514179000665374}{x}}}{x \cdot x} + \left(\frac{0.5}{x} + \left(\frac{0.15298196345929074}{{x}^{5}} + \frac{11.259630434457211}{{x}^{7}}\right)\right)
\] |
if -200 < x < 2e4Initial program 100.0%
Simplified100.0%
[Start]100.0 | \[ \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)} \cdot x
\] |
|---|---|
*-commutative [=>]100.0 | \[ \color{blue}{x \cdot \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}}
\] |
if 2e4 < x Initial program 7.2%
Simplified7.2%
[Start]7.2 | \[ \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)} \cdot x
\] |
|---|---|
*-commutative [=>]7.2 | \[ \color{blue}{x \cdot \frac{\left(\left(\left(\left(1 + 0.1049934947 \cdot \left(x \cdot x\right)\right) + 0.0424060604 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0072644182 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0005064034 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0001789971 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}{\left(\left(\left(\left(\left(1 + 0.7715471019 \cdot \left(x \cdot x\right)\right) + 0.2909738639 \cdot \left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0694555761 \cdot \left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0140005442 \cdot \left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + 0.0008327945 \cdot \left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)\right) + \left(2 \cdot 0.0001789971\right) \cdot \left(\left(\left(\left(\left(\left(x \cdot x\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right) \cdot \left(x \cdot x\right)\right)}}
\] |
Taylor expanded in x around inf 100.0%
Simplified100.0%
[Start]100.0 | \[ 0.2514179000665374 \cdot \frac{1}{{x}^{3}} + 0.5 \cdot \frac{1}{x}
\] |
|---|---|
associate-*r/ [=>]100.0 | \[ \color{blue}{\frac{0.2514179000665374 \cdot 1}{{x}^{3}}} + 0.5 \cdot \frac{1}{x}
\] |
metadata-eval [=>]100.0 | \[ \frac{\color{blue}{0.2514179000665374}}{{x}^{3}} + 0.5 \cdot \frac{1}{x}
\] |
associate-*r/ [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \color{blue}{\frac{0.5 \cdot 1}{x}}
\] |
metadata-eval [=>]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \frac{\color{blue}{0.5}}{x}
\] |
Applied egg-rr100.0%
[Start]100.0 | \[ \frac{0.2514179000665374}{{x}^{3}} + \frac{0.5}{x}
\] |
|---|---|
clear-num [=>]100.0 | \[ \color{blue}{\frac{1}{\frac{{x}^{3}}{0.2514179000665374}}} + \frac{0.5}{x}
\] |
unpow3 [=>]100.0 | \[ \frac{1}{\frac{\color{blue}{\left(x \cdot x\right) \cdot x}}{0.2514179000665374}} + \frac{0.5}{x}
\] |
associate-/l* [=>]100.0 | \[ \frac{1}{\color{blue}{\frac{x \cdot x}{\frac{0.2514179000665374}{x}}}} + \frac{0.5}{x}
\] |
associate-/r/ [=>]100.0 | \[ \color{blue}{\frac{1}{x \cdot x} \cdot \frac{0.2514179000665374}{x}} + \frac{0.5}{x}
\] |
Applied egg-rr100.0%
[Start]100.0 | \[ \frac{1}{x \cdot x} \cdot \frac{0.2514179000665374}{x} + \frac{0.5}{x}
\] |
|---|---|
associate-*l/ [=>]100.0 | \[ \color{blue}{\frac{1 \cdot \frac{0.2514179000665374}{x}}{x \cdot x}} + \frac{0.5}{x}
\] |
*-un-lft-identity [<=]100.0 | \[ \frac{\color{blue}{\frac{0.2514179000665374}{x}}}{x \cdot x} + \frac{0.5}{x}
\] |
Final simplification100.0%
| Alternative 1 | |
|---|---|
| Accuracy | 100.0% |
| Cost | 11208 |
| Alternative 2 | |
|---|---|
| Accuracy | 99.6% |
| Cost | 7945 |
| Alternative 3 | |
|---|---|
| Accuracy | 99.6% |
| Cost | 7497 |
| Alternative 4 | |
|---|---|
| Accuracy | 99.5% |
| Cost | 969 |
| Alternative 5 | |
|---|---|
| Accuracy | 99.2% |
| Cost | 840 |
| Alternative 6 | |
|---|---|
| Accuracy | 99.2% |
| Cost | 840 |
| Alternative 7 | |
|---|---|
| Accuracy | 99.0% |
| Cost | 456 |
| Alternative 8 | |
|---|---|
| Accuracy | 51.7% |
| Cost | 64 |
herbie shell --seed 2023138
(FPCore (x)
:name "Jmat.Real.dawson"
:precision binary64
(* (/ (+ (+ (+ (+ (+ 1.0 (* 0.1049934947 (* x x))) (* 0.0424060604 (* (* x x) (* x x)))) (* 0.0072644182 (* (* (* x x) (* x x)) (* x x)))) (* 0.0005064034 (* (* (* (* x x) (* x x)) (* x x)) (* x x)))) (* 0.0001789971 (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x)))) (+ (+ (+ (+ (+ (+ 1.0 (* 0.7715471019 (* x x))) (* 0.2909738639 (* (* x x) (* x x)))) (* 0.0694555761 (* (* (* x x) (* x x)) (* x x)))) (* 0.0140005442 (* (* (* (* x x) (* x x)) (* x x)) (* x x)))) (* 0.0008327945 (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x)))) (* (* 2.0 0.0001789971) (* (* (* (* (* (* x x) (* x x)) (* x x)) (* x x)) (* x x)) (* x x))))) x))