Application of integration: 5.3.58
Given the rate of change in sales
where t = years after 1990,
and given that sales in 1992 were 55484,
a) find s(t).
b) find sales in 1998.
| > | restart; |
| > | s1:=t->2.38*t+10.8/t; #given rate of change in sales at time t |
| > | Int(s1(t),t); value(%); # the symbol % refers to the previous output |
| > | s:=%+C;
#name the sales function obtained by integration, with an unknown added constant C
s:=unapply(%,t); |
| > | solve(s(2)=55484,C); #plug in the given FACT to find C |
| > | C:=%: #assign C to the previous output |
| > | s(t); #our final answer to (a) |
| > | evalf(s(2)); #check FACT that was given |
| > | D(s); #check derivative |
| > | s(8);
#evaluate the model at t = 8 (1998)
evalf(%); #our answer to (b) |