AREA, DISPLACEMENT, DISTANCE
Calculus II Project
Objective:
To learn how to use integrals to compute areas, displacements, and distances. You can use Maple to graph functions, to solve equations, and to evaluate integrals.
Solved Example 1:
Compute the area enclosed by
the curve y =
and the x -axis.
Solution:
First let's plot the curve to get an idea of the region whose area we need to compute.
> plot(1-x-x^2,x=-2.5..1);
To compute the area we have to find the two x -intercepts. We'll use Maple to solve the equation y = 0 .
> xint:=[solve(1-x-x^2,x)];
Since y is positive for all x between the two intercepts, the area in question is the definite integral.
> area:=Int(1-x-x^2,x=xint[2]..xint[1]);
> area:=int(1-x-x^2,x=xint[2]..xint[1]);
> simplify(%);
The area is
.
Solved Example 2:
A particle is moving along a
straight line. The velocity function is
in meters per second.
a) Find the displacement in the time period from t = 1 to t = 5.2.
b) Find the distance traveled in the time period from t = 1 to t = 5.2.
Solution:
> v:=t->t^4-5*t^3-t+15;
a) The displacement is the integral:
> Int(v(t),t=1..5.2);
> int(v(t),t=1..5.2);
The displacement is -102.5 meters.
b) The
distance traveled by the particle is
. To evaluate this integral we have to look at the
graph of v ( t
).
> plot(v(t),t=0..7,y=-80..50);
The distance is
. We have to find the x -intercepts
of the function.
> solve(v(t),t);
Perhaps fsolve will work better.
> fsolve(v(t),t);
It does. Let's name the two solutions.
> xinter:=[fsolve(v(t),t)];
> distance:=Int(v(t),t=1..xinter[1])-Int(v(t),t=xinter[1]..xinter[2])+Int(v(t),t=xinter[2]..5.2);
> distance:=int(v(t),t=1..xinter[1])-int(v(t),t=xinter[1]..xinter[2])+int(v(t),t=xinter[2]..5.2);
_______________________________________________________________________________
Assignment
Problem 1
Find the area enclosed by the
curve y =
and the x -axis.
Problem 2
A particle is moving along a
straight line. The velocity function is
in meters per
second.
a) Find the displacement in the time period from t = 1 to t = 5.
b) Find the distance traveled in the time period from t = 1 to t = 5.
____________________________________________________________
MSIP Grant #P120A80089-98: "Three Urban Calculus Reform Programs: Adopting the Best," 1998-2001; MSEIP Grant #P120AA010031: "Four Colleges: Calculus + Enhancements", 2001-2004