
P1: OSO/OVY P2: OSO/OVY QC: OSO/OVY T1: OSO
MHDQ256-Ch04 MHDQ256-Smith-v1.cls December 13, 2010 21:23
LT (Late Transcendental)
CONFIRMING PAGES
310 CHAPTER 4
..
Integration 4-60
38. Prove the following formula, which is basic to
Simpson’s Rule. If f (x) = Ax
2
+ Bx + C, then
h
−h
f (x) dx =
h
3
[ f (−h) +4 f (0) + f (h)].
39. A commonly used type of numerical integration algorithm is
called Gaussian quadrature. For an integral on the inter-
val [−1, 1], a simple Gaussian quadrature approximation is
1
−1
f (x) dx ≈ f
−1
√
3
+ f
1
√
3
. Show that, like Simpson’s
Rule, this Gaussian quadrature gives the exact value of the
integrals of the power functions x, x
2
and x
3
.
40. Referring to exercise 39, compare the Simpson’s Rule (n = 2)
and Gaussian quadrature approximations of
1
−1
π cos
π x
2
dx
to the exact value.
41. Explain why Simpson’s Rule can’t be used to approxi-
mate
π
0
sin x
x
dx. Find L = lim
x→0
sin x
x
and argue that if
f (x) =
sin x
x
if x = 0
L if x = 0
then
π
0
f (x) dx =
π
0
sin x
x
dx.
Use an appropriate numerical method to conjecture that
π
0
sin x
x
dx ≈ 1.18
π
2
.
42. As in exercise 41, approximate
π/2
−π/2
sin x
x
dx.
43. In most of the calculations that you have done, it is true
that the Trapezoidal Rule and Midpoint Rule are on oppo-
site sides of the exact integral (i.e., one is too large, the other
too small). Also, you may have noticed that the Trapezoidal
Rule tends to be about twice as far from the exact value as
the Midpoint Rule. Given this, explain why the linear com-
bination
1
3
T
n
+
2
3
M
n
should give a good estimate of the inte-
gral. (Here, T
n
represents the Trapezoidal Rule approximation
using n partitions and M
n
the corresponding Midpoint Rule
approximation.)
44. Show that the approximation rule
1
3
T
n
+
2
3
M
n
in exercise 43 is
identical to Simpson’s Rule.
45. For f (x) =
x
2
2x
2
− 2x + 1
, show that f (x) + f (1 − x) = 1
for 0 ≤ x ≤ 1. Show that this implies that the Trapezoidal
Rule approximation of
1
0
f (x) dx equals
1
2
for any n. This is,
in fact, the exact value of the integral. (For more information,
see M. A. Khan’s article in the January 2008 College Mathe-
matics Journal.)
46. Show that the Trapezoidal Rule approximation of
n
0
x
n
dx is
too large (if n > 1). Conclude that
1
n
+ 2
n
+ 3
n
+···+n
n
> n
n
3n + 1
2n + 2
.
APPLICATIONS
In exercises 47 and 48, the velocity of an object at various times
is given. Use the data to estimate the distance traveled.
47.
t (s) 0 1 2 3 4 5 6
v(t) (ft/s) 40 42 40 44 48 50 46
t (s) 7 8 9 10 11 12
v(t) (ft/s) 46 42 44 40 42 42
48.
t (s) 0 2 4 6 8 10 12
v(t) (ft/s) 26 30 28 30 28 32 30
t (s) 14 16 18 20 22 24
v(t) (ft/s) 33 31 28 30 32 32
............................................................
In exercises 49 and 50, the data come from a pneumotacho-
graph, which measures air flow through the throat (in liters per
second). The integral of the air flow equals the volume of air
exhaled. Estimate this volume.
49.
t (s) 0 0.2 0.4 0.6 0.8 1.0 1.2
f (t) (l/s) 0 0.2 0.4 1.0 1.6 2.0 2.2
t (s) 1.4 1.6 1.8 2.0 2.2 2.4
f (t) (l/s) 2.0 1.6 1.2 0.6 0.2 0
50.
t (s) 0 0.2 0.4 0.6 0.8 1.0 1.2
f (t) (l/s) 0 0.1 0.4 0.8 1.4 1.8 2.0
t (s) 1.4 1.6 1.8 2.0 2.2 2.4
f (t) (l/s) 2.0 1.6 1.0 0.6 0.2 0
EXPLORATORY EXERCISES
1. Compute the Trapezoidal Rule approximations T
4
, T
8
and T
16
of
1
0
3x
2
dx, and compute the error for each. Verify that when
the step size is cut in half, the error is divided by four. When
such patterns emerge, they can be taken advantage of using
extrapolation. Given that (T
4
− I ) = 4(T
8
− I ), where I = 1
is the exact integral, show that I = T
8
+
T
8
− T
4
3
. Also, show
that I = T
16
+
T
16
− T
8
3
. In general, we have the approxima-
tions (T
4
− I ) ≈ 4(T
8
− I ) and I ≈ T
8
+
T
8
− T
4
3
. Then the
extrapolation E
2n
= T
2n
+
T
2n
− T
n
3
is closer to the exact in-
tegral than either of the individual Trapezoidal Rule approxi-
mationsT
2n
andT
n
.Showthat,infact, E
2n
equalstheSimpson’s
Rule approximation for 2n.
2. The geometric construction of Simpson’s Rule makes it clear
that Simpson’s Rule will compute integrals such as
1
0
3x
2
dx
exactly. Briefly explain why. Now, compute Simpson’s Rule
with n = 2 for
1
0
4x
3
dx. Simpson’s Rule also computes inte-
grals of cubics exactly. In this exercise, we see why a method
that uses parabolas can compute integrals of cubics exactly. To
see howSimpson’s Rule works on
1
0
4x
3
dx, we need todeter-
mine the actual parabola being used. The parabola must pass
through the points (0, 0), (
1
2
,
1
2
) and (1, 4). Find the quadratic
function y = ax
2
+ bx +c that accomplishes this. (Hint: Ex-
plainwhy0 = 0 + 0 +c,
1
2
=
a
4
+
b
2
+ c and4 = a + b + c,