\[\tan^{-1} \left(N + 1\right) - \tan^{-1} N
\]
↓
\[\tan^{-1}_* \frac{1}{N \cdot N + \left(1 + N\right)}
\]
(FPCore (N) :precision binary64 (- (atan (+ N 1.0)) (atan N)))
↓
(FPCore (N) :precision binary64 (atan2 1.0 (+ (* N N) (+ 1.0 N))))
double code(double N) {
return atan((N + 1.0)) - atan(N);
}
↓
double code(double N) {
return atan2(1.0, ((N * N) + (1.0 + N)));
}
real(8) function code(n)
real(8), intent (in) :: n
code = atan((n + 1.0d0)) - atan(n)
end function
↓
real(8) function code(n)
real(8), intent (in) :: n
code = atan2(1.0d0, ((n * n) + (1.0d0 + n)))
end function
public static double code(double N) {
return Math.atan((N + 1.0)) - Math.atan(N);
}
↓
public static double code(double N) {
return Math.atan2(1.0, ((N * N) + (1.0 + N)));
}
def code(N):
return math.atan((N + 1.0)) - math.atan(N)
↓
def code(N):
return math.atan2(1.0, ((N * N) + (1.0 + N)))
function code(N)
return Float64(atan(Float64(N + 1.0)) - atan(N))
end
↓
function code(N)
return atan(1.0, Float64(Float64(N * N) + Float64(1.0 + N)))
end
function tmp = code(N)
tmp = atan((N + 1.0)) - atan(N);
end
↓
function tmp = code(N)
tmp = atan2(1.0, ((N * N) + (1.0 + N)));
end
code[N_] := N[(N[ArcTan[N[(N + 1.0), $MachinePrecision]], $MachinePrecision] - N[ArcTan[N], $MachinePrecision]), $MachinePrecision]
↓
code[N_] := N[ArcTan[1.0 / N[(N[(N * N), $MachinePrecision] + N[(1.0 + N), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\tan^{-1} \left(N + 1\right) - \tan^{-1} N
↓
\tan^{-1}_* \frac{1}{N \cdot N + \left(1 + N\right)}