Average Error: 2.7 → 1.7
Time: 10.9s
Precision: binary64
Cost: 6980
\[\frac{x \cdot \frac{\sin y}{y}}{z} \]
\[\begin{array}{l} t_0 := \frac{\sin y}{y}\\ \mathbf{if}\;x \leq 5 \cdot 10^{+23}:\\ \;\;\;\;\frac{x}{\frac{z}{t_0}}\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot t_0}{z}\\ \end{array} \]
(FPCore (x y z) :precision binary64 (/ (* x (/ (sin y) y)) z))
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (/ (sin y) y)))
   (if (<= x 5e+23) (/ x (/ z t_0)) (/ (* x t_0) z))))
double code(double x, double y, double z) {
	return (x * (sin(y) / y)) / z;
}
double code(double x, double y, double z) {
	double t_0 = sin(y) / y;
	double tmp;
	if (x <= 5e+23) {
		tmp = x / (z / t_0);
	} else {
		tmp = (x * t_0) / z;
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = (x * (sin(y) / y)) / z
end function
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: t_0
    real(8) :: tmp
    t_0 = sin(y) / y
    if (x <= 5d+23) then
        tmp = x / (z / t_0)
    else
        tmp = (x * t_0) / z
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	return (x * (Math.sin(y) / y)) / z;
}
public static double code(double x, double y, double z) {
	double t_0 = Math.sin(y) / y;
	double tmp;
	if (x <= 5e+23) {
		tmp = x / (z / t_0);
	} else {
		tmp = (x * t_0) / z;
	}
	return tmp;
}
def code(x, y, z):
	return (x * (math.sin(y) / y)) / z
def code(x, y, z):
	t_0 = math.sin(y) / y
	tmp = 0
	if x <= 5e+23:
		tmp = x / (z / t_0)
	else:
		tmp = (x * t_0) / z
	return tmp
function code(x, y, z)
	return Float64(Float64(x * Float64(sin(y) / y)) / z)
end
function code(x, y, z)
	t_0 = Float64(sin(y) / y)
	tmp = 0.0
	if (x <= 5e+23)
		tmp = Float64(x / Float64(z / t_0));
	else
		tmp = Float64(Float64(x * t_0) / z);
	end
	return tmp
end
function tmp = code(x, y, z)
	tmp = (x * (sin(y) / y)) / z;
end
function tmp_2 = code(x, y, z)
	t_0 = sin(y) / y;
	tmp = 0.0;
	if (x <= 5e+23)
		tmp = x / (z / t_0);
	else
		tmp = (x * t_0) / z;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := N[(N[(x * N[(N[Sin[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]
code[x_, y_, z_] := Block[{t$95$0 = N[(N[Sin[y], $MachinePrecision] / y), $MachinePrecision]}, If[LessEqual[x, 5e+23], N[(x / N[(z / t$95$0), $MachinePrecision]), $MachinePrecision], N[(N[(x * t$95$0), $MachinePrecision] / z), $MachinePrecision]]]
\frac{x \cdot \frac{\sin y}{y}}{z}
\begin{array}{l}
t_0 := \frac{\sin y}{y}\\
\mathbf{if}\;x \leq 5 \cdot 10^{+23}:\\
\;\;\;\;\frac{x}{\frac{z}{t_0}}\\

\mathbf{else}:\\
\;\;\;\;\frac{x \cdot t_0}{z}\\


\end{array}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original2.7
Target0.2
Herbie1.7
\[\begin{array}{l} \mathbf{if}\;z < -4.2173720203427147 \cdot 10^{-29}:\\ \;\;\;\;\frac{x \cdot \frac{1}{\frac{y}{\sin y}}}{z}\\ \mathbf{elif}\;z < 4.446702369113811 \cdot 10^{+64}:\\ \;\;\;\;\frac{x}{z \cdot \frac{y}{\sin y}}\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot \frac{1}{\frac{y}{\sin y}}}{z}\\ \end{array} \]

Derivation

  1. Split input into 2 regimes
  2. if x < 4.9999999999999999e23

    1. Initial program 3.3

      \[\frac{x \cdot \frac{\sin y}{y}}{z} \]
    2. Simplified2.1

      \[\leadsto \color{blue}{\frac{x}{\frac{z}{\frac{\sin y}{y}}}} \]
      Proof
      (/.f64 x (/.f64 z (/.f64 (sin.f64 y) y))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 x (/.f64 (sin.f64 y) y)) z)): 1 points increase in error, 0 points decrease in error

    if 4.9999999999999999e23 < x

    1. Initial program 0.2

      \[\frac{x \cdot \frac{\sin y}{y}}{z} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification1.7

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq 5 \cdot 10^{+23}:\\ \;\;\;\;\frac{x}{\frac{z}{\frac{\sin y}{y}}}\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot \frac{\sin y}{y}}{z}\\ \end{array} \]

Alternatives

Alternative 1
Error3.1
Cost7113
\[\begin{array}{l} \mathbf{if}\;y \leq -1.45 \cdot 10^{-8} \lor \neg \left(y \leq 1.85 \cdot 10^{-9}\right):\\ \;\;\;\;x \cdot \frac{\sin y}{z \cdot y}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z}\\ \end{array} \]
Alternative 2
Error3.0
Cost7112
\[\begin{array}{l} \mathbf{if}\;y \leq -2.8 \cdot 10^{-8}:\\ \;\;\;\;x \cdot \frac{\sin y}{z \cdot y}\\ \mathbf{elif}\;y \leq 2.65 \cdot 10^{-40}:\\ \;\;\;\;\frac{x}{z}\\ \mathbf{else}:\\ \;\;\;\;\sin y \cdot \frac{\frac{x}{y}}{z}\\ \end{array} \]
Alternative 3
Error3.1
Cost6848
\[\frac{x}{\frac{z}{\frac{\sin y}{y}}} \]
Alternative 4
Error22.8
Cost1097
\[\begin{array}{l} \mathbf{if}\;y \leq -8500000000 \lor \neg \left(y \leq 56\right):\\ \;\;\;\;\frac{x}{y \cdot \left(\left(z \cdot y\right) \cdot 0.16666666666666666 + \frac{z}{y}\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot \left(1 + y \cdot \left(y \cdot -0.16666666666666666\right)\right)}{z}\\ \end{array} \]
Alternative 5
Error23.2
Cost968
\[\begin{array}{l} \mathbf{if}\;y \leq -280000000000:\\ \;\;\;\;y \cdot \frac{x}{z \cdot y}\\ \mathbf{elif}\;y \leq 1.75 \cdot 10^{+22}:\\ \;\;\;\;\frac{x}{\frac{z}{1 + -0.16666666666666666 \cdot \left(y \cdot y\right)}}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{x}{z} + 1\right) + -1\\ \end{array} \]
Alternative 6
Error23.2
Cost968
\[\begin{array}{l} \mathbf{if}\;y \leq -50000000000:\\ \;\;\;\;y \cdot \frac{x}{z \cdot y}\\ \mathbf{elif}\;y \leq 2.1 \cdot 10^{+22}:\\ \;\;\;\;\frac{x \cdot \left(1 + y \cdot \left(y \cdot -0.16666666666666666\right)\right)}{z}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{x}{z} + 1\right) + -1\\ \end{array} \]
Alternative 7
Error25.8
Cost713
\[\begin{array}{l} \mathbf{if}\;y \leq -5 \cdot 10^{+133} \lor \neg \left(y \leq 5 \cdot 10^{+115}\right):\\ \;\;\;\;x \cdot \frac{y}{z \cdot y}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z}\\ \end{array} \]
Alternative 8
Error24.1
Cost713
\[\begin{array}{l} \mathbf{if}\;y \leq -9 \cdot 10^{+116} \lor \neg \left(y \leq 4 \cdot 10^{+115}\right):\\ \;\;\;\;y \cdot \frac{x}{z \cdot y}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z}\\ \end{array} \]
Alternative 9
Error23.5
Cost713
\[\begin{array}{l} \mathbf{if}\;y \leq -9 \cdot 10^{+116} \lor \neg \left(y \leq 9 \cdot 10^{+20}\right):\\ \;\;\;\;\left(\frac{x}{z} + 1\right) + -1\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z}\\ \end{array} \]
Alternative 10
Error23.8
Cost712
\[\begin{array}{l} \mathbf{if}\;y \leq -9 \cdot 10^{+116}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot y}\\ \mathbf{elif}\;y \leq 1.2 \cdot 10^{-6}:\\ \;\;\;\;\frac{x}{z}\\ \mathbf{else}:\\ \;\;\;\;y \cdot \frac{\frac{x}{y}}{z}\\ \end{array} \]
Alternative 11
Error28.5
Cost192
\[\frac{x}{z} \]

Error

Reproduce

herbie shell --seed 2022349 
(FPCore (x y z)
  :name "Linear.Quaternion:$ctanh from linear-1.19.1.3"
  :precision binary64

  :herbie-target
  (if (< z -4.2173720203427147e-29) (/ (* x (/ 1.0 (/ y (sin y)))) z) (if (< z 4.446702369113811e+64) (/ x (* z (/ y (sin y)))) (/ (* x (/ 1.0 (/ y (sin y)))) z)))

  (/ (* x (/ (sin y) y)) z))