| > | restart; problem #19 |
| > | N:=t->-.08*t^3+.4*t^2+8.08*t; #define our function |
| > | N1:=D(N); #find derivative |
| > | N2:=D(N1); #find second deriv |
| > | solve(N2(t)=0,t); #find inflection points |
| > | T:=%; #our answer, in time after 3:00 |
| > | (T-1)*60; #convert decimal part of hour to minutes |
Conclusion: 3:00 + 1:40 = 4:40 = time of maximal rate
-----------visual verification:
| > | plot(N1(t),t=0..8,title="rate of assembly"); |