Math FPCore C Fortran Java Python Julia MATLAB Wolfram TeX \[1 - \frac{x}{\left(y - z\right) \cdot \left(y - t\right)}
\]
↓
\[1 - \frac{x}{\left(y - z\right) \cdot \left(y - t\right)}
\]
(FPCore (x y z t) :precision binary64 (- 1.0 (/ x (* (- y z) (- y t))))) ↓
(FPCore (x y z t) :precision binary64 (- 1.0 (/ x (* (- y z) (- y t))))) double code(double x, double y, double z, double t) {
return 1.0 - (x / ((y - z) * (y - t)));
}
↓
double code(double x, double y, double z, double t) {
return 1.0 - (x / ((y - z) * (y - 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 - (x / ((y - z) * (y - 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 = 1.0d0 - (x / ((y - z) * (y - t)))
end function
public static double code(double x, double y, double z, double t) {
return 1.0 - (x / ((y - z) * (y - t)));
}
↓
public static double code(double x, double y, double z, double t) {
return 1.0 - (x / ((y - z) * (y - t)));
}
def code(x, y, z, t):
return 1.0 - (x / ((y - z) * (y - t)))
↓
def code(x, y, z, t):
return 1.0 - (x / ((y - z) * (y - t)))
function code(x, y, z, t)
return Float64(1.0 - Float64(x / Float64(Float64(y - z) * Float64(y - t))))
end
↓
function code(x, y, z, t)
return Float64(1.0 - Float64(x / Float64(Float64(y - z) * Float64(y - t))))
end
function tmp = code(x, y, z, t)
tmp = 1.0 - (x / ((y - z) * (y - t)));
end
↓
function tmp = code(x, y, z, t)
tmp = 1.0 - (x / ((y - z) * (y - t)));
end
code[x_, y_, z_, t_] := N[(1.0 - N[(x / N[(N[(y - z), $MachinePrecision] * N[(y - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_] := N[(1.0 - N[(x / N[(N[(y - z), $MachinePrecision] * N[(y - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
1 - \frac{x}{\left(y - z\right) \cdot \left(y - t\right)}
↓
1 - \frac{x}{\left(y - z\right) \cdot \left(y - t\right)}
Alternatives Alternative 1 Error 10.0 Cost 840
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.9 \cdot 10^{-80}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 3.05 \cdot 10^{-80}:\\
\;\;\;\;1 + x \cdot \frac{-1}{z \cdot t}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
Alternative 2 Error 8.8 Cost 840
\[\begin{array}{l}
t_1 := 1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{if}\;y \leq -3.2 \cdot 10^{-96}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 5.5 \cdot 10^{-123}:\\
\;\;\;\;1 + x \cdot \frac{-1}{z \cdot t}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
Alternative 3 Error 8.8 Cost 840
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-87}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-112}:\\
\;\;\;\;1 + x \cdot \frac{-1}{z \cdot t}\\
\mathbf{else}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - t\right)}\\
\end{array}
\]
Alternative 4 Error 9.5 Cost 840
\[\begin{array}{l}
\mathbf{if}\;t \leq -1.2 \cdot 10^{-43}:\\
\;\;\;\;1 - \frac{\frac{x}{z}}{t}\\
\mathbf{elif}\;t \leq 1.6 \cdot 10^{-122}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{\frac{x}{t}}{y - z}\\
\end{array}
\]
Alternative 5 Error 5.6 Cost 840
\[\begin{array}{l}
\mathbf{if}\;t \leq -1.65 \cdot 10^{-127}:\\
\;\;\;\;1 + \frac{x}{\left(y - z\right) \cdot t}\\
\mathbf{elif}\;t \leq 1.4 \cdot 10^{-122}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{\frac{x}{t}}{y - z}\\
\end{array}
\]
Alternative 6 Error 8.8 Cost 840
\[\begin{array}{l}
\mathbf{if}\;t \leq -2.8 \cdot 10^{-216}:\\
\;\;\;\;1 + \frac{x}{z \cdot \left(y - t\right)}\\
\mathbf{elif}\;t \leq 5.5 \cdot 10^{-124}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{\frac{x}{t}}{y - z}\\
\end{array}
\]
Alternative 7 Error 8.8 Cost 840
\[\begin{array}{l}
\mathbf{if}\;t \leq -1.55 \cdot 10^{-128}:\\
\;\;\;\;1 + \frac{\frac{x}{z}}{y - t}\\
\mathbf{elif}\;t \leq 5 \cdot 10^{-123}:\\
\;\;\;\;1 - \frac{x}{y \cdot \left(y - z\right)}\\
\mathbf{else}:\\
\;\;\;\;1 + \frac{\frac{x}{t}}{y - z}\\
\end{array}
\]
Alternative 8 Error 13.6 Cost 712
\[\begin{array}{l}
\mathbf{if}\;t \leq -3.1 \cdot 10^{-216}:\\
\;\;\;\;1\\
\mathbf{elif}\;t \leq 1.4 \cdot 10^{-277}:\\
\;\;\;\;1 + \frac{x}{y \cdot z}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
Alternative 9 Error 9.9 Cost 712
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.8 \cdot 10^{-80}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 1.3 \cdot 10^{-79}:\\
\;\;\;\;1 - \frac{x}{z \cdot t}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
Alternative 10 Error 14.4 Cost 648
\[\begin{array}{l}
\mathbf{if}\;y \leq 1.9 \cdot 10^{-293}:\\
\;\;\;\;1\\
\mathbf{elif}\;y \leq 7 \cdot 10^{-232}:\\
\;\;\;\;\frac{-x}{z \cdot t}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
Alternative 11 Error 13.6 Cost 64
\[1
\]