Chapter 8: Applications of Triple Integration
Section 8.2: Average Value
Example 8.2.1
Obtain the average value of fx,y,z=x y z over R, the tetrahedron bounded by the planes x+3 y+z=5, x=3 y, x=0, z=0. (See Example 8.1.1.)
Solution
Mathematical Solution
The average value of f over R is defined as ∫∫∫Rf dv∫∫∫R1 dv. For the given values of f and R, obtain
∫05∫05−x/3∫05−x−3⁢yx⁢y⁢z dz dy dx∫05∫05−x/3∫05−x−3⁢y1 dz dy dx = 3125129612518 = 2572
Maple Solution - Interactive
Because the triple integral over R can be iterated in Cartesian coordinates in the order dz dy dx, the task template in Table 8.2.1(a), implementing the FunctionAverage command from the Student MultivariateCalculus package, can be used.
Tools≻Tasks≻Browse: Calculus - Multivariate≻Integration≻Average Value≻Cartesian 3-D
Average Value of a Function: fx,y,z
Function
x y z
x⁢y⁢z
Region: z1x,y≤z≤z2x,y,y1x≤y≤y2x,a≤x≤b
z1x,y
0
z2x,y
5−x−3 y
5−x−3⁢y
y1x
y2x
5−x/3
53−13⁢x
a
b
5
Inert integral: dz dy dx
StudentMultivariateCalculusFunctionAverage,z=..,y=..,x=..,output=integral
∫05∫053−13⁢x∫05−x−3⁢yx⁢y⁢zⅆzⅆyⅆx∫05∫053−13⁢x∫05−x−3⁢y1ⅆzⅆyⅆx
Value
StudentMultivariateCalculusFunctionAverage,z=..,y=..,x=..
2572
Table 8.2.1(a) Solution by task template implementing the FunctionAverage command
To implement a solution from first principles, evaluate the integral of f over R and divide by the volume computed in Example 8.1.1. To integrate f over R, use the visualization task template in Table 8.2.1(b).
Tools≻Tasks≻Browse: Calculus - Multivariate≻Integration≻Visualizing Regions of Integration≻Cartesian 3-D
Evaluate ∭RΨx,y,z dv and Graph R
Volume Element dv
Select dvdz dy dxdz dx dydx dy dzdx dz dydy dx dzdy dz dx
, where Ψ=
F=
G=
b=
f=
g=
a=
Table 8.2.1(b) Integration of f over R by visualization task template
Table 8.2.1(c) completes the solution from first principles.
Copy and paste the value of ∫∫∫Rf dv
Divide by the volume of R from Example 8.1.1
Context Panel: Evaluate and Display Inline
31251296/12518 = 2572
Table 8.2.1(c) Completion of the solution from first principles
Maple Solution - Coded
Initialize
Install the Student MultivariateCalculus package.
withStudent:-MultivariateCalculus:
Define the function f.
f≔x y z:
Apply the FunctionAverage command from the Student MultivariateCalculus package
FunctionAveragef,z=0..5−x−3 y,y=0..5−x/3,x=0..5 = 2572
From first principles, verify this result by integrating f over R and dividing by V, the volume of R.
Use the MultiInt command to obtain Q, the integral of f over R
Q≔MultiIntf,z=0..5−x−3 y,y=0..5−x/3,x=0..5
31251296
Use the MultiInt command to obtain V, the volume of R
V≔MultiInt1,z=0..5−x−3 y,y=0..5−x/3,x=0..5
12518
Divide Q by V
Q/V = 2572
<< Chapter Overview Section 8.2 Next Example >>
© 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
Download Help Document