'Integration/Applications of Integration'에 해당되는 글 3건

  1. 2011.06.01 Arc Length and Surfaces of Revolution
  2. 2011.06.01 Volume: The Washer Method
  3. 2011.06.01 Volume: The Disk Method

A rectifiable curve is one that has a finite arc length.
A sufficient condition for the graph of a function f to be rectifiable between (a,f(a)) and (b,f(b)) is
that f' be continuous on [a,b]. Such a function is continuously differentiable on [a,b], and
its graph on the interval [a,b] is a smooth curve.

\[  
s = \int ds = \int_a^b \sqrt{1 + f^\prime(x)^2} ~dx 
 \]


If the graph of a continuous function is revolved about a line, the resulting surface is
a surface of revolution.
The area A of the surface of revolution formed by rovolving the graph of f about a horizontal
or vertical axis is

\[ 
A = \int_a^b 2\pi f(x) \sqrt{1 + f^\prime(x)^2}~dx 
 \]

where f(x) is the distance between the graph of f and the axis of revolution.

Usually, f(x) is equal to the distance between the graph of f and the axis of revolution,
like this example.



SurfaceOfRevolution(x^3,0..1,
'axis'='horizontal','distancefromaxis'
=0,'output'='plot');















But sometimes r(x) has a different value with f(x) like below problem.
It can be common mistake in solving surface area problems.



SurfaceOfRevolution(x^2,0..2^(1/2),
'axis'='vertical',
'distancefromaxis'=0,'output'='plot');

'Integration > Applications of Integration' 카테고리의 다른 글

Volume: The Washer Method  (0) 2011.06.01
Volume: The Disk Method  (0) 2011.06.01
Posted by suziepark

The disk method can be extende to cover solids of revolution with holes by replacing the representative disk with a representative washer.

To see how this concept can be used to find the volume of a solid of revolution, consider a region bounded by an outer radius Ro(x) and an inner radius Ri(x).

V= \pi \int_a^b \left({\left[R_O(x)\right]}^2 - {\left[R_I(x)\right]}^2\right) \mathrm{d}x

Here are examples which show how washers are adding up.



VolumeOfRevolution
(x^(1/2),x^2,0..1,'axis'=
'horizontal',
'distancefromaxis'=0,
'output'='plot');


















VolumeOfRevolution
(x^(1/2),x^2,0..1,'axis'=
'horizontal',
'distancefromaxis'=0,
'output'='animation');


'Integration > Applications of Integration' 카테고리의 다른 글

Arc Length and Surfaces of Revolution  (0) 2011.06.01
Volume: The Disk Method  (0) 2011.06.01
Posted by suziepark

If a region in the plane is revolved about a line, the resulting solid is a solid of revolution,
and the line is called the axis of revolution.

To see how to use the volume of a disk to find the volume of a general solid of revolution, consider a solid of revolution formed by revolving the plane region about the indicated axis.

V= \pi \int_a^b {\left[R(x)\right]}^2\ \mathrm{d}x

Here are examples that explain how this method works.



VolumeOfRevolution(sqrt(sin(x)),
0,0..π,'axis'='horizontal',
'distancefromaxis'=0,output=
plot)
















VolumeOfRevolution(sqrt(sin(x)),
0,0..π,'axis'='horizontal',
'distancefromaxis'=0,output=
animation)













This figure shows adding disks in the general solid, which is the basic concept of the disk method.
As divided terms are decreasing to zero, or subinterval n is increasing to infinity,
it makes the formula above.


'Integration > Applications of Integration' 카테고리의 다른 글

Arc Length and Surfaces of Revolution  (0) 2011.06.01
Volume: The Washer Method  (0) 2011.06.01
Posted by suziepark