A sensor that monitors the temperature of a backyard hot tub records the data shown in Table.
Table: Hot-Tub Temperature Dat
|
Time of Day
|
Temperature,
|
00 00
|
100
|
01:00
|
101
|
02:00
|
102
|
03:00
|
103
|
04:00
|
103
|
05:00
|
104
|
06:00
|
104
|
07:00
|
105
|
08:00
|
106
|
09:00
|
106
|
10:00
|
106
|
11:00
|
105
|
12:00
|
104
|
13:00
|
103
|
14:00
|
101
|
15:00
|
100
|
16:00
|
99
|
17:00
|
100
|
18:00
|
102
|
19:00
|
104
|
20:00
|
106
|
21:00
|
107
|
22:00
|
105
|
23:00
|
104
|
24:00
|
104
|
(a) The temperature should never exceed 105°F. Use the find function to find the index numbers of the temperatures that exceed the maximum allowable temperature.
(b) Use the length function with the results from part (a) to determine how many times the maximum allowable temperature was exceeded.
(c) Determine at what times the temperature exceeded the maximum allowable temperature, using the index numbers found in part (a).
(d) The temperature should never be lower than 102°F. Use the find function together with the length function to determine how many times the temperature was less than the minimum allowable temperature.
( e) Determine at what times the temperature was less than the minimum allowable temperature.
( f) Determine at what times the temperature was within the allowable limits (i.e., between 102°F and 105°F, inclusive).
(g) Use the max function to determine the maximum temperature reached and the time at which it occurred.