\[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th
\]
↓
\[\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \sin th
\]
(FPCore (kx ky th)
:precision binary64
(* (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) (sin th)))
↓
(FPCore (kx ky th)
:precision binary64
(* (/ (sin ky) (hypot (sin ky) (sin kx))) (sin th)))
double code(double kx, double ky, double th) {
return (sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) * sin(th);
}
↓
double code(double kx, double ky, double th) {
return (sin(ky) / hypot(sin(ky), sin(kx))) * sin(th);
}
public static double code(double kx, double ky, double th) {
return (Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) * Math.sin(th);
}
↓
public static double code(double kx, double ky, double th) {
return (Math.sin(ky) / Math.hypot(Math.sin(ky), Math.sin(kx))) * Math.sin(th);
}
def code(kx, ky, th):
return (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) * math.sin(th)
↓
def code(kx, ky, th):
return (math.sin(ky) / math.hypot(math.sin(ky), math.sin(kx))) * math.sin(th)
function code(kx, ky, th)
return Float64(Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th))
end
↓
function code(kx, ky, th)
return Float64(Float64(sin(ky) / hypot(sin(ky), sin(kx))) * sin(th))
end
function tmp = code(kx, ky, th)
tmp = (sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th);
end
↓
function tmp = code(kx, ky, th)
tmp = (sin(ky) / hypot(sin(ky), sin(kx))) * sin(th);
end
code[kx_, ky_, th_] := N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]
↓
code[kx_, ky_, th_] := N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]
\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th
↓
\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \sin th
Alternatives
| Alternative 1 |
|---|
| Error | 27.9 |
|---|
| Cost | 45712 |
|---|
\[\begin{array}{l}
t_1 := th \cdot \frac{ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}\\
\mathbf{if}\;\sin ky \leq -1 \cdot 10^{-52}:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq -5 \cdot 10^{-139}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;\sin ky \leq -4 \cdot 10^{-295}:\\
\;\;\;\;ky \cdot \left|\frac{\sin th}{\sin kx}\right|\\
\mathbf{elif}\;\sin ky \leq 5 \cdot 10^{-33}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 28.5 |
|---|
| Cost | 45648 |
|---|
\[\begin{array}{l}
t_1 := \sin th \cdot \frac{ky}{\sin kx}\\
\mathbf{if}\;\sin ky \leq -1 \cdot 10^{-47}:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq -4 \cdot 10^{-295}:\\
\;\;\;\;ky \cdot \left|\frac{\sin th}{\sin kx}\right|\\
\mathbf{elif}\;\sin ky \leq 10^{-151}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;\sin ky \leq 2 \cdot 10^{-119}:\\
\;\;\;\;\left|t_1\right|\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.8 |
|---|
| Cost | 39049 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin th \leq -0.02 \lor \neg \left(\sin th \leq 4 \cdot 10^{-27}\right):\\
\;\;\;\;\frac{1}{\frac{\mathsf{hypot}\left(\sin kx, ky\right)}{ky \cdot \sin th}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\sin ky}{\frac{\mathsf{hypot}\left(\sin kx, \sin ky\right)}{th}}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.7 |
|---|
| Cost | 39048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin ky \leq -0.01:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq 2 \cdot 10^{-7}:\\
\;\;\;\;\sin ky \cdot \frac{\sin th}{\mathsf{hypot}\left(\sin kx, ky\right)}\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 15.8 |
|---|
| Cost | 32776 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin ky \leq -0.22:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq 2 \cdot 10^{-7}:\\
\;\;\;\;\frac{1}{\frac{\mathsf{hypot}\left(\sin kx, ky\right)}{ky \cdot \sin th}}\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 28.0 |
|---|
| Cost | 26184 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin ky \leq -1 \cdot 10^{-52}:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq 10^{-151}:\\
\;\;\;\;\sin th \cdot \frac{ky}{\sin kx}\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 28.0 |
|---|
| Cost | 26184 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin ky \leq -1 \cdot 10^{-52}:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq 10^{-151}:\\
\;\;\;\;ky \cdot \frac{\sin th}{\sin kx}\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 30.6 |
|---|
| Cost | 19784 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\sin ky \leq -2 \cdot 10^{-145}:\\
\;\;\;\;-\sin th\\
\mathbf{elif}\;\sin ky \leq 10^{-151}:\\
\;\;\;\;\sin th \cdot \frac{ky}{kx}\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 44.3 |
|---|
| Cost | 7057 |
|---|
\[\begin{array}{l}
\mathbf{if}\;ky \leq -2 \cdot 10^{+120}:\\
\;\;\;\;\sin th\\
\mathbf{elif}\;ky \leq -5 \cdot 10^{-310} \lor \neg \left(ky \leq 1.15 \cdot 10^{+84}\right) \land ky \leq 5.8 \cdot 10^{+125}:\\
\;\;\;\;-\sin th\\
\mathbf{else}:\\
\;\;\;\;\sin th\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 48.5 |
|---|
| Cost | 6464 |
|---|
\[\sin th
\]