Elementary approximation to “impossible” integral

The previous post looked an integral that is “impossible” in the sense that it cannot be computed in closed form. It can be integrated in terms of special functions, and it can easily be computed numerically to as much accuracy as anyone would want.

In this post I’ll present a simple approximation that calculus students should find accessible.

The basic idea is to tweak a Taylor polynomial into something we can take the square root of. Specifically, we will replace the Taylor series

\sin \theta = \theta - \frac{\theta^3}{6} + \frac{\theta^5}{120} - \cdots

with

\sin \theta \approx \theta - \frac{\theta^3}{6} + \frac{\theta^5}{144} = \theta\left(1 - \frac{\theta^2}{12}\right)^2

If θ is small, θ5 is extremely small, and so the approximation should be work well for small x, and it doesn’t need to work for x very large because the integrand is only real for x less than π.

Define

f(x) = \int_0^x \sqrt{\sin \theta} \, d\theta

Then

\begin{align*} f(x) &= \int_0^x \sqrt{\theta - \frac{\theta^3}{6} + \frac{\theta^5}{120} - \cdots } \,\, d\theta \\ &\approx \int_0^x \sqrt{\theta} \sqrt{ \left(1 - \frac{\theta^2}{12}\right)^2 } \, d\theta \\ &= \int_0^x \sqrt{\theta} \left(1 - \frac{\theta^2}{12}\right) \, d\theta \\ &= \frac{2}{3} x^{3/2} - \frac{1}{42} x^{7/2} \end{align*}

Here’s a plot showing how good the approximation is.

plot

So the approximation is good to about seven figures for x < 0.2, and even for x as large as 1.5 the approximation is still good to three figures.

Since the sin θ is positive for 0 ≤ θ ≤ π, it’s natural to evaluate f(x) for 0 ≤ x ≤ π. Our approximation error would continue to increase if we directly used values of x greater than π/2. But because sine is symmetric about π/2, we can avoid this problem: If π/2 ≤ x ≤ π, then we can compute f(x) as 2f(π/2) – f(π – x).

3 thoughts on “Elementary approximation to “impossible” integral

  1. That’s a neat post.
    The last equation should be 2*f(π/2) – f(π – x), right?
    As written, for f(π/2) + f(π – x), the f(π – x) decreases with x so at x = π, he expression would be just f(π/2).

  2. Since the integrand is non-negative on [0, pi], as an extremely crude, upper bound calculation you might also try using the root-mean square value as a proxy for the mean value. This gives a quick-and-dirty approximation of sqrt(x*(1-cos(x)). It’s not great.. better than 6% or so, but not too bad for a just a few seconds of work.

  3. adam j ginensky

    Why wouldn’t the anti-derivative of the first few terms serve just as well ? Just curious.

Comments are closed.