The following asymptotic
AsymptoticIntegrate[Sqrt[n^2 - k^2], {k, 1, n - 1}, {n, Infinity, 1}]
fails in 13.3 on Windows 10, returning the input. However, the following
Assuming[n >= 3, AsymptoticIntegrate[ Sqrt[n^2 - k^2], {k, 1, n - 1}, {n, Infinity, 1}]]
1/(6 n) + 1/(5 Sqrt[2] Sqrt[n]) - (2 Sqrt[2] Sqrt[n])/3 - n + ( n^2 \[Pi])/4
works well. What is the reason of it? I don't find any explanation in the documentation.


AsymptoticIntegrate[Sqrt[n^2 - k^2], {k, 1, n - 1}, {n, Infinity, 1}, PerformanceGoal -> "Quality"]also fails. – user64494 Jan 23 '24 at 07:18AsymptoticIntegrate[Sqrt[n - k], {k, 1, n - 1}, {n, Infinity, 1}]works well, producing-(2/3) + 1/(4 Sqrt[n]) - Sqrt[n] + (2 n^(3/2))/3– user64494 Jan 23 '24 at 10:08Assuming[n >= - 30, AsymptoticIntegrate[ Sqrt[n^2 - k^2], {k, 1, n - 1}, {n, Infinity, 1}]]performs1/(6 n) + 1/(5 Sqrt[2] Sqrt[n]) - (2 Sqrt[2] Sqrt[n])/3 - n + ( n^2 \[Pi])/4. – user64494 Jan 23 '24 at 19:12