next up previous
Next: Exercises Up: Newton's Law of Cooling Previous: Newton's Law of Cooling

Example

A cup of coffee is poured from a potwhose contents are tex2html_wrap_inline304 into a non-insulated cup in a room at tex2html_wrap_inline306 . After a minute, the coffee has cooled to tex2html_wrap_inline308 . How much time is required before the coffee reaches a drinkable temperature of tex2html_wrap_inline310 ?

  1. Enter the equation.
      > eq1:= T = exp(k*t+C) +20;
    

    displaymath288

  2. Solve for C by using the initial temperature.
      > eq2:= subs({t=0,T=95},eq1);
    

    displaymath289

      > C:=evalf(solve(eq2,C));
    

    displaymath290

  3. Solve for k by using the temperature at t=1.
      > eq3:=subs({t=1,T=90},eq1);
    

    displaymath291

      > k:=solve(eq3,k);
    

    displaymath292

  4. Look at the original equation and notice that the only variable is t. Proceed to enter desired temperature and solve for t.
      > eq1;
    

    displaymath293

      > eq4:=subs(T=65,eq1);
    

    displaymath294

      > solve(eq4,t);
    

    displaymath295

The time it takes for the coffee to reach tex2html_wrap_inline310 is 7.4 minutes.



Roxanne Tisch
Tue Sep 24 13:59:38 EDT 1996