Average Error: 0.1 → 0.0
Time: 4.1s
Precision: binary64
Cost: 576
\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y} \]
\[2 + 4 \cdot \frac{x - z}{y} \]
(FPCore (x y z)
 :precision binary64
 (+ 1.0 (/ (* 4.0 (- (+ x (* y 0.25)) z)) y)))
(FPCore (x y z) :precision binary64 (+ 2.0 (* 4.0 (/ (- x z) y))))
double code(double x, double y, double z) {
	return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
double code(double x, double y, double z) {
	return 2.0 + (4.0 * ((x - z) / y));
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = 1.0d0 + ((4.0d0 * ((x + (y * 0.25d0)) - z)) / y)
end function
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = 2.0d0 + (4.0d0 * ((x - z) / y))
end function
public static double code(double x, double y, double z) {
	return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
public static double code(double x, double y, double z) {
	return 2.0 + (4.0 * ((x - z) / y));
}
def code(x, y, z):
	return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y)
def code(x, y, z):
	return 2.0 + (4.0 * ((x - z) / y))
function code(x, y, z)
	return Float64(1.0 + Float64(Float64(4.0 * Float64(Float64(x + Float64(y * 0.25)) - z)) / y))
end
function code(x, y, z)
	return Float64(2.0 + Float64(4.0 * Float64(Float64(x - z) / y)))
end
function tmp = code(x, y, z)
	tmp = 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
end
function tmp = code(x, y, z)
	tmp = 2.0 + (4.0 * ((x - z) / y));
end
code[x_, y_, z_] := N[(1.0 + N[(N[(4.0 * N[(N[(x + N[(y * 0.25), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := N[(2.0 + N[(4.0 * N[(N[(x - z), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y}
2 + 4 \cdot \frac{x - z}{y}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.1

    \[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y} \]
  2. Taylor expanded in y around 0 0.0

    \[\leadsto \color{blue}{2 + 4 \cdot \frac{x - z}{y}} \]
  3. Final simplification0.0

    \[\leadsto 2 + 4 \cdot \frac{x - z}{y} \]

Alternatives

Alternative 1
Error9.1
Cost712
\[\begin{array}{l} t_0 := 2 + 4 \cdot \frac{x}{y}\\ \mathbf{if}\;x \leq -6.351392042948091 \cdot 10^{-26}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;x \leq 1.8217961743985148 \cdot 10^{-95}:\\ \;\;\;\;2 + -4 \cdot \frac{z}{y}\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 2
Error18.3
Cost448
\[2 + -4 \cdot \frac{z}{y} \]
Alternative 3
Error36.6
Cost64
\[2 \]

Error

Reproduce

herbie shell --seed 2022300 
(FPCore (x y z)
  :name "Data.Array.Repa.Algorithms.ColorRamp:rampColorHotToCold from repa-algorithms-3.4.0.1, C"
  :precision binary64
  (+ 1.0 (/ (* 4.0 (- (+ x (* y 0.25)) z)) y)))