1.10: 1.10- Besselian Interpolation
( \newcommand{\kernel}{\mathrm{null}\,}\)
In the days before the widespread use of high-speed computers, extensive use was commonly made of printed tables of the common mathematical functions. For example, a table of the Bessel function J0(x) would indicate
J0(1.7)=0.397 984 859
J0(1.8)=0.339 986 411
If one wanted the Bessel function for x=1.762, one would have to interpolate between the tabulated values.
Today it would be easier simply to calculate the Bessel function for any particular desired value of the argument x, and there is less need today for printed tables or to know how to interpolate. Indeed, most computing systems today have internal routines that will enable one to calculate the commoner functions such as Bessel functions even if one has only a hazy notion of what a Bessel function is.
The need has not entirely passed, however. For example, in orbital calculations, we often need the geocentric coordinates of the Sun. These are not trivial for the nonspecialist to compute, and it may be easier to look them up in The Astronomical Almanac, where it is tabulated for every day of the year, such as, for example, July 14 and July 15. But, if one needs y for July 14.395, how does one interpolate?
In an ideal world, a tabulated function would be tabulated at sufficiently fine intervals so that linear interpolation between two tabulated values would be adequate to return the function to the same number of significant figures as the tabulated points. The world is not perfect, however, and to achieve such perfection, the tabulation interval would have to change as the function changed more or less rapidly. We need to know, therefore, how to do nonlinear interpolation.
Suppose a function y(x) is tabulated at x=x1 and x=x2, the interval x2−x1 being δx. If one wishes to find the value of y at x+θδx, linear interpolation gives
y(x1+θΔx)=y1+θ(y2−y1)=θy2+(1−θ)y1,
where y1=y(x1) and y2=y(x2). Here it is assumed that is a fraction between 0 and 1; if θ is outside this range (that is negative, or greater than 1) we are extrapolating, not interpolating, and that is always a dangerous thing to do.
Let us now look at the situation where linear interpolation is not good enough. Suppose that a function y(x) is tabulated for four points x1, x2, x3, x4 of the argument x, the corresponding values of the function being y1, y2, y3, y4. We wish to evaluate y for x=x2+θδx, where δx is the interval x2−x1 or x3−x2 or x4−x3. The situation is illustrated in figure I.6A.
A possible approach would be to fit a polynomial to the four adjacent points:
y=a+bx+cx2+dx3.
We write down this Equation for the four adjacent tabulated points and solve for the coefficients, and hence we can evaluate the function for any value of x that we like in the interval between x1 and x4. Unfortunately, this might well involve more computational effort than evaluating the original function itself.
FIGURE I.6A
The problem has been solved in a convenient fashion in terms of finite difference calculus, the logical development of which would involve an additional substantial chapter beyond the intended scope of this book. I therefore just provide the method only, without proof.
The essence of the method is to set up a table of differences as illustrated below. The first two columns are x and y. The entries in the remaining columns are the differences between the two entries in the column immediately to the left. Thus, for example, δ4.5=y5−y4, δ24=δ4.5−δ3.5, etc.
Let us suppose that we want to find y for a value of x that is a fraction θ of the way from x4 to x5. Bessel's interpolation formula is then
y(x)=12(y4+y5)+B1δ4.5+B2(δ24+δ25)+B3δ34.5+B4(δ44+δ45)+...
Here the Bn are the Besselian interpolation coefficients, and the successive terms in parentheses in the expansion are the sums of the numbers in the boxes in the table.
The Besselian coefficients are
Bn(θ)=12(θ+12n−1n)if n is even,
and Bn(θ)=θ−12n(θ+12n−32n−1)if n is odd.
The notation (mn) means the coefficient of x m in the binomial expansion of (1+x)n.
Explicitly,
B1=θ−12
B2=12θ(θ−1)/2!=θ(θ−1)/4
B3=(θ−12)θ(θ−1)/3!=θ(0.5+θ(−1.5+θ))/6
B4=12(θ+1)θ(θ−1)(θ−2)/4!=θ(2+θ(−1+θ(−2+θ)))/48
B5=(θ−12)(θ+1)θ(θ−1)(θ−2)/5!=θ(−1+θ(2.5+θ2(−2.5+θ)))/120
The reader should convince him- or herself that the interpolation formula taken as far as B1 is merely linear interpolation. Addition of successively higher terms effectively fits a curve to more and more points around the desired value and more and more accurately reflects the actual change of y with x.
The above table is taken from The Astronomical Almanac for 1997, and it shows the y-coordinate of the Sun for eight consecutive days in July. The first three difference columns are tabulated, and it is clear that further difference columns are unwarranted.
If we want to find the value of y, for example, for July 4.746, we have θ=0.746 and the first three Bessel coefficients are
B1=+0.246B2=−0.047 371B3=−0.007 768 844
The reader can verify the following calculations for y from the sum of the first 2, 3 and 4 terms of the Besselian interpolation series formula. The sum of the first two terms is the result of linear interpolation.
Sum of the first 2 terms, y=0.909 580 299
Sum of the first 3 terms, y=0.909 604 723
Sum of the first 4 terms, y=0.909 604 715
Provided the table is not tabulated at inappropriately coarse intervals, one need rarely go past the third Bessel coefficient. In that case an alternative and equivalent interpolation formula (for t=t4+θΔt), which avoids having to construct a difference table, is
y(t4+θΔt)=−16θ[(2−θ(3−θ))y3+(1−θ)y6]+12[(2+θ(−1+θ(−2+θ)))y4+θ(2+θ(1−θ))y5].
Readers should check that this gives the same answer, at the same time noting that the nested parentheses make the calculation very rapid and they are easy to program on either a calculator or a computer.
From the following table, construct a difference table up to fourth differences. Calculate the first four Bessel coefficients for θ=0.73. Hence calculate the value of y for x=0.273.
xy0.0+0.3813000.1+0.2856030.2+0.1900920.3+0.0963270.4+0.0082680.5−0.067725
Answers
- B1=+0.23
- B2−−0.049275
- B3=−7.5555×10−3
- B4=+9.021841875×10−3
- y=0.121289738
Note: the table was calculated from a formula, and the interpolated answer is correct to nine significant figures.
From the following table of sinx, use linear interpolation and Besselian interpolation to estimate sin51∘ to three significant figures.
x∘sinx00.0300.560√3/2−0.86603901.0
Answers
- By linear interpolation, sin51∘=0.634.
- By Besselian interpolation, sin51∘=0.776.
The correct value is 0.777. You should be impressed – but there is more on interpolation to come, in Section 1.11.