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

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original0.0
Target0.0
Herbie0.0
\[\left(\frac{x}{8} + t\right) - \frac{z}{2} \cdot y \]

Derivation

  1. Initial program 0.0

    \[\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t \]
  2. Simplified0.0

    \[\leadsto \color{blue}{\left(0.125 \cdot x - \frac{y}{2} \cdot z\right) + t} \]
    Proof

    [Start]0.0

    \[ \left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t \]

    associate-+l- [=>]0.0

    \[ \color{blue}{\frac{1}{8} \cdot x - \left(\frac{y \cdot z}{2} - t\right)} \]

    sub-neg [=>]0.0

    \[ \color{blue}{\frac{1}{8} \cdot x + \left(-\left(\frac{y \cdot z}{2} - t\right)\right)} \]

    neg-mul-1 [=>]0.0

    \[ \frac{1}{8} \cdot x + \color{blue}{-1 \cdot \left(\frac{y \cdot z}{2} - t\right)} \]

    *-commutative [=>]0.0

    \[ \frac{1}{8} \cdot x + \color{blue}{\left(\frac{y \cdot z}{2} - t\right) \cdot -1} \]

    cancel-sign-sub [<=]0.0

    \[ \color{blue}{\frac{1}{8} \cdot x - \left(-\left(\frac{y \cdot z}{2} - t\right)\right) \cdot -1} \]

    *-commutative [=>]0.0

    \[ \frac{1}{8} \cdot x - \color{blue}{-1 \cdot \left(-\left(\frac{y \cdot z}{2} - t\right)\right)} \]

    cancel-sign-sub-inv [=>]0.0

    \[ \color{blue}{\frac{1}{8} \cdot x + \left(--1\right) \cdot \left(-\left(\frac{y \cdot z}{2} - t\right)\right)} \]

    metadata-eval [=>]0.0

    \[ \frac{1}{8} \cdot x + \color{blue}{1} \cdot \left(-\left(\frac{y \cdot z}{2} - t\right)\right) \]

    neg-sub0 [=>]0.0

    \[ \frac{1}{8} \cdot x + 1 \cdot \color{blue}{\left(0 - \left(\frac{y \cdot z}{2} - t\right)\right)} \]

    associate-+l- [<=]0.0

    \[ \frac{1}{8} \cdot x + 1 \cdot \color{blue}{\left(\left(0 - \frac{y \cdot z}{2}\right) + t\right)} \]

    neg-sub0 [<=]0.0

    \[ \frac{1}{8} \cdot x + 1 \cdot \left(\color{blue}{\left(-\frac{y \cdot z}{2}\right)} + t\right) \]

    distribute-lft-in [=>]0.0

    \[ \frac{1}{8} \cdot x + \color{blue}{\left(1 \cdot \left(-\frac{y \cdot z}{2}\right) + 1 \cdot t\right)} \]

    *-lft-identity [=>]0.0

    \[ \frac{1}{8} \cdot x + \left(1 \cdot \left(-\frac{y \cdot z}{2}\right) + \color{blue}{t}\right) \]

    associate-+r+ [=>]0.0

    \[ \color{blue}{\left(\frac{1}{8} \cdot x + 1 \cdot \left(-\frac{y \cdot z}{2}\right)\right) + t} \]

    metadata-eval [<=]0.0

    \[ \left(\frac{1}{8} \cdot x + \color{blue}{\left(--1\right)} \cdot \left(-\frac{y \cdot z}{2}\right)\right) + t \]

    cancel-sign-sub-inv [<=]0.0

    \[ \color{blue}{\left(\frac{1}{8} \cdot x - -1 \cdot \left(-\frac{y \cdot z}{2}\right)\right)} + t \]

    *-commutative [<=]0.0

    \[ \left(\frac{1}{8} \cdot x - \color{blue}{\left(-\frac{y \cdot z}{2}\right) \cdot -1}\right) + t \]

    cancel-sign-sub [=>]0.0

    \[ \color{blue}{\left(\frac{1}{8} \cdot x + \frac{y \cdot z}{2} \cdot -1\right)} + t \]

    *-commutative [<=]0.0

    \[ \left(\frac{1}{8} \cdot x + \color{blue}{-1 \cdot \frac{y \cdot z}{2}}\right) + t \]

    neg-mul-1 [<=]0.0

    \[ \left(\frac{1}{8} \cdot x + \color{blue}{\left(-\frac{y \cdot z}{2}\right)}\right) + t \]

    sub-neg [<=]0.0

    \[ \color{blue}{\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right)} + t \]

    metadata-eval [=>]0.0

    \[ \left(\color{blue}{0.125} \cdot x - \frac{y \cdot z}{2}\right) + t \]

    associate-*l/ [<=]0.0

    \[ \left(0.125 \cdot x - \color{blue}{\frac{y}{2} \cdot z}\right) + t \]
  3. Final simplification0.0

    \[\leadsto \left(0.125 \cdot x - \frac{y}{2} \cdot z\right) + t \]

Alternatives

Alternative 1
Error20.0
Cost850
\[\begin{array}{l} \mathbf{if}\;y \leq -2.7 \cdot 10^{+239} \lor \neg \left(y \leq -5.5 \cdot 10^{+222} \lor \neg \left(y \leq -1.05 \cdot 10^{+180}\right) \land y \leq 1.9 \cdot 10^{-40}\right):\\ \;\;\;\;y \cdot \left(z \cdot -0.5\right)\\ \mathbf{else}:\\ \;\;\;\;0.125 \cdot x + t\\ \end{array} \]
Alternative 2
Error8.8
Cost713
\[\begin{array}{l} \mathbf{if}\;x \leq -9.5 \cdot 10^{+27} \lor \neg \left(x \leq 3 \cdot 10^{+85}\right):\\ \;\;\;\;0.125 \cdot x + t\\ \mathbf{else}:\\ \;\;\;\;t + -0.5 \cdot \left(y \cdot z\right)\\ \end{array} \]
Alternative 3
Error30.8
Cost584
\[\begin{array}{l} \mathbf{if}\;t \leq -7.8 \cdot 10^{+44}:\\ \;\;\;\;t\\ \mathbf{elif}\;t \leq 3.1 \cdot 10^{+40}:\\ \;\;\;\;y \cdot \left(z \cdot -0.5\right)\\ \mathbf{else}:\\ \;\;\;\;t\\ \end{array} \]
Alternative 4
Error39.7
Cost64
\[t \]

Error

Reproduce

herbie shell --seed 2022354 
(FPCore (x y z t)
  :name "Diagrams.Solve.Polynomial:quartForm  from diagrams-solve-0.1, B"
  :precision binary64

  :herbie-target
  (- (+ (/ x 8.0) t) (* (/ z 2.0) y))

  (+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))