Here we assume the
sample points of the integrand
are equally spaced:
 |
(28) |
then we have
. We
further introduce another variable
so that
, and
, and the coefficients in
Eq. (25) can be written as:
These
coefficients can be found by the following Matlab:
function c=coefs(n)
syms x
w=1;
for i=0:n
w=w*(x-i);
end
c=[];
for i=0:n
f=w/(x-i);
ci=int(f,[0,n])*(-1)^(n-i)/factorial(i)/factorial(n-i);
c=[c ci];
end
end
This integral of an nth-degree polynomial can be easily carried
out. The quadrature rule based on such coefficients is called the
Newton-Cotes formula:
![$\displaystyle I_n[f]=\sum_{i=0}^n c_i\;f(x_i)=\sum_{i=0}^n c_i\;y_i$](img119.svg) |
(30) |
As mentioned before, in general the degree of accuracy of
is at least
. We now further show that if the sample points are
equally spaced and if
is even, the degree of accuracy of
is at least
. Consider a polynomial integrand of degree
,
e.g.,
. We have
and the integration
error is
Since
is even,
is an integer. Introducing
, we
further get
![$\displaystyle E_n[x^{n+1}]=h^{n+2}\int_{-n/2}^{n/2} \prod_{i=0}^n(u-i+n/2)\, du
=h^{n+2}\int_{-n/2}^{n/2} \prod_{j=-n/2}^{n/2}(u-j)\, du=0$](img125.svg) |
(32) |
The last equation is due to the fact that the integrand is an odd
function of
. This result indicates that when
is even, the
degree of accuracy of
is at least
.
Given the integrand
and the quadrature rule, we need to
further determine the specific integration error
![$\displaystyle E_n[f]=\int_a^b R_n(x)\,dx
=\int_a^b\frac{f^{(n+1)}(\xi(x))}{(n+1)!}l_n(x)\,dx$](img127.svg) |
(33) |
If
does not change sign in the interval
, we
can further have
![$\displaystyle E_n[f]=\frac{f^{(n+1)}(\eta)}{(n+1)!}\int_a^b l_n(x)\,dx$](img130.svg) |
(34) |
according to the weighted mean-value theorem for integrals, where
. However, if
does change signs in the
interval, this result is not valid and we have to try some other
method. In this case, we assume the integration error takes the
form
, where
is a constant independent
of
, if the degree of accuracy of
is
. This way,
is zero if
but non-zero if
,
i.e., the degree of accuracy of
is indeed
. Next, to
find
, we let
with
, and get
![$\displaystyle K=\frac{E_n[f]}{f^{(n+1)}(x)}=\frac{E_n[x^{m+1}]}{(x^{m+1})^{(m+1)}}
=\frac{E_n[x^{m+1}]}{(m+1)!}$](img138.svg) |
(35) |
Now the integration error can be found to be
![$\displaystyle E_n[f]=K f^{(m+1)}(\eta)
=\frac{f^{(m+1)}(\eta)}{(m+1)!}E_n[x^{m+1}]
=\frac{f^{(m+1)}(\eta)}{(m+1)!}\int_a^b l_m(x)dx$](img139.svg) |
(36) |
The last equation is due to Eq. (?) in the previous section,
where
can be found by either of two ways:
In the following, we will consider the Newton-Cotes quadrature and
its integration error for
.
based on
points, the trapezoidal rule:
 |
