\[\left(0 < x \land x < 1\right) \land y < 1\]
\[\frac{\left(x - y\right) \cdot \left(x + y\right)}{x \cdot x + y \cdot y}
\]
↓
\[\frac{x - y}{\mathsf{hypot}\left(x, y\right)} \cdot \frac{x + y}{\mathsf{hypot}\left(x, y\right)}
\]
(FPCore (x y) :precision binary64 (/ (* (- x y) (+ x y)) (+ (* x x) (* y y))))
↓
(FPCore (x y)
:precision binary64
(* (/ (- x y) (hypot x y)) (/ (+ x y) (hypot x y))))
double code(double x, double y) {
return ((x - y) * (x + y)) / ((x * x) + (y * y));
}
↓
double code(double x, double y) {
return ((x - y) / hypot(x, y)) * ((x + y) / hypot(x, y));
}
public static double code(double x, double y) {
return ((x - y) * (x + y)) / ((x * x) + (y * y));
}
↓
public static double code(double x, double y) {
return ((x - y) / Math.hypot(x, y)) * ((x + y) / Math.hypot(x, y));
}
def code(x, y):
return ((x - y) * (x + y)) / ((x * x) + (y * y))
↓
def code(x, y):
return ((x - y) / math.hypot(x, y)) * ((x + y) / math.hypot(x, y))
function code(x, y)
return Float64(Float64(Float64(x - y) * Float64(x + y)) / Float64(Float64(x * x) + Float64(y * y)))
end
↓
function code(x, y)
return Float64(Float64(Float64(x - y) / hypot(x, y)) * Float64(Float64(x + y) / hypot(x, y)))
end
function tmp = code(x, y)
tmp = ((x - y) * (x + y)) / ((x * x) + (y * y));
end
↓
function tmp = code(x, y)
tmp = ((x - y) / hypot(x, y)) * ((x + y) / hypot(x, y));
end
code[x_, y_] := N[(N[(N[(x - y), $MachinePrecision] * N[(x + y), $MachinePrecision]), $MachinePrecision] / N[(N[(x * x), $MachinePrecision] + N[(y * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_] := N[(N[(N[(x - y), $MachinePrecision] / N[Sqrt[x ^ 2 + y ^ 2], $MachinePrecision]), $MachinePrecision] * N[(N[(x + y), $MachinePrecision] / N[Sqrt[x ^ 2 + y ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\frac{\left(x - y\right) \cdot \left(x + y\right)}{x \cdot x + y \cdot y}
↓
\frac{x - y}{\mathsf{hypot}\left(x, y\right)} \cdot \frac{x + y}{\mathsf{hypot}\left(x, y\right)}
Alternatives
| Alternative 1 |
|---|
| Accuracy | 92.9% |
|---|
| Cost | 1988 |
|---|
\[\begin{array}{l}
t_0 := \frac{\left(x - y\right) \cdot \left(x + y\right)}{x \cdot x + y \cdot y}\\
\mathbf{if}\;t_0 \leq 2:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-1 + \frac{\frac{x}{y}}{\frac{\frac{y}{x}}{2}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 83.1% |
|---|
| Cost | 968 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.1 \cdot 10^{-189}:\\
\;\;\;\;-1 + \frac{x}{y} \cdot \frac{x}{y}\\
\mathbf{elif}\;y \leq 1.7 \cdot 10^{-198}:\\
\;\;\;\;1 - \frac{y}{x} \cdot \frac{y}{x}\\
\mathbf{else}:\\
\;\;\;\;-1 + \frac{\frac{x}{y}}{\frac{\frac{y}{x}}{2}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 82.4% |
|---|
| Cost | 841 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.22 \cdot 10^{-189} \lor \neg \left(y \leq 9.6 \cdot 10^{-206}\right):\\
\;\;\;\;-1 + \frac{x}{y} \cdot \frac{x}{y}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 82.5% |
|---|
| Cost | 841 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.25 \cdot 10^{-191} \lor \neg \left(y \leq 9.6 \cdot 10^{-206}\right):\\
\;\;\;\;-1 + \frac{x}{y} \cdot \frac{x}{y}\\
\mathbf{else}:\\
\;\;\;\;\frac{y}{x} + \left(1 - \frac{y}{x}\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 82.9% |
|---|
| Cost | 841 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.25 \cdot 10^{-189} \lor \neg \left(y \leq 1.35 \cdot 10^{-198}\right):\\
\;\;\;\;-1 + \frac{x}{y} \cdot \frac{x}{y}\\
\mathbf{else}:\\
\;\;\;\;1 - \frac{y}{x} \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 82.1% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2 \cdot 10^{-189}:\\
\;\;\;\;-1\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-198}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-1\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 67.7% |
|---|
| Cost | 64 |
|---|
\[-1
\]