Math 152 Project 2
Derivatives as Rates of Change
You need to use Maple to do this project. To run maple, click start-programs-Maple V Release 1 - Maple V release 1.
Be sure that you type carefully and include semicolons at the end of each line!.
The company Sober Labs, Inc., is testing a drug called Soberol which is supposed to speed up the removal of alcohol from blood. Blood alchohol content can be modeled by the function
![]()
where t is the time (measured in minutes) elapsed after having a drink and ( a,b ) are constants depending on the amount of alcohol ingested and bodily characteristics of the patient.
To do this task using Maple you type:
solve({5*a/(1+b*5^2)=.0003,15*a/(1+b*15^2)=.0008},{a,b});
Maple will give you a value for a and b.
To set those values as a and b in Maple
type:
a: = #1; b:=#2;
Where #1 and #2 are the values maple gave you
for a and b respectively
To do this you must first define the function A by typing:
A:=t->a*t/(1+b*t^2);
where a and b are the values you got in 1.
Then plot by typing:
plot(A,
0..240);
Maple gives you a plot of the function.
You can do this using Maple by calculating the derivative and solving for
the t
where it equals 0. To calculate the derivative of the function and name it Aprime
you type:
Aprime :=D(A)
You can see a simplified version of the derivative by typing
simplify(Aprime);
Then find the time for which this is 0 by using the solve function, only this time we are only solving one equation for one variable:
solve(Aprime(t)=0,t);
Maple does this if you type:
A(tmax);
Where tmax is the value you calculated in step 3.