(38) |
The trapezoidal rule is:
![$\displaystyle I_1[f]=c_0 f(x_0)+c_1 f(x_1)=\frac{h}{2}(f(x_0)+f(x_1))$](img150.svg) |
(40) |
To find the degree of accuracy, considering the follwoing
polynomial integrands:
-
:
![$\displaystyle E_1[x]=I[x]-I_1[x]=0$](img156.svg) |
(42) |
-
:
![$\displaystyle E_1[x^2]=I[x^2]-I_1[x^2]=-\frac{(b-a)^3}{6}
=-\frac{h^3}{6}\ne 0$](img162.svg) |
(44) |
can also be obtained as:
![$\displaystyle E_1[x^2]=\int_a^b l_1(x)\,dx=h^3\int_0^1 t(t-1)\,dt
=-\frac{h^3}{6}$](img164.svg) |
(45) |
As
, the degree of accuracy of
is
. The general integration error is:
![$\displaystyle E_1[f]=\frac{f''(\eta)}{2} E_1[x^2]=-\frac{h^3}{12}f''(\eta)
=\frac{(b-a)^3}{12}f''(\eta)$](img168.svg) |
(46) |
based on
points, Simpson's rule:
 |
(47) |
The Simpson's rule is:
![$\displaystyle I_2[f]=c_0 f(x_0)+c_1 f(x_1)+c_2 f(x_2)=\frac{h}{3}(f(x_0)+4f(x_1)+f(x_2))$](img174.svg) |
(49) |
To find the degree of accuracy, considering the follwoing
polynomial integrands:
-
:
![$\displaystyle E_2[x^2]=I[x^2]-I_2[x^2]=0$](img178.svg) |
(51) |
-
:
![$\displaystyle E_2[x^3]=I[x^3]-I_2[x^3]=0$](img184.svg) |
(53) |
-
:
![$\displaystyle E_2[x^4]=I[x^4]-I_2[x^4]=-\frac{(b-a)^5}{120}=-\frac{4h^5}{15}$](img190.svg) |
(55) |
can also be obtained as:
![$\displaystyle E_2[x^4]=\int_a^b l_3(x)\,dx=h^4\int_0^2 t(t-1)(t-2)(t-3)\,dt
=-\frac{4h^5}{15}$](img192.svg) |
(56) |
As
, the degree of accuracy of the Simpson's rule is
(
is even). The general integration error is:
![$\displaystyle E_2[f]=\frac{f^{(4)}(\eta)}{4!}E_2[x^4]
=-\frac{h^5}{90}f^{(4)}(\eta)=-\frac{(b-a)^5}{2880}f^{(4)}(\eta)$](img195.svg) |
(57) |
based on
points, Simpson's 3/8 rule:
 |
(58) |
The quadrature rule is:
![$\displaystyle I_3[f]=c_0f(x_0)+c_1f(x_1)+c_2f(x_2)+c_3f(x_3)
=\frac{3h}{8}(f(x_0)+3f(x_1)+3f(x_2)+f(x_3))$](img204.svg) |
(60) |
The degree of accuracy can be found by considering the
follwoing polynomial integrands:
-
:
![$\displaystyle E_3[x^3]=I[x^3]-I_3[x^3]=0$](img208.svg) |
(62) |
-
:
![$\displaystyle E_3[x^4]=I[x^4]-I_3[x^4]=-\frac{(b-a)^5}{270}=-\frac{9h^5}{10}$](img213.svg) |
(63) |
can also be obtained by:
![$\displaystyle E_3[x^4]=\int_0^{3h} l_3(x)\,dx=h^5\int_0^3 t(t-1)(t-2)(t-3)\,dt
=-\frac{9h^5}{10}$](img215.svg) |
(64) |
As
, the degree of accuracy is
.
The general integration error is:
![$\displaystyle E_3[f]=\frac{f^{(4)}(\eta)}{4!}E_3[x^4]
=-\frac{3\,h^5}{80}f^{(4)}(\eta)=\frac{(b-a)^5}{6480}f^{(4)}(\eta)$](img218.svg) |
(65) |
based on
points, Boole's rule:
 |
(66) |
The quadrature rule is:
The coefficients and integration errors for other quadrature rules
with higher
can be similarly obtained.
Example:
Here we consider the integral of the normal (Gaussian)
distribution function with zero mean and unit standard
deviation
:
 |
(68) |
Twice of this value is the probability of
taking a value within 3
standard deviations. This integral is carried out by each of the
four methods with different truncation errors. We see that as
increases, the error
reduces.
 |
(69) |