
(FPCore (eh ew t) :precision binary64 (let* ((t_1 (atan (/ (/ eh ew) (tan t))))) (fabs (+ (* (* ew (sin t)) (cos t_1)) (* (* eh (cos t)) (sin t_1))))))
double code(double eh, double ew, double t) {
double t_1 = atan(((eh / ew) / tan(t)));
return fabs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
real(8) :: t_1
t_1 = atan(((eh / ew) / tan(t)))
code = abs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1))))
end function
public static double code(double eh, double ew, double t) {
double t_1 = Math.atan(((eh / ew) / Math.tan(t)));
return Math.abs((((ew * Math.sin(t)) * Math.cos(t_1)) + ((eh * Math.cos(t)) * Math.sin(t_1))));
}
def code(eh, ew, t): t_1 = math.atan(((eh / ew) / math.tan(t))) return math.fabs((((ew * math.sin(t)) * math.cos(t_1)) + ((eh * math.cos(t)) * math.sin(t_1))))
function code(eh, ew, t) t_1 = atan(Float64(Float64(eh / ew) / tan(t))) return abs(Float64(Float64(Float64(ew * sin(t)) * cos(t_1)) + Float64(Float64(eh * cos(t)) * sin(t_1)))) end
function tmp = code(eh, ew, t) t_1 = atan(((eh / ew) / tan(t))); tmp = abs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1)))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Cos[t$95$1], $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[t$95$1], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right)\\
\left|\left(ew \cdot \sin t\right) \cdot \cos t_1 + \left(eh \cdot \cos t\right) \cdot \sin t_1\right|
\end{array}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 9 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (eh ew t) :precision binary64 (let* ((t_1 (atan (/ (/ eh ew) (tan t))))) (fabs (+ (* (* ew (sin t)) (cos t_1)) (* (* eh (cos t)) (sin t_1))))))
double code(double eh, double ew, double t) {
double t_1 = atan(((eh / ew) / tan(t)));
return fabs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
real(8) :: t_1
t_1 = atan(((eh / ew) / tan(t)))
code = abs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1))))
end function
public static double code(double eh, double ew, double t) {
double t_1 = Math.atan(((eh / ew) / Math.tan(t)));
return Math.abs((((ew * Math.sin(t)) * Math.cos(t_1)) + ((eh * Math.cos(t)) * Math.sin(t_1))));
}
def code(eh, ew, t): t_1 = math.atan(((eh / ew) / math.tan(t))) return math.fabs((((ew * math.sin(t)) * math.cos(t_1)) + ((eh * math.cos(t)) * math.sin(t_1))))
function code(eh, ew, t) t_1 = atan(Float64(Float64(eh / ew) / tan(t))) return abs(Float64(Float64(Float64(ew * sin(t)) * cos(t_1)) + Float64(Float64(eh * cos(t)) * sin(t_1)))) end
function tmp = code(eh, ew, t) t_1 = atan(((eh / ew) / tan(t))); tmp = abs((((ew * sin(t)) * cos(t_1)) + ((eh * cos(t)) * sin(t_1)))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Cos[t$95$1], $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[t$95$1], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right)\\
\left|\left(ew \cdot \sin t\right) \cdot \cos t_1 + \left(eh \cdot \cos t\right) \cdot \sin t_1\right|
\end{array}
\end{array}
(FPCore (eh ew t)
:precision binary64
(let* ((t_1 (/ (/ eh ew) (tan t))))
(fabs
(+
(* (* ew (sin t)) (pow (/ 1.0 (sqrt (hypot 1.0 t_1))) 2.0))
(* (* eh (cos t)) (sin (atan t_1)))))))
double code(double eh, double ew, double t) {
double t_1 = (eh / ew) / tan(t);
return fabs((((ew * sin(t)) * pow((1.0 / sqrt(hypot(1.0, t_1))), 2.0)) + ((eh * cos(t)) * sin(atan(t_1)))));
}
public static double code(double eh, double ew, double t) {
double t_1 = (eh / ew) / Math.tan(t);
return Math.abs((((ew * Math.sin(t)) * Math.pow((1.0 / Math.sqrt(Math.hypot(1.0, t_1))), 2.0)) + ((eh * Math.cos(t)) * Math.sin(Math.atan(t_1)))));
}
def code(eh, ew, t): t_1 = (eh / ew) / math.tan(t) return math.fabs((((ew * math.sin(t)) * math.pow((1.0 / math.sqrt(math.hypot(1.0, t_1))), 2.0)) + ((eh * math.cos(t)) * math.sin(math.atan(t_1)))))
function code(eh, ew, t) t_1 = Float64(Float64(eh / ew) / tan(t)) return abs(Float64(Float64(Float64(ew * sin(t)) * (Float64(1.0 / sqrt(hypot(1.0, t_1))) ^ 2.0)) + Float64(Float64(eh * cos(t)) * sin(atan(t_1))))) end
function tmp = code(eh, ew, t) t_1 = (eh / ew) / tan(t); tmp = abs((((ew * sin(t)) * ((1.0 / sqrt(hypot(1.0, t_1))) ^ 2.0)) + ((eh * cos(t)) * sin(atan(t_1))))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Power[N[(1.0 / N[Sqrt[N[Sqrt[1.0 ^ 2 + t$95$1 ^ 2], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[t$95$1], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \frac{\frac{eh}{ew}}{\tan t}\\
\left|\left(ew \cdot \sin t\right) \cdot {\left(\frac{1}{\sqrt{\mathsf{hypot}\left(1, t_1\right)}}\right)}^{2} + \left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} t_1\right|
\end{array}
\end{array}
Initial program 99.8%
add-sqr-sqrt99.8%
pow299.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
cos-atan99.8%
sqrt-div99.8%
metadata-eval99.8%
hypot-1-def99.8%
associate-/r*99.8%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* (* eh (cos t)) (sin (atan (/ (/ eh ew) (tan t))))) (* (* ew (sin t)) (pow (pow (hypot 1.0 (/ (/ eh (tan t)) ew)) -0.5) 2.0)))))
double code(double eh, double ew, double t) {
return fabs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * pow(pow(hypot(1.0, ((eh / tan(t)) / ew)), -0.5), 2.0))));
}
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.cos(t)) * Math.sin(Math.atan(((eh / ew) / Math.tan(t))))) + ((ew * Math.sin(t)) * Math.pow(Math.pow(Math.hypot(1.0, ((eh / Math.tan(t)) / ew)), -0.5), 2.0))));
}
def code(eh, ew, t): return math.fabs((((eh * math.cos(t)) * math.sin(math.atan(((eh / ew) / math.tan(t))))) + ((ew * math.sin(t)) * math.pow(math.pow(math.hypot(1.0, ((eh / math.tan(t)) / ew)), -0.5), 2.0))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(eh / ew) / tan(t))))) + Float64(Float64(ew * sin(t)) * ((hypot(1.0, Float64(Float64(eh / tan(t)) / ew)) ^ -0.5) ^ 2.0)))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * ((hypot(1.0, ((eh / tan(t)) / ew)) ^ -0.5) ^ 2.0)))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[Power[N[Power[N[Sqrt[1.0 ^ 2 + N[(N[(eh / N[Tan[t], $MachinePrecision]), $MachinePrecision] / ew), $MachinePrecision] ^ 2], $MachinePrecision], -0.5], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right) + \left(ew \cdot \sin t\right) \cdot {\left({\left(\mathsf{hypot}\left(1, \frac{\frac{eh}{\tan t}}{ew}\right)\right)}^{-0.5}\right)}^{2}\right|
\end{array}
Initial program 99.8%
add-sqr-sqrt99.8%
pow299.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
cos-atan99.8%
sqrt-div99.8%
metadata-eval99.8%
hypot-1-def99.8%
associate-/r*99.8%
Applied egg-rr99.8%
expm1-log1p-u99.8%
expm1-udef99.8%
inv-pow99.8%
sqrt-pow299.8%
associate-/r*99.8%
metadata-eval99.8%
Applied egg-rr99.8%
expm1-def99.8%
expm1-log1p99.8%
*-commutative99.8%
associate-/r*99.8%
Simplified99.8%
Final simplification99.8%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* (* eh (cos t)) (sin (atan (/ (/ eh ew) (tan t))))) (* (* ew (sin t)) (/ 1.0 (hypot 1.0 (/ eh (* ew (tan t)))))))))
double code(double eh, double ew, double t) {
return fabs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * (1.0 / hypot(1.0, (eh / (ew * tan(t))))))));
}
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.cos(t)) * Math.sin(Math.atan(((eh / ew) / Math.tan(t))))) + ((ew * Math.sin(t)) * (1.0 / Math.hypot(1.0, (eh / (ew * Math.tan(t))))))));
}
def code(eh, ew, t): return math.fabs((((eh * math.cos(t)) * math.sin(math.atan(((eh / ew) / math.tan(t))))) + ((ew * math.sin(t)) * (1.0 / math.hypot(1.0, (eh / (ew * math.tan(t))))))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(eh / ew) / tan(t))))) + Float64(Float64(ew * sin(t)) * Float64(1.0 / hypot(1.0, Float64(eh / Float64(ew * tan(t)))))))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * (1.0 / hypot(1.0, (eh / (ew * tan(t)))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[(1.0 / N[Sqrt[1.0 ^ 2 + N[(eh / N[(ew * N[Tan[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right) + \left(ew \cdot \sin t\right) \cdot \frac{1}{\mathsf{hypot}\left(1, \frac{eh}{ew \cdot \tan t}\right)}\right|
\end{array}
Initial program 99.8%
cos-atan99.8%
hypot-1-def99.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
Final simplification99.8%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* (* eh (cos t)) (sin (atan (/ (/ eh ew) (tan t))))) (* (* ew (sin t)) (/ 1.0 (hypot 1.0 (/ eh (* ew t))))))))
double code(double eh, double ew, double t) {
return fabs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * (1.0 / hypot(1.0, (eh / (ew * t)))))));
}
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.cos(t)) * Math.sin(Math.atan(((eh / ew) / Math.tan(t))))) + ((ew * Math.sin(t)) * (1.0 / Math.hypot(1.0, (eh / (ew * t)))))));
}
def code(eh, ew, t): return math.fabs((((eh * math.cos(t)) * math.sin(math.atan(((eh / ew) / math.tan(t))))) + ((ew * math.sin(t)) * (1.0 / math.hypot(1.0, (eh / (ew * t)))))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(eh / ew) / tan(t))))) + Float64(Float64(ew * sin(t)) * Float64(1.0 / hypot(1.0, Float64(eh / Float64(ew * t))))))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))) + ((ew * sin(t)) * (1.0 / hypot(1.0, (eh / (ew * t))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[(1.0 / N[Sqrt[1.0 ^ 2 + N[(eh / N[(ew * t), $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right) + \left(ew \cdot \sin t\right) \cdot \frac{1}{\mathsf{hypot}\left(1, \frac{eh}{ew \cdot t}\right)}\right|
\end{array}
Initial program 99.8%
cos-atan99.8%
hypot-1-def99.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
Taylor expanded in t around 0 99.0%
*-commutative94.9%
Simplified99.0%
Final simplification99.0%
(FPCore (eh ew t)
:precision binary64
(let* ((t_1 (/ eh (* ew t))))
(fabs
(+
(* (* ew (sin t)) (/ 1.0 (hypot 1.0 t_1)))
(*
(* eh (cos t))
(sin (atan (+ (* -0.3333333333333333 (/ (* t eh) ew)) t_1))))))))
double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
return fabs((((ew * sin(t)) * (1.0 / hypot(1.0, t_1))) + ((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1))))));
}
public static double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
return Math.abs((((ew * Math.sin(t)) * (1.0 / Math.hypot(1.0, t_1))) + ((eh * Math.cos(t)) * Math.sin(Math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1))))));
}
def code(eh, ew, t): t_1 = eh / (ew * t) return math.fabs((((ew * math.sin(t)) * (1.0 / math.hypot(1.0, t_1))) + ((eh * math.cos(t)) * math.sin(math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1))))))
function code(eh, ew, t) t_1 = Float64(eh / Float64(ew * t)) return abs(Float64(Float64(Float64(ew * sin(t)) * Float64(1.0 / hypot(1.0, t_1))) + Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(-0.3333333333333333 * Float64(Float64(t * eh) / ew)) + t_1)))))) end
function tmp = code(eh, ew, t) t_1 = eh / (ew * t); tmp = abs((((ew * sin(t)) * (1.0 / hypot(1.0, t_1))) + ((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))))); end
code[eh_, ew_, t_] := Block[{t$95$1 = N[(eh / N[(ew * t), $MachinePrecision]), $MachinePrecision]}, N[Abs[N[(N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] * N[(1.0 / N[Sqrt[1.0 ^ 2 + t$95$1 ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(-0.3333333333333333 * N[(N[(t * eh), $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \frac{eh}{ew \cdot t}\\
\left|\left(ew \cdot \sin t\right) \cdot \frac{1}{\mathsf{hypot}\left(1, t_1\right)} + \left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(-0.3333333333333333 \cdot \frac{t \cdot eh}{ew} + t_1\right)\right|
\end{array}
\end{array}
Initial program 99.8%
cos-atan99.8%
hypot-1-def99.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
Taylor expanded in t around 0 95.4%
Taylor expanded in t around 0 94.9%
*-commutative94.9%
Simplified94.9%
Final simplification94.9%
(FPCore (eh ew t) :precision binary64 (fabs (+ (* ew (sin t)) (* (* eh (cos t)) (sin (atan (/ (/ eh ew) (tan t))))))))
double code(double eh, double ew, double t) {
return fabs(((ew * sin(t)) + ((eh * cos(t)) * sin(atan(((eh / ew) / tan(t)))))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs(((ew * sin(t)) + ((eh * cos(t)) * sin(atan(((eh / ew) / tan(t)))))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs(((ew * Math.sin(t)) + ((eh * Math.cos(t)) * Math.sin(Math.atan(((eh / ew) / Math.tan(t)))))));
}
def code(eh, ew, t): return math.fabs(((ew * math.sin(t)) + ((eh * math.cos(t)) * math.sin(math.atan(((eh / ew) / math.tan(t)))))))
function code(eh, ew, t) return abs(Float64(Float64(ew * sin(t)) + Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(eh / ew) / tan(t))))))) end
function tmp = code(eh, ew, t) tmp = abs(((ew * sin(t)) + ((eh * cos(t)) * sin(atan(((eh / ew) / tan(t))))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|ew \cdot \sin t + \left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(\frac{\frac{eh}{ew}}{\tan t}\right)\right|
\end{array}
Initial program 99.8%
add-sqr-sqrt99.8%
pow299.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
cos-atan99.8%
sqrt-div99.8%
metadata-eval99.8%
hypot-1-def99.8%
associate-/r*99.8%
Applied egg-rr99.8%
expm1-log1p-u99.8%
expm1-udef99.8%
inv-pow99.8%
sqrt-pow299.8%
associate-/r*99.8%
metadata-eval99.8%
Applied egg-rr99.8%
expm1-def99.8%
expm1-log1p99.8%
*-commutative99.8%
associate-/r*99.8%
Simplified99.8%
Taylor expanded in eh around 0 98.2%
Final simplification98.2%
(FPCore (eh ew t)
:precision binary64
(let* ((t_1 (/ eh (* ew t))))
(if (or (<= t -5e-7) (not (<= t 6.8e-6)))
(fabs
(+
(* ew (sin t))
(*
(* eh (cos t))
(sin (atan (+ (* -0.3333333333333333 (/ (* t eh) ew)) t_1))))))
(fabs
(+
(* ew (* t (/ 1.0 (hypot 1.0 (/ (/ eh ew) (tan t))))))
(* eh (sin (atan t_1))))))))
double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
double tmp;
if ((t <= -5e-7) || !(t <= 6.8e-6)) {
tmp = fabs(((ew * sin(t)) + ((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1))))));
} else {
tmp = fabs(((ew * (t * (1.0 / hypot(1.0, ((eh / ew) / tan(t)))))) + (eh * sin(atan(t_1)))));
}
return tmp;
}
public static double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
double tmp;
if ((t <= -5e-7) || !(t <= 6.8e-6)) {
tmp = Math.abs(((ew * Math.sin(t)) + ((eh * Math.cos(t)) * Math.sin(Math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1))))));
} else {
tmp = Math.abs(((ew * (t * (1.0 / Math.hypot(1.0, ((eh / ew) / Math.tan(t)))))) + (eh * Math.sin(Math.atan(t_1)))));
}
return tmp;
}
def code(eh, ew, t): t_1 = eh / (ew * t) tmp = 0 if (t <= -5e-7) or not (t <= 6.8e-6): tmp = math.fabs(((ew * math.sin(t)) + ((eh * math.cos(t)) * math.sin(math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))))) else: tmp = math.fabs(((ew * (t * (1.0 / math.hypot(1.0, ((eh / ew) / math.tan(t)))))) + (eh * math.sin(math.atan(t_1))))) return tmp
function code(eh, ew, t) t_1 = Float64(eh / Float64(ew * t)) tmp = 0.0 if ((t <= -5e-7) || !(t <= 6.8e-6)) tmp = abs(Float64(Float64(ew * sin(t)) + Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(-0.3333333333333333 * Float64(Float64(t * eh) / ew)) + t_1)))))); else tmp = abs(Float64(Float64(ew * Float64(t * Float64(1.0 / hypot(1.0, Float64(Float64(eh / ew) / tan(t)))))) + Float64(eh * sin(atan(t_1))))); end return tmp end
function tmp_2 = code(eh, ew, t) t_1 = eh / (ew * t); tmp = 0.0; if ((t <= -5e-7) || ~((t <= 6.8e-6))) tmp = abs(((ew * sin(t)) + ((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))))); else tmp = abs(((ew * (t * (1.0 / hypot(1.0, ((eh / ew) / tan(t)))))) + (eh * sin(atan(t_1))))); end tmp_2 = tmp; end
code[eh_, ew_, t_] := Block[{t$95$1 = N[(eh / N[(ew * t), $MachinePrecision]), $MachinePrecision]}, If[Or[LessEqual[t, -5e-7], N[Not[LessEqual[t, 6.8e-6]], $MachinePrecision]], N[Abs[N[(N[(ew * N[Sin[t], $MachinePrecision]), $MachinePrecision] + N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(-0.3333333333333333 * N[(N[(t * eh), $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Abs[N[(N[(ew * N[(t * N[(1.0 / N[Sqrt[1.0 ^ 2 + N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(eh * N[Sin[N[ArcTan[t$95$1], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \frac{eh}{ew \cdot t}\\
\mathbf{if}\;t \leq -5 \cdot 10^{-7} \lor \neg \left(t \leq 6.8 \cdot 10^{-6}\right):\\
\;\;\;\;\left|ew \cdot \sin t + \left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(-0.3333333333333333 \cdot \frac{t \cdot eh}{ew} + t_1\right)\right|\\
\mathbf{else}:\\
\;\;\;\;\left|ew \cdot \left(t \cdot \frac{1}{\mathsf{hypot}\left(1, \frac{\frac{eh}{ew}}{\tan t}\right)}\right) + eh \cdot \sin \tan^{-1} t_1\right|\\
\end{array}
\end{array}
if t < -4.99999999999999977e-7 or 6.80000000000000012e-6 < t Initial program 99.6%
cos-atan99.6%
hypot-1-def99.6%
associate-/l/99.6%
*-commutative99.6%
Applied egg-rr99.6%
Taylor expanded in t around 0 96.3%
Taylor expanded in t around 0 79.1%
Taylor expanded in ew around inf 95.3%
if -4.99999999999999977e-7 < t < 6.80000000000000012e-6Initial program 100.0%
Taylor expanded in t around 0 99.8%
Taylor expanded in t around 0 99.8%
Taylor expanded in t around 0 99.8%
cos-atan99.8%
hypot-1-def99.8%
associate-/r*99.8%
Applied egg-rr99.8%
Final simplification97.5%
(FPCore (eh ew t)
:precision binary64
(let* ((t_1 (/ eh (* ew t))))
(if (or (<= t -21.0) (not (<= t 170000000.0)))
(fabs
(+
(*
(* eh (cos t))
(sin (atan (+ (* -0.3333333333333333 (/ (* t eh) ew)) t_1))))
(/ (* ew ew) (/ eh (* t t)))))
(fabs
(+
(* ew (* t (/ 1.0 (hypot 1.0 (/ (/ eh ew) (tan t))))))
(* eh (sin (atan t_1))))))))
double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
double tmp;
if ((t <= -21.0) || !(t <= 170000000.0)) {
tmp = fabs((((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))) + ((ew * ew) / (eh / (t * t)))));
} else {
tmp = fabs(((ew * (t * (1.0 / hypot(1.0, ((eh / ew) / tan(t)))))) + (eh * sin(atan(t_1)))));
}
return tmp;
}
public static double code(double eh, double ew, double t) {
double t_1 = eh / (ew * t);
double tmp;
if ((t <= -21.0) || !(t <= 170000000.0)) {
tmp = Math.abs((((eh * Math.cos(t)) * Math.sin(Math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))) + ((ew * ew) / (eh / (t * t)))));
} else {
tmp = Math.abs(((ew * (t * (1.0 / Math.hypot(1.0, ((eh / ew) / Math.tan(t)))))) + (eh * Math.sin(Math.atan(t_1)))));
}
return tmp;
}
def code(eh, ew, t): t_1 = eh / (ew * t) tmp = 0 if (t <= -21.0) or not (t <= 170000000.0): tmp = math.fabs((((eh * math.cos(t)) * math.sin(math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))) + ((ew * ew) / (eh / (t * t))))) else: tmp = math.fabs(((ew * (t * (1.0 / math.hypot(1.0, ((eh / ew) / math.tan(t)))))) + (eh * math.sin(math.atan(t_1))))) return tmp
function code(eh, ew, t) t_1 = Float64(eh / Float64(ew * t)) tmp = 0.0 if ((t <= -21.0) || !(t <= 170000000.0)) tmp = abs(Float64(Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(-0.3333333333333333 * Float64(Float64(t * eh) / ew)) + t_1)))) + Float64(Float64(ew * ew) / Float64(eh / Float64(t * t))))); else tmp = abs(Float64(Float64(ew * Float64(t * Float64(1.0 / hypot(1.0, Float64(Float64(eh / ew) / tan(t)))))) + Float64(eh * sin(atan(t_1))))); end return tmp end
function tmp_2 = code(eh, ew, t) t_1 = eh / (ew * t); tmp = 0.0; if ((t <= -21.0) || ~((t <= 170000000.0))) tmp = abs((((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + t_1)))) + ((ew * ew) / (eh / (t * t))))); else tmp = abs(((ew * (t * (1.0 / hypot(1.0, ((eh / ew) / tan(t)))))) + (eh * sin(atan(t_1))))); end tmp_2 = tmp; end
code[eh_, ew_, t_] := Block[{t$95$1 = N[(eh / N[(ew * t), $MachinePrecision]), $MachinePrecision]}, If[Or[LessEqual[t, -21.0], N[Not[LessEqual[t, 170000000.0]], $MachinePrecision]], N[Abs[N[(N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(-0.3333333333333333 * N[(N[(t * eh), $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(N[(ew * ew), $MachinePrecision] / N[(eh / N[(t * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Abs[N[(N[(ew * N[(t * N[(1.0 / N[Sqrt[1.0 ^ 2 + N[(N[(eh / ew), $MachinePrecision] / N[Tan[t], $MachinePrecision]), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(eh * N[Sin[N[ArcTan[t$95$1], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \frac{eh}{ew \cdot t}\\
\mathbf{if}\;t \leq -21 \lor \neg \left(t \leq 170000000\right):\\
\;\;\;\;\left|\left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(-0.3333333333333333 \cdot \frac{t \cdot eh}{ew} + t_1\right) + \frac{ew \cdot ew}{\frac{eh}{t \cdot t}}\right|\\
\mathbf{else}:\\
\;\;\;\;\left|ew \cdot \left(t \cdot \frac{1}{\mathsf{hypot}\left(1, \frac{\frac{eh}{ew}}{\tan t}\right)}\right) + eh \cdot \sin \tan^{-1} t_1\right|\\
\end{array}
\end{array}
if t < -21 or 1.7e8 < t Initial program 99.6%
cos-atan99.6%
hypot-1-def99.6%
associate-/l/99.6%
*-commutative99.6%
Applied egg-rr99.6%
Taylor expanded in t around 0 97.7%
Taylor expanded in t around 0 79.6%
Taylor expanded in t around 0 32.8%
associate-/l*29.6%
unpow229.6%
unpow229.6%
Simplified29.6%
if -21 < t < 1.7e8Initial program 99.9%
Taylor expanded in t around 0 97.7%
Taylor expanded in t around 0 96.2%
Taylor expanded in t around 0 96.2%
cos-atan96.2%
hypot-1-def96.2%
associate-/r*96.2%
Applied egg-rr96.2%
Final simplification64.5%
(FPCore (eh ew t)
:precision binary64
(fabs
(+
(*
(* eh (cos t))
(sin (atan (+ (* -0.3333333333333333 (/ (* t eh) ew)) (/ eh (* ew t))))))
(/ (* ew ew) (/ eh (* t t))))))
double code(double eh, double ew, double t) {
return fabs((((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + (eh / (ew * t)))))) + ((ew * ew) / (eh / (t * t)))));
}
real(8) function code(eh, ew, t)
real(8), intent (in) :: eh
real(8), intent (in) :: ew
real(8), intent (in) :: t
code = abs((((eh * cos(t)) * sin(atan((((-0.3333333333333333d0) * ((t * eh) / ew)) + (eh / (ew * t)))))) + ((ew * ew) / (eh / (t * t)))))
end function
public static double code(double eh, double ew, double t) {
return Math.abs((((eh * Math.cos(t)) * Math.sin(Math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + (eh / (ew * t)))))) + ((ew * ew) / (eh / (t * t)))));
}
def code(eh, ew, t): return math.fabs((((eh * math.cos(t)) * math.sin(math.atan(((-0.3333333333333333 * ((t * eh) / ew)) + (eh / (ew * t)))))) + ((ew * ew) / (eh / (t * t)))))
function code(eh, ew, t) return abs(Float64(Float64(Float64(eh * cos(t)) * sin(atan(Float64(Float64(-0.3333333333333333 * Float64(Float64(t * eh) / ew)) + Float64(eh / Float64(ew * t)))))) + Float64(Float64(ew * ew) / Float64(eh / Float64(t * t))))) end
function tmp = code(eh, ew, t) tmp = abs((((eh * cos(t)) * sin(atan(((-0.3333333333333333 * ((t * eh) / ew)) + (eh / (ew * t)))))) + ((ew * ew) / (eh / (t * t))))); end
code[eh_, ew_, t_] := N[Abs[N[(N[(N[(eh * N[Cos[t], $MachinePrecision]), $MachinePrecision] * N[Sin[N[ArcTan[N[(N[(-0.3333333333333333 * N[(N[(t * eh), $MachinePrecision] / ew), $MachinePrecision]), $MachinePrecision] + N[(eh / N[(ew * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + N[(N[(ew * ew), $MachinePrecision] / N[(eh / N[(t * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\left|\left(eh \cdot \cos t\right) \cdot \sin \tan^{-1} \left(-0.3333333333333333 \cdot \frac{t \cdot eh}{ew} + \frac{eh}{ew \cdot t}\right) + \frac{ew \cdot ew}{\frac{eh}{t \cdot t}}\right|
\end{array}
Initial program 99.8%
cos-atan99.8%
hypot-1-def99.8%
associate-/l/99.8%
*-commutative99.8%
Applied egg-rr99.8%
Taylor expanded in t around 0 95.4%
Taylor expanded in t around 0 86.7%
Taylor expanded in t around 0 45.7%
associate-/l*44.0%
unpow244.0%
unpow244.0%
Simplified44.0%
Final simplification44.0%
herbie shell --seed 2023271
(FPCore (eh ew t)
:name "Example from Robby"
:precision binary64
(fabs (+ (* (* ew (sin t)) (cos (atan (/ (/ eh ew) (tan t))))) (* (* eh (cos t)) (sin (atan (/ (/ eh ew) (tan t))))))))