
(FPCore (a b angle x-scale y-scale)
:precision binary64
(let* ((t_0 (* (/ angle 180.0) (PI)))
(t_1 (sin t_0))
(t_2 (cos t_0))
(t_3
(/ (/ (+ (pow (* a t_2) 2.0) (pow (* b t_1) 2.0)) y-scale) y-scale))
(t_4
(/ (/ (+ (pow (* a t_1) 2.0) (pow (* b t_2) 2.0)) x-scale) x-scale))
(t_5 (* (* b a) (* b (- a))))
(t_6 (/ (* 4.0 t_5) (pow (* x-scale y-scale) 2.0))))
(/
(-
(sqrt
(*
(* (* 2.0 t_6) t_5)
(-
(+ t_4 t_3)
(sqrt
(+
(pow (- t_4 t_3) 2.0)
(pow
(/
(/ (* (* (* 2.0 (- (pow b 2.0) (pow a 2.0))) t_1) t_2) x-scale)
y-scale)
2.0)))))))
t_6)))\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{angle}{180} \cdot \mathsf{PI}\left(\right)\\
t_1 := \sin t\_0\\
t_2 := \cos t\_0\\
t_3 := \frac{\frac{{\left(a \cdot t\_2\right)}^{2} + {\left(b \cdot t\_1\right)}^{2}}{y-scale}}{y-scale}\\
t_4 := \frac{\frac{{\left(a \cdot t\_1\right)}^{2} + {\left(b \cdot t\_2\right)}^{2}}{x-scale}}{x-scale}\\
t_5 := \left(b \cdot a\right) \cdot \left(b \cdot \left(-a\right)\right)\\
t_6 := \frac{4 \cdot t\_5}{{\left(x-scale \cdot y-scale\right)}^{2}}\\
\frac{-\sqrt{\left(\left(2 \cdot t\_6\right) \cdot t\_5\right) \cdot \left(\left(t\_4 + t\_3\right) - \sqrt{{\left(t\_4 - t\_3\right)}^{2} + {\left(\frac{\frac{\left(\left(2 \cdot \left({b}^{2} - {a}^{2}\right)\right) \cdot t\_1\right) \cdot t\_2}{x-scale}}{y-scale}\right)}^{2}}\right)}}{t\_6}
\end{array}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 2 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (a b angle x-scale y-scale)
:precision binary64
(let* ((t_0 (* (/ angle 180.0) (PI)))
(t_1 (sin t_0))
(t_2 (cos t_0))
(t_3
(/ (/ (+ (pow (* a t_2) 2.0) (pow (* b t_1) 2.0)) y-scale) y-scale))
(t_4
(/ (/ (+ (pow (* a t_1) 2.0) (pow (* b t_2) 2.0)) x-scale) x-scale))
(t_5 (* (* b a) (* b (- a))))
(t_6 (/ (* 4.0 t_5) (pow (* x-scale y-scale) 2.0))))
(/
(-
(sqrt
(*
(* (* 2.0 t_6) t_5)
(-
(+ t_4 t_3)
(sqrt
(+
(pow (- t_4 t_3) 2.0)
(pow
(/
(/ (* (* (* 2.0 (- (pow b 2.0) (pow a 2.0))) t_1) t_2) x-scale)
y-scale)
2.0)))))))
t_6)))\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{angle}{180} \cdot \mathsf{PI}\left(\right)\\
t_1 := \sin t\_0\\
t_2 := \cos t\_0\\
t_3 := \frac{\frac{{\left(a \cdot t\_2\right)}^{2} + {\left(b \cdot t\_1\right)}^{2}}{y-scale}}{y-scale}\\
t_4 := \frac{\frac{{\left(a \cdot t\_1\right)}^{2} + {\left(b \cdot t\_2\right)}^{2}}{x-scale}}{x-scale}\\
t_5 := \left(b \cdot a\right) \cdot \left(b \cdot \left(-a\right)\right)\\
t_6 := \frac{4 \cdot t\_5}{{\left(x-scale \cdot y-scale\right)}^{2}}\\
\frac{-\sqrt{\left(\left(2 \cdot t\_6\right) \cdot t\_5\right) \cdot \left(\left(t\_4 + t\_3\right) - \sqrt{{\left(t\_4 - t\_3\right)}^{2} + {\left(\frac{\frac{\left(\left(2 \cdot \left({b}^{2} - {a}^{2}\right)\right) \cdot t\_1\right) \cdot t\_2}{x-scale}}{y-scale}\right)}^{2}}\right)}}{t\_6}
\end{array}
\end{array}
x-scale_m = (fabs.f64 x-scale) b_m = (fabs.f64 b) a_m = (fabs.f64 a) (FPCore (a_m b_m angle x-scale_m y-scale) :precision binary64 (if (<= b_m 4.5e-47) (* (sqrt 0.0) (* (* (sqrt 8.0) y-scale) 0.25)) (* x-scale_m a_m)))
x-scale_m = fabs(x_45_scale);
b_m = fabs(b);
a_m = fabs(a);
double code(double a_m, double b_m, double angle, double x_45_scale_m, double y_45_scale) {
double tmp;
if (b_m <= 4.5e-47) {
tmp = sqrt(0.0) * ((sqrt(8.0) * y_45_scale) * 0.25);
} else {
tmp = x_45_scale_m * a_m;
}
return tmp;
}
x-scale_m = abs(x_45scale)
b_m = abs(b)
a_m = abs(a)
real(8) function code(a_m, b_m, angle, x_45scale_m, y_45scale)
real(8), intent (in) :: a_m
real(8), intent (in) :: b_m
real(8), intent (in) :: angle
real(8), intent (in) :: x_45scale_m
real(8), intent (in) :: y_45scale
real(8) :: tmp
if (b_m <= 4.5d-47) then
tmp = sqrt(0.0d0) * ((sqrt(8.0d0) * y_45scale) * 0.25d0)
else
tmp = x_45scale_m * a_m
end if
code = tmp
end function
x-scale_m = Math.abs(x_45_scale);
b_m = Math.abs(b);
a_m = Math.abs(a);
public static double code(double a_m, double b_m, double angle, double x_45_scale_m, double y_45_scale) {
double tmp;
if (b_m <= 4.5e-47) {
tmp = Math.sqrt(0.0) * ((Math.sqrt(8.0) * y_45_scale) * 0.25);
} else {
tmp = x_45_scale_m * a_m;
}
return tmp;
}
x-scale_m = math.fabs(x_45_scale) b_m = math.fabs(b) a_m = math.fabs(a) def code(a_m, b_m, angle, x_45_scale_m, y_45_scale): tmp = 0 if b_m <= 4.5e-47: tmp = math.sqrt(0.0) * ((math.sqrt(8.0) * y_45_scale) * 0.25) else: tmp = x_45_scale_m * a_m return tmp
x-scale_m = abs(x_45_scale) b_m = abs(b) a_m = abs(a) function code(a_m, b_m, angle, x_45_scale_m, y_45_scale) tmp = 0.0 if (b_m <= 4.5e-47) tmp = Float64(sqrt(0.0) * Float64(Float64(sqrt(8.0) * y_45_scale) * 0.25)); else tmp = Float64(x_45_scale_m * a_m); end return tmp end
x-scale_m = abs(x_45_scale); b_m = abs(b); a_m = abs(a); function tmp_2 = code(a_m, b_m, angle, x_45_scale_m, y_45_scale) tmp = 0.0; if (b_m <= 4.5e-47) tmp = sqrt(0.0) * ((sqrt(8.0) * y_45_scale) * 0.25); else tmp = x_45_scale_m * a_m; end tmp_2 = tmp; end
x-scale_m = N[Abs[x$45$scale], $MachinePrecision] b_m = N[Abs[b], $MachinePrecision] a_m = N[Abs[a], $MachinePrecision] code[a$95$m_, b$95$m_, angle_, x$45$scale$95$m_, y$45$scale_] := If[LessEqual[b$95$m, 4.5e-47], N[(N[Sqrt[0.0], $MachinePrecision] * N[(N[(N[Sqrt[8.0], $MachinePrecision] * y$45$scale), $MachinePrecision] * 0.25), $MachinePrecision]), $MachinePrecision], N[(x$45$scale$95$m * a$95$m), $MachinePrecision]]
\begin{array}{l}
x-scale_m = \left|x-scale\right|
\\
b_m = \left|b\right|
\\
a_m = \left|a\right|
\\
\begin{array}{l}
\mathbf{if}\;b\_m \leq 4.5 \cdot 10^{-47}:\\
\;\;\;\;\sqrt{0} \cdot \left(\left(\sqrt{8} \cdot y-scale\right) \cdot 0.25\right)\\
\mathbf{else}:\\
\;\;\;\;x-scale\_m \cdot a\_m\\
\end{array}
\end{array}
if b < 4.5e-47Initial program 0.1%
Taylor expanded in angle around 0
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
lower-sqrt.f64N/A
lower-sqrt.f6425.5
Applied rewrites25.5%
Taylor expanded in a around 0
Applied rewrites6.4%
Taylor expanded in x-scale around inf
Applied rewrites0.7%
Taylor expanded in angle around 0
Applied rewrites31.4%
if 4.5e-47 < b Initial program 0.1%
Taylor expanded in angle around 0
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
lower-sqrt.f64N/A
lower-sqrt.f6429.1
Applied rewrites29.1%
Applied rewrites29.3%
Taylor expanded in a around 0
Applied rewrites29.3%
Final simplification30.8%
x-scale_m = (fabs.f64 x-scale) b_m = (fabs.f64 b) a_m = (fabs.f64 a) (FPCore (a_m b_m angle x-scale_m y-scale) :precision binary64 (* x-scale_m a_m))
x-scale_m = fabs(x_45_scale);
b_m = fabs(b);
a_m = fabs(a);
double code(double a_m, double b_m, double angle, double x_45_scale_m, double y_45_scale) {
return x_45_scale_m * a_m;
}
x-scale_m = abs(x_45scale)
b_m = abs(b)
a_m = abs(a)
real(8) function code(a_m, b_m, angle, x_45scale_m, y_45scale)
real(8), intent (in) :: a_m
real(8), intent (in) :: b_m
real(8), intent (in) :: angle
real(8), intent (in) :: x_45scale_m
real(8), intent (in) :: y_45scale
code = x_45scale_m * a_m
end function
x-scale_m = Math.abs(x_45_scale);
b_m = Math.abs(b);
a_m = Math.abs(a);
public static double code(double a_m, double b_m, double angle, double x_45_scale_m, double y_45_scale) {
return x_45_scale_m * a_m;
}
x-scale_m = math.fabs(x_45_scale) b_m = math.fabs(b) a_m = math.fabs(a) def code(a_m, b_m, angle, x_45_scale_m, y_45_scale): return x_45_scale_m * a_m
x-scale_m = abs(x_45_scale) b_m = abs(b) a_m = abs(a) function code(a_m, b_m, angle, x_45_scale_m, y_45_scale) return Float64(x_45_scale_m * a_m) end
x-scale_m = abs(x_45_scale); b_m = abs(b); a_m = abs(a); function tmp = code(a_m, b_m, angle, x_45_scale_m, y_45_scale) tmp = x_45_scale_m * a_m; end
x-scale_m = N[Abs[x$45$scale], $MachinePrecision] b_m = N[Abs[b], $MachinePrecision] a_m = N[Abs[a], $MachinePrecision] code[a$95$m_, b$95$m_, angle_, x$45$scale$95$m_, y$45$scale_] := N[(x$45$scale$95$m * a$95$m), $MachinePrecision]
\begin{array}{l}
x-scale_m = \left|x-scale\right|
\\
b_m = \left|b\right|
\\
a_m = \left|a\right|
\\
x-scale\_m \cdot a\_m
\end{array}
Initial program 0.1%
Taylor expanded in angle around 0
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
associate-*r*N/A
lower-*.f64N/A
lower-*.f64N/A
lower-sqrt.f64N/A
lower-sqrt.f6426.5
Applied rewrites26.5%
Applied rewrites26.6%
Taylor expanded in a around 0
Applied rewrites26.6%
Final simplification26.6%
herbie shell --seed 2024251
(FPCore (a b angle x-scale y-scale)
:name "b from scale-rotated-ellipse"
:precision binary64
(/ (- (sqrt (* (* (* 2.0 (/ (* 4.0 (* (* b a) (* b (- a)))) (pow (* x-scale y-scale) 2.0))) (* (* b a) (* b (- a)))) (- (+ (/ (/ (+ (pow (* a (sin (* (/ angle 180.0) (PI)))) 2.0) (pow (* b (cos (* (/ angle 180.0) (PI)))) 2.0)) x-scale) x-scale) (/ (/ (+ (pow (* a (cos (* (/ angle 180.0) (PI)))) 2.0) (pow (* b (sin (* (/ angle 180.0) (PI)))) 2.0)) y-scale) y-scale)) (sqrt (+ (pow (- (/ (/ (+ (pow (* a (sin (* (/ angle 180.0) (PI)))) 2.0) (pow (* b (cos (* (/ angle 180.0) (PI)))) 2.0)) x-scale) x-scale) (/ (/ (+ (pow (* a (cos (* (/ angle 180.0) (PI)))) 2.0) (pow (* b (sin (* (/ angle 180.0) (PI)))) 2.0)) y-scale) y-scale)) 2.0) (pow (/ (/ (* (* (* 2.0 (- (pow b 2.0) (pow a 2.0))) (sin (* (/ angle 180.0) (PI)))) (cos (* (/ angle 180.0) (PI)))) x-scale) y-scale) 2.0))))))) (/ (* 4.0 (* (* b a) (* b (- a)))) (pow (* x-scale y-scale) 2.0))))