Integration accumulates. Choose the slice, write its contribution, and add them up — which is the same procedure for every problem in this unit.
By the end of this chapter you can
Find the area between two curves
Compute a volume by discs, washers, or known cross-sections
Choose the variable of integration deliberately
Recognise the one procedure underneath all of them
This unit looks like a list of formulas and is not. Every problem in it is the
same three steps:
Slice the region into pieces of thickness dx or dy.
Write one slice’s contribution — its area or volume.
Integrate across the range the slices cover.
Memorising four formulas is harder than learning that, and it fails on the fifth
problem.
Area between curves
A slice is a thin rectangle of height “top minus bottom” and width dx:
A=∫ab(f(x)−g(x))dx
For the region between y=x and y=x2 from 0 to 1, the line is above
the parabola throughout:
∫(−x2+x)dx=−3x3+2x2
61=61
checked by the build
So the area is 61. The verified lines are the antiderivative and the
evaluation, which is the whole calculation.
Volume by discs
Rotate a region about an axis and each slice sweeps out a disc of radius equal
to the function’s value:
V=π∫ab[f(x)]2dx
Rotating y=x from 0 to 4 about the x-axis:
∫xdx=2x2
8π=8π
checked by the build
The radius is x, so the radius squared is just x, and the volume is
8π.
That πr2 is the area of a circle — the disc formula is not a new fact, it
is step 2 of the procedure with a circular slice.
Volume by washers
When the solid has a hole, the slice is an annulus: subtract the inner disc from
the outer.
V=π∫ab(Router2−Rinner2)dx
∫(−x4+x2)dx=−5x5+3x3
152π=152π
checked by the build
That is the region between y=x and y=x2 from 0 to 1 rotated about
the x-axis: outer radius x, inner radius x2, volume 152π.
Known cross-sections
The general case, and the one that shows the formulas were never the point. If
the slice is a square, a semicircle, or an equilateral triangle rather than a
disc, only step 2 changes:
Cross-section
Area of one slice
square, side s
s2
semicircle, diameter s
8πs2
equilateral triangle, side s
43s2
with s the distance between the bounding curves at that x.
∫x2dx=3x3
123=123
checked by the build
Squares on the region under y=x from 0 to 1 give ∫01x2dx=31; equilateral triangles on the same base give 123.
Same slicing, same limits, different slice area.
Choosing the variable
Slice perpendicular to the axis of rotation, and in the direction that
avoids splitting the region.
Rotating about a horizontal axis → slices are vertical → integrate dx.
Rotating about a vertical axis → slices are horizontal → integrate dy,
which means rewriting the curves as x in terms of y.
A region whose top boundary changes partway along needs two integrals in x but
often only one in y. Spending thirty seconds choosing can halve the work, and
the choice is where the marks quietly are.
{
"question": "A solid has circular base of radius 2, and cross-sections perpendicular to the x-axis are squares. What does the integrand look like?",
"options": [
{
"text": "The side is the full chord 2√(4 − x²), so the integrand is 4(4 − x²)",
"correct": true,
"why": "The circle x² + y² = 4 has half-chord √(4 − x²), so the full chord — the square's side — is twice that. Squaring gives 4(4 − x²)."
},
{
"text": "π(4 − x²), the area of a circular slice",
"correct": false,
"why": "That is the disc formula, for a solid of revolution. Here the cross-sections are squares, so step 2 of the procedure uses s² rather than πr²."
},
{
"text": "√(4 − x²), the half-chord",
"correct": false,
"why": "Two errors: the side is the full chord, not half of it, and a square's area is the side squared rather than the side itself."
},
{
"text": "(4 − x²), the half-chord squared",
"correct": false,
"why": "Right to square, but the side is the whole chord. Using the half-chord loses a factor of 4 in the final answer."
}
]
}