Chapter 5: Applications of Integration
Section 5.7: Centroids
|
Example 5.7.8
|
|
Determine the centroid of , the curve defined parametrically by the equations , .
|
|
|
|
Solution
|
|
The expression for in the case of a parametrically defined curve is given by the last entry in Table 5.4.1. Unfortunately, for this curve , this expression is so unwieldy that the resulting integrals cannot be evaluated in closed form. Hence, all the ensuing integrals are evaluated numerically.
Initialize
|
•
|
Context Panel: Assign Function
|
|
|
•
|
Context Panel: Assign Function
|
|
|
Calculate the arc length
|
•
|
Expression palette: Definite Integral template
|
•
|
Context Panel: 2-D Math≻Convert To≻Inert Form
|
•
|
Context Panel: Approximate≻10 (digits)
|
•
|
Context Panel: Assign to a Name≻
|
|
|
Calculate
|
•
|
Expression palette: Definite Integral template
|
•
|
Context Panel: 2-D Math≻Convert To≻Inert Form
|
•
|
Context Panel: Approximate≻10 (digits)
|
|
|
Calculate
|
•
|
Expression palette: Definite Integral template
|
•
|
Context Panel: 2-D Math≻Convert To≻Inert Form
|
•
|
Context Panel: Approximate≻10 (digits)
|
|
|
|
|
•
|
Figure 5.7.8(a) contains a graph of the parametrically defined curve , and its centroid (red dot).
|
•
|
Note that again, the centroid of the curve does not lie on the curve.
|
|
>
|
use plots in
module()
local p1,p2,X,Y;
X:=t*cos(t);
Y:=t^2*sin(t);
p1 := plot([X,Y,t=0..1], color = black);
p2 := plot([[0.4182510455, 0.3007887662]], style = point, symbol = solidcircle, symbolsize = 25, color = red);
print(display(p1, p2, scaling = constrained,labels=[x,y],tickmarks=[3,4]));
end module:
end use:
|
|
Figure 5.7.8(a) Curve and its centroid
|
|
|
|
|
|
|
|
<< Previous Example Section 5.7
Next Section >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|