forked from byoshiwara/mfg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchap1-rev-problems.xml
More file actions
1282 lines (1164 loc) · 55.4 KB
/
chap1-rev-problems.xml
File metadata and controls
1282 lines (1164 loc) · 55.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!-- This file was originally part of the book -->
<!-- Modeling, Functions, and Graphs -->
<!-- 4th -->
<!-- Copyright (C) Katherine Yoshiwara -->
<exercises xml:id="chap1-rev-problems" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Review Problems</title>
<exercisegroup >
<introduction><p>Write and graph a linear equation for each situation. Then answer the questions.</p></introduction>
<exercise number="1">
<statement><p>
Last year, Pinwheel Industries introduced a new model calculator. It cost <m>\$2000</m> to develop the calculator and <m>\$20</m> to manufacture each one.
<ol label="a">
<li><p>Complete the table of values showing the total cost, <m>C</m>, of producing <m>n</m> calculators.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>n</m></cell>
<cell><m>100</m></cell>
<cell><m>500</m></cell>
<cell><m>800</m></cell>
<cell><m>1200</m></cell>
<cell><m>1500</m></cell>
</row>
<row>
<cell><m>C</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
</row>
</tabular></sidebyside>
</p></li>
<li><p>Write an equation that expresses <m>C</m> in terms of <m>n</m>.</p></li>
<li><p>Graph the equation by hand.</p></li>
<li><p>What is the cost of producing <m>1000</m> calculators? Illustrate this as a point on your graph.</p></li>
<li><p>How many calculators can be produced for <m>\$10,000</m>? Illustrate this as a point on your graph.</p></li>
</ol>
</p></statement>
<answer><p>
<ol label="a">
<li><p><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>n</m></cell>
<cell><m>100</m></cell>
<cell><m>500</m></cell>
<cell><m>800</m></cell>
<cell><m>1200</m></cell>
<cell><m>1500</m></cell>
</row>
<row>
<cell><m>C</m></cell>
<cell><m>4000</m></cell>
<cell><m>12,000</m></cell>
<cell><m>18,000</m></cell>
<cell><m>26,000</m></cell>
<cell><m>32,000</m></cell>
</row>
</tabular></p></li>
<li><p><m>C = 20n + 2000</m></p></li>
<li><p><image source="images/fig-ans-chap1-rev-1" width="60%"><description>cost vs number</description></image> </p></li>
<li><p><m>\$22,000</m></p></li>
<li><p><m>400</m></p></li>
</ol>
</p></answer>
</exercise>
<exercise number="2">
<statement><p>
Megan weighed <m>5</m> pounds at birth and gained <m>18</m> ounces per month during her first year.
<ol label="a">
<li><p>Complete the table of values for Megan's weight, <m>w</m>, in terms of her age, <m>m</m>, in months.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>m</m></cell>
<cell><m>2</m></cell>
<cell><m>4</m></cell>
<cell><m>6</m></cell>
<cell><m>9</m></cell>
<cell><m>12</m></cell>
</row>
<row>
<cell><m>w</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
<cell><m>\hphantom{0000}</m></cell>
</row>
</tabular></sidebyside>
</p></li>
<li><p>Write an equation that expresses <m>2</m> in terms of <m>m</m>.</p></li>
<li><p>Graph the equation by hand.</p></li>
<li><p>How much did Megan weigh at <m>9</m> months? Illustrate this as a point on your graph.</p></li>
<li><p>When did Megan weigh <m>9</m> pounds? Illustrate this as a point on your graph.</p></li>
</ol>
</p></statement>
</exercise>
<exercise number="3">
<statement><p>The total amount of oil remaining in 2005 is estimated at <m>2.1</m> trillion barrels, and total annual consumption is about <m>28</m> billion barrels.
<ol label="a">
<li><p>Assuming that oil consumption continues at the same level, write an equation for the remaining oil, <m>R</m>, as a function of time, <m>t</m> (in years since 2005).</p></li>
<li><p>Find the intercepts and graph the equation by hand.</p></li>
<li><p>What is the significance of the intercepts to the world's oil supply?</p></li>
</ol>
</p></statement>
<answer><p>
<ol label="a">
<li><p><m>R = 2100 - 28t</m></p></li>
<li><p><m>(75, 0)</m>, <m>(0, 2100)</m></p></li>
<li><p><m>t</m>-intercept: The oil reserves will be gone in 2080; <m>R</m>-intercept: There were <m>2100</m> billion barrels of oil reserves in 2005.</p></li>
</ol>
</p></answer>
</exercise>
<exercise number="4">
<statement><p>The world's copper reserves were <m>950</m> million tons in 2004; total annual consumption was <m>16.8</m> million tons.
<ol label="a">
<li><p>Assuming that copper consumption continues at the same level, write an equation for the remaining copper reserves, <m>R</m>, as a function of time, <m>t</m> (in years since 2004).</p></li>
<li><p>Find the intercepts and graph the equation by hand.</p></li>
<li><p>What is the significance of the intercepts to the world's copper supply?</p></li>
</ol>
</p></statement>
</exercise>
<exercise number="5">
<statement><p>The owner of a movie theater needs to bring in <m>\$1000</m> at each screening in order to stay in business. He sells adult tickets at <m>\$5</m> apiece and children's tickets at <m>\$2</m> each.
<ol label="a">
<li><p>Write an equation that relates the number of adult tickets, <m>A</m>, he must sell and the number of children's tickets, <m>C</m>.</p></li>
<li><p>Find the intercepts and graph the equation by hand.</p></li>
<li><p>If the owner sells <m>120</m> adult tickets, how many children's tickets must he sell?</p></li>
<li><p>What is the significance of the intercepts to the sale of tickets?</p></li>
</ol>
</p></statement>
<answer><p>
<ol label="a">
<li><p><m>2C + 5A = 1000</m></p></li>
<li><p><m>(500, 0)</m>, <m>(0, 200)</m>
<image source="images/fig-ans-chap1-rev-5" width="45%">
<description>
Adult tickets vs Children's tickets
</description>
</image>
</p></li>
<li><p><m>C</m>-intercept: If no adult tickets are sold, he must sell <m>500</m> children's tickets; <m>A</m>-intercept: If no children's tickets are sold, he must sell <m>200</m> adult tickets.</p></li>
</ol>
</p></answer>
</exercise>
<exercise number="6">
<statement><p>Alida plans to spend part of her vacation in Atlantic City and part in Saint-Tropez. She estimates that after airfare her vacation will cost <m>\$60</m> per day in Atlantic City and <m>$100</m> per day in Saint-Tropez. She has <m>\$1200</m> to spend after airfare.
<ol label="a">
<li><p>Write an equation that relates the number of days, <m>C</m>, Alida can spend in Atlantic City and the number of days, <m>T</m>, in Saint-Tropez.</p></li>
<li><p>Find the intercepts and graph the equation by hand.</p></li>
<li><p>If Alida spends <m>10</m> days in Atlantic City, how long can she spend in Saint-Tropez?</p></li>
<li><p>What is the significance of the intercepts to Alida's vacation?</p></li>
</ol>
</p></statement>
</exercise>
</exercisegroup>
<exercisegroup cols="3"><introduction><p>Graph each equation on graph paper. Use the most convenient method for each problem.</p></introduction>
<exercise number="7">
<statement>
<p><m>4x - 3y = 12</m></p>
</statement>
<answer><p><image source="images/fig-ans-chap1-rev-7" width="40%"><description>line in fourth quadrant</description></image>
</p></answer>
</exercise>
<exercise number="8">
<statement>
<p><m>\dfrac{x}{6}- \dfrac{y}{12}= 1</m></p>
</statement>
</exercise>
<exercise number="9">
<statement>
<p><m>50x = 40y - 20,000</m></p>
</statement>
<answer><p><image source="images/fig-ans-chap1-rev-9" width="40%"><description>line in second quadrant</description></image>
</p></answer>
</exercise>
<exercise number="10">
<statement>
<p><m>1.4x + 2.1y = 8.4</m></p>
</statement>
</exercise>
<exercise number="11">
<statement>
<p><m>3x - 4y = 0</m></p>
</statement>
<answer><p><image source="images/fig-ans-chap1-rev-11" width="40%"><description>line through origin</description></image>
</p></answer>
</exercise>
<exercise number="12">
<statement>
<p><m>x = -4y</m></p>
</statement>
</exercise>
<exercise number="13">
<statement>
<p><m>4x = -12</m></p>
</statement>
<answer><p><image source="images/fig-ans-chap1-rev-13" width="40%"><description>vertical line</description></image>
</p></answer>
</exercise>
<exercise number="14">
<statement>
<p><m>2y - x = 0</m></p>
</statement>
</exercise>
</exercisegroup>
<exercisegroup cols="2"><introduction><p>Which of the following tables describe functions? Explain.</p></introduction>
<exercise number="15">
<statement>
<p><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>x</m></cell>
<cell><m>-2</m></cell>
<cell><m>-1</m></cell>
<cell><m>0</m></cell>
<cell><m>1</m></cell>
<cell><m>2</m></cell>
<cell><m>3</m></cell>
</row>
<row>
<cell><m>y</m></cell>
<cell><m>6</m></cell>
<cell><m>0</m></cell>
<cell><m>1</m></cell>
<cell><m>2</m></cell>
<cell><m>6</m></cell>
<cell><m>8</m></cell>
</row>
</tabular></p>
</statement>
<answer><p>A function: Each <m>x</m> has exactly one associated <m>y</m>-value.</p></answer>
</exercise>
<exercise number="16">
<statement>
<p><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>p</m></cell>
<cell><m>3</m></cell>
<cell><m>-3</m></cell>
<cell><m>2</m></cell>
<cell><m>-2</m></cell>
<cell><m>-2</m></cell>
<cell><m>0</m></cell>
</row>
<row>
<cell><m>q</m></cell>
<cell><m>2</m></cell>
<cell><m>-1</m></cell>
<cell><m>4</m></cell>
<cell><m>-4</m></cell>
<cell><m>3</m></cell>
<cell><m>0</m></cell>
</row>
</tabular></p>
</statement>
</exercise>
<exercise number="17">
<statement>
<p><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell>Student</cell>
<cell><line>Score on</line><line>IQ test</line></cell>
<cell><line>Score on</line><line>SAT test</line></cell>
</row>
<row>
<cell>(A)</cell>
<cell><m>118</m></cell>
<cell><m>649</m></cell>
</row>
<row>
<cell>(B)</cell>
<cell><m>98</m></cell>
<cell><m>450</m></cell>
</row>
<row>
<cell>(C)</cell>
<cell><m>110</m></cell>
<cell><m>590</m></cell>
</row>
<row>
<cell>(D)</cell>
<cell><m>105</m></cell>
<cell><m>520</m></cell>
</row>
<row>
<cell>(E)</cell>
<cell><m>98</m></cell>
<cell><m>490</m></cell>
</row>
<row>
<cell>(F)</cell>
<cell><m>122</m></cell>
<cell><m>680</m></cell>
</row>
</tabular></p>
</statement>
<answer><p>Not a function: The IQ of <m>98</m> has two possible SAT scores.</p></answer>
</exercise>
<exercise number="18">
<statement>
<p><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell>Student</cell>
<cell><line>Correct answers</line><line>on math quiz</line></cell>
<cell><line>Quiz</line><line>grade</line></cell>
</row>
<row>
<cell>(A)</cell>
<cell><m>13</m></cell>
<cell><m>85</m></cell>
</row>
<row>
<cell>(B)</cell>
<cell><m>15</m></cell>
<cell><m>89</m></cell>
</row>
<row>
<cell>(C)</cell>
<cell><m>10</m></cell>
<cell><m>79</m></cell>
</row>
<row>
<cell>(D)</cell>
<cell><m>12</m></cell>
<cell><m>82</m></cell>
</row>
<row>
<cell>(E)</cell>
<cell><m>16</m></cell>
<cell><m>91</m></cell>
</row>
<row>
<cell>(F)</cell>
<cell><m>18</m></cell>
<cell><m>95</m></cell>
</row>
</tabular></p>
</statement>
</exercise>
</exercisegroup>
<exercise number="19">
<statement><p>The total number of barrels of oil pumped by the AQ oil company is given by the formula <m>N(t) = 2000 + 500t</m>, where <m>N</m> is the number of barrels of oil <m>t</m> days after a new well is opened. Evaluate <m>N(10)</m> and explain what it means.</p>
</statement>
<answer><p><m>N(10) = 7000</m>: Ten days after the new well is opened, the company has pumped a total of <m>7000</m> barrels of oil.</p></answer>
</exercise>
<exercise number="20">
<statement><p>The number of hours required for a boat to travel upstream between two cities is given by the formula <m>H(v) = \dfrac{24}{v - 8}</m>, where <m>v</m> represents the boat's top speed in miles per hour. Evaluate <m>H(16)</m> and explain what it means.</p>
</statement>
</exercise>
<exercisegroup cols="4"><introduction><p>Which of the following graphs represent functions?</p></introduction>
<exercise number="21">
<statement><p><image source="images/fig-chap1-rev-21" width="90%"><description>curve</description></image> </p>
</statement>
<answer><p>Function</p></answer>
</exercise>
<exercise number="22">
<statement><p><image source="images/fig-chap1-rev-22" width="90%"><description>curve</description></image> </p>
</statement>
</exercise>
<exercise number="23">
<statement><p><image source="images/fig-chap1-rev-23" width="90%"><description>curve</description></image> </p>
</statement>
<answer><p>Not a function</p></answer>
</exercise>
<exercise number="24">
<statement><p><image source="images/fig-chap1-rev-24" width="90%"><description>curve</description></image> </p>
</statement>
</exercise>
</exercisegroup>
<exercisegroup ><introduction><p>Evaluate each function for the given values.</p></introduction>
<exercise number="25">
<statement><p><m>F(t)=\sqrt{1+4t^2}</m>, <m>~~F(0)~~</m> and <m>~~F(-3)</m> </p>
</statement>
<answer><p><m>F(0) = 1, ~~F(-3) =\sqrt{37}</m></p></answer>
</exercise>
<exercise number="26">
<statement><p><m>G(x)=\sqrt[3]{x-8}</m>, <m>~~G(0)~~</m> and <m>~~G(20)</m> </p>
</statement>
</exercise>
<exercise number="27">
<statement><p><m>h(v)=6-\abs{4-2v} </m>, <m>~~h(8)~~</m> and <m>~~h(-8)</m> </p>
</statement>
<answer><p><m>h(8) = -6, ~~h(-8) = -14</m></p></answer>
</exercise>
<exercise number="28">
<statement><p><m>m(p)=\dfrac{120}{p+15} </m>, <m>~~m(5)~~</m> and <m>~~m(-40)</m> </p>
</statement>
</exercise>
</exercisegroup>
<exercisegroup><introduction><p>Refer to the graphs shown for Problems 29 and 30.</p></introduction>
<exercise number="29">
<statement><p><ol label="a">
<li><p>Find <m>f (-2)</m> and <m>f (2)</m>.</p></li>
<li><p>For what value(s) of <m>t</m> is <m>f (t) = 4</m>?</p></li>
<li><p>Find the <m>t</m>- and <m>f(t)</m>-intercepts of the graph.</p></li>
<li><p>What is the maximum value of <m>f</m>? For what value(s) of <m>t</m> does <m>f</m> take on its maximum value?</p></li>
</ol>
<image source="images/fig-chap1-rev-29" width="35%">
<description>
curve
</description>
</image>
</p>
</statement>
<answer><p><ol label="a">
<li><p><m>f (-2) = 3, ~~f (2) = 5</m></p></li>
<li><p><m>t = 1, ~~t = 3</m></p></li>
<li><p><m>t</m>-intercepts <m>(-3, 0), (4, 0)</m>; <m>f (t)</m>-intercept: <m>(0, 2)</m></p></li>
<li><p>Maximum value of <m>5</m> occurs at <m>t = 2</m></p></li>
</ol>
</p></answer>
</exercise>
<exercise number="30">
<statement><p><ol label="a">
<li><p>Find <m>P(-3)</m> and <m>P(3)</m>.</p></li>
<li><p>For what value(s) of <m>z</m> is <m>P(z) = 2</m>?</p></li>
<li><p>Find the <m>z</m>- and <m>P(z)</m>-intercepts of the graph.</p></li>
<li><p>What is the minimum value of <m>P</m>? For what value(s) of <m>z</m> does <m>P</m> take on its minimum value?</p></li>
</ol>
<image source="images/fig-chap1-rev-30" width="35%">
<description>
curve
</description>
</image>
</p>
</statement>
</exercise>
</exercisegroup>
<exercisegroup ><introduction><p>Graph the given function on a graphing calculator. Then use the graph to solve the equations and inequalities. Round your answers to one decimal place if necessary.</p></introduction>
<exercise number="31">
<statement><p><m>y=\sqrt[3]{x} </m>
<ol label="a" cols="2">
<li><p>Solve <m>\sqrt[3]{x} = 0.8</m></p></li>
<li><p>Solve <m>\sqrt[3]{x} = 1.5</m></p></li>
<li><p>Solve <m>\sqrt[3]{x}\gt 1.7 </m></p></li>
<li><p>Solve <m>\sqrt[3]{x}\le 1.26 </m></p></li>
</ol>
</p>
</statement>
<answer><p><ol label="a" cols="2">
<li><p><m>x = \dfrac{1}{2}= 0.5</m></p></li>
<li><p><m>x = \dfrac{27}{8}\approx 3.4</m></p></li>
<li><p><m>x \gt 4.9</m> </p></li>
<li><p><m>x\le 2.0</m></p></li>
</ol>
</p></answer>
</exercise>
<exercise number="32">
<statement><p><m>y=\dfrac{1}{x} </m>
<ol label="a" cols="2">
<li><p>Solve <m>\dfrac{1}{x} = 2.5</m></p></li>
<li><p>Solve <m>\dfrac{1}{x} = 1.3125</m></p></li>
<li><p>Solve <m>\dfrac{1}{x}\ge 2.\overline{2} </m></p></li>
<li><p>Solve <m>\dfrac{1}{x}\lt 5</m></p></li>
</ol>
</p>
</statement>
</exercise>
<exercise number="33">
<statement><p><m>y=\dfrac{1}{x^2} </m>
<ol label="a" cols="2">
<li><p>Solve <m>\dfrac{1}{x^2} = 0.03</m></p></li>
<li><p>Solve <m>\dfrac{1}{x^2} = 6.25</m></p></li>
<li><p>Solve <m>\dfrac{1}{x^2}\gt 0.16 </m></p></li>
<li><p>Solve <m>\dfrac{1}{x^2}\le 4</m></p></li>
</ol>
</p>
</statement>
<answer><p><ol label="a" cols="2">
<li><p><m>x\approx\pm 5.8 </m></p></li>
<li><p><m>x = \pm 0.4</m></p></li>
<li><p><m>-2.5\lt x \lt 0</m> or <m>0\lt x\lt 2.5</m></p></li>
<li><p><m>x\le -0.5</m> or <m>x\ge 0.5</m></p></li>
</ol>
</p></answer>
</exercise>
<exercise number="34">
<statement><p><m>y=\sqrt{x} </m>
<ol label="a" cols="2">
<li><p>Solve <m>\sqrt{x} = 0.707</m></p></li>
<li><p>Solve <m>\sqrt{x} = 1.7</m></p></li>
<li><p>Solve <m>\sqrt{x}\lt 1.5 </m></p></li>
<li><p>Solve <m>\sqrt{x}\ge 1.3 </m></p></li>
</ol>
</p>
</statement>
</exercise>
</exercisegroup>
<exercisegroup ><introduction><p>Evaluate each function.</p></introduction>
<exercise number="35">
<statement><p><m>H(t)=t^2+2t</m>, <m>~~H(2a)~~</m> and <m>~~H(a+1)</m> </p>
</statement>
<answer><p><m>H(2a) =4a^2 + 4a, ~~H(a+1) =a^2+4a+3</m></p></answer>
</exercise>
<exercise number="36">
<statement><p><m>F(x)=2-3x</m>, <m>~~F(2)+F(3)~~</m> and <m>~~F(2+3)</m> </p>
</statement>
</exercise>
<exercise number="37">
<statement><p><m>f(x)=2x^2-4 </m>, <m>~~f(a)+f(b)~~</m> and <m>~~f(a+b)</m> </p>
</statement>
<answer><p><m>f (a) + f (b) = 2a^2 + 2b^2 - 8, ~~f (a + b) = 2a^2 + 4ab + 2b^2 - 4</m></p></answer>
</exercise>
<exercise number="38">
<statement><p><m>G(t)=1-t^2 </m>, <m>~~G(3w)~~</m> and <m>~~G(s+1)</m> </p>
</statement>
</exercise>
</exercisegroup>
<exercise number="39">
<statement><p>A spiked volleyball travels <m>6</m> feet in <m>0.04</m> seconds. A pitched baseball travels <m>66</m> feet in <m>0.48</m> seconds. Which ball travels faster? </p>
</statement>
<answer><p>The volleyball</p></answer>
</exercise>
<exercise number="40">
<statement><p>Kendra needs <m>412</m> gallons of Luke's Brand primer to cover <m>1710</m> square feet of wall. She uses <m>513</m> gallons of Slattery's Brand primer for <m>2040</m> square feet of wall. Which brand covered more wall per gallon? </p>
</statement>
</exercise>
<exercise number="41">
<statement><p>Which is steeper, Stone Canyon Drive, which rises <m>840</m> feet over a horizontal distance of <m>1500</m> feet, or Highway 33, which rises <m>1150</m> feet over a horizontal distance of <m>2000</m> feet? </p>
</statement>
<answer><p>Highway 33</p></answer>
</exercise>
<exercise number="42">
<statement><p>The top of Romeo's ladder is on Juliet's window sill that is <m>11</m> feet above the ground, and the bottom of the ladder is <m>5</m> feet from the base of the wall. Is the incline of this ladder as steep as a firefighter's ladder that rises a height of <m>35</m> feet over a horizontal distance of <m>16</m> feet? </p>
</statement>
</exercise>
<exercise number="43">
<statement><p>The table shows the amount of oil, <m>B</m> (in thousands of barrels), left in a tanker <m>t</m> minutes after it hits an iceberg and springs a leak.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>t</m></cell>
<cell><m>0</m></cell>
<cell><m>10</m></cell>
<cell><m>20</m></cell>
<cell><m>30</m></cell>
</row>
<row>
<cell><m>B</m></cell>
<cell><m>800</m></cell>
<cell><m>750</m></cell>
<cell><m>700</m></cell>
<cell><m>650</m></cell>
</row>
</tabular></sidebyside>
<ol label="a">
<li><p>Write a linear function for <m>B</m> in terms of <m>t</m>.</p></li>
<li><p>Choose appropriate window settings on your calculator and graph your function.</p></li>
<li><p>Give the slope of the graph, including units, and explain the meaning of the slope in terms of the oil leak.</p></li>
</ol>
</p>
</statement>
<answer><p>
<ol label="a">
<li><p><m>B = 800 - 5t</m></p></li>
<li><p><image source="images/fig-ans-chap1-rev-43.jpg" width="40%"><description>GC graph</description></image> </p></li>
<li><p><m>m = -5</m> thousand barrels/minute: The amount of oil in the tanker is decreasing by <m>5000</m> barrels per minute.</p></li>
</ol>
</p></answer>
</exercise>
<exercise number="44">
<statement><p>A traditional first experiment for chemistry students is to make <m>98</m> observations about a burning candle. Delbert records the height, <m>h</m>, of the candle in inches at various times <m>t</m> minutes after he lit it.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>t</m></cell>
<cell><m>0</m></cell>
<cell><m>10</m></cell>
<cell><m>30</m></cell>
<cell><m>45</m></cell>
</row>
<row>
<cell><m>h</m></cell>
<cell><m>12</m></cell>
<cell><m>11.5</m></cell>
<cell><m>10.5</m></cell>
<cell><m>9.75</m></cell>
</row>
</tabular></sidebyside>
<ol label="a">
<li><p>Write a linear function for <m>h</m> in terms of <m>t</m>.</p></li>
<li><p>Choose appropriate window settings on your calculator and graph your function.</p></li>
<li><p>Give the slope of the graph, including units, and explain the meaning of the slope in terms of the candle.</p></li>
</ol>
</p>
</statement>
</exercise>
<exercise number="45">
<statement><p>An interior decorator bases her fee on the cost of a remodeling job. The accompanying table shows her fee, <m>F</m>, for jobs of various costs, <m>C</m>, both given in dollars.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>C</m></cell>
<cell><m>5000</m></cell>
<cell><m>10,000</m></cell>
<cell><m>20,000</m></cell>
<cell><m>50,000</m></cell>
</row>
<row>
<cell><m>F</m></cell>
<cell><m>1000</m></cell>
<cell><m>1500</m></cell>
<cell><m>2500</m></cell>
<cell><m>5500</m></cell>
</row>
</tabular></sidebyside>
<ol label="a">
<li><p>Write a linear function for <m>F</m> in terms of <m>C</m>.</p></li>
<li><p>Choose appropriate window settings on your calculator and graph your function.</p></li>
<li><p>Give the slope of the graph, including units, and explain the meaning of the slope in terms of the the decorator's fee.</p></li>
</ol>
</p>
</statement>
<answer><p>
<ol label="a">
<li><p><m>F = 500 + 0.10C</m></p></li>
<li><p><image source="images/fig-ans-chap1-rev-45.jpg" width="40%"><description>GC graph</description></image> </p></li>
<li><p><m>m = 0.10</m>: The fee increases by <m>\$0.10</m> for each dollar increase in the remodeling job.</p></li>
</ol>
</p></answer>
</exercise>
<exercise number="46">
<statement><p>Auto registration fees in Connie's home state depend on the value of the automobile. The table below shows the registration fee, <m>R</m>, for a car whose value is <m>V</m>, both given in dollars.</p><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>V</m></cell>
<cell><m>5000</m></cell>
<cell><m>10,000</m></cell>
<cell><m>15,000</m></cell>
<cell><m>20,000</m></cell>
</row>
<row>
<cell><m>R</m></cell>
<cell><m>135</m></cell>
<cell><m>235</m></cell>
<cell><m>335</m></cell>
<cell><m>435</m></cell>
</row>
</tabular></sidebyside>
<ol label="a">
<li><p>Write a linear function for <m>R</m> in terms of <m>V</m>.</p></li>
<li><p>Choose appropriate window settings on your calculator and graph your function.</p></li>
<li><p>Give the slope of the graph, including units, and explain the meaning of the slope in terms of the registration fee.</p></li>
</ol>
</p>
</statement>
</exercise>
<exercisegroup cols="2"><introduction><p>Find the slope of the line segment joining each pair of points.</p></introduction>
<exercise number="47">
<statement><p><m>(-1, 4), ~(3, -2)</m> </p>
</statement>
<answer><p><m>\dfrac{-3}{2} </m></p></answer>
</exercise>
<exercise number="48">
<statement><p><m>(5, 0), ~(2, -6)</m> </p>
</statement>
</exercise>
<exercise number="49">
<statement><p><m>(6.2, 1.4), ~(-2.1, 4.8)</m> </p>
</statement>
<answer><p><m>\dfrac{-34}{83}\approx-0.4 </m></p></answer>
</exercise>
<exercise number="50">
<statement><p><m>(0, -6.4), ~(-5.6, 3.2)</m> </p>
</statement>
</exercise>
</exercisegroup>
<exercise number="51"><statement><p>
The planners at AquaWorld want the small water slide to have a slope of <m>25\%</m>. If the slide is <m>20</m> feet tall, how far should the end of the slide be from the base of the ladder?</p></statement>
<answer><p><m>80</m> ft</p></answer>
</exercise>
<exercise number="52"><statement><p>
In areas with heavy snowfall, the pitch (or slope) of the roof of an A-frame house should be at least <m>1.2</m>. If a small ski chalet is <m>40</m> feet wide at its base, how tall is the center of the roof?</p></statement>
</exercise>
<exercisegroup cols="2"><introduction>
<p>Find the coordinates of the indicated points, and then write an algebraic expression using function notation for the indicated quantities.</p></introduction>
<exercise number="53"><statement><p>
<ol label="a">
<li><p><m>\Delta y</m> as <m>x</m> increases from <m>x_1</m> to <m>x_2</m></p></li>
<li><p>The slope of the line segment joining <m>P</m> to <m>Q</m></p></li>
</ol>
<image source="images/fig-chap1-rev-53" width="75%">
<description>
piecewise linear function f
</description>
</image>
</p></statement>
<answer><p>
<ol label="a">
<li><p><m>h(x_2) - h(x_1)</m></p></li>
<li><p><m>\dfrac{h(x_2) - h(x_1)}{x_2 - x_1} </m></p></li>
</ol>
</p></answer>
</exercise>
<exercise number="54"><statement><p>
<ol label="a">
<li><p><m>\Delta y</m> as <m>x</m> increases from <m>2</m> to <m>2+h</m></p></li>
<li><p>The slope of the line segment joining <m>P</m> to <m>Q</m></p></li>
</ol>
<image source="images/fig-chap1-rev-54" width="70%">
<description>
piecewise linear function f
</description>
</image>
</p></statement>
<answer><p>
<ol label="a">
<li><p><m>h(x_2) - h(x_1)</m></p></li>
<li><p><m>\dfrac{h(x_2) - h(x_1)}{x_2 - x_1} </m></p></li>
</ol>
</p></answer>
</exercise>
</exercisegroup>
<exercisegroup cols="2"><introduction><p>Which of the following tables could represent linear functions?</p></introduction>
<exercise number="55"><statement><p>
<ol label="a" cols="2">
<li><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>r</m></cell>
<cell><m>E</m></cell>
</row>
<row>
<cell><m>1</m></cell>
<cell><m>5</m></cell>
</row>
<row>
<cell><m>2</m></cell>
<cell><m>\frac{5}{2}</m></cell>
</row>
<row>
<cell><m>3</m></cell>
<cell><m>\frac{5}{3}</m></cell>
</row>
<row>
<cell><m>4</m></cell>
<cell><m>\frac{5}{4}</m></cell>
</row>
<row>
<cell><m>5</m></cell>
<cell><m>1</m></cell>
</row>
</tabular></sidebyside>
</p></li>
<li><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>s</m></cell>
<cell><m>t</m></cell>
</row>
<row>
<cell><m>10</m></cell>
<cell><m>6.2</m></cell>
</row>
<row>
<cell><m>20</m></cell>
<cell><m>9.7</m></cell>
</row>
<row>
<cell><m>30</m></cell>
<cell><m>12.6</m></cell>
</row>
<row>
<cell><m>40</m></cell>
<cell><m>15.8</m></cell>
</row>
<row>
<cell><m>50</m></cell>
<cell><m>19.0</m></cell>
</row>
</tabular></sidebyside>
</p></li>
</ol>
</p></statement>
<answer><p>Neither</p></answer>
</exercise>
<exercise number="56"><statement><p>
<ol label="a" cols="2">
<li><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>w</m></cell>
<cell><m>A</m></cell>
</row>
<row>
<cell><m>2</m></cell>
<cell><m>-13</m></cell>
</row>
<row>
<cell><m>4</m></cell>
<cell><m>-23</m></cell>
</row>
<row>
<cell><m>6</m></cell>
<cell><m>-33</m></cell>
</row>
<row>
<cell><m>8</m></cell>
<cell><m>-43</m></cell>
</row>
<row>
<cell><m>10</m></cell>
<cell><m>-53</m></cell>
</row>
</tabular></sidebyside>
</p></li>
<li><p>
<sidebyside><tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>x</m></cell>
<cell><m>C</m></cell>
</row>
<row>
<cell><m>0</m></cell>
<cell><m>0</m></cell>
</row>
<row>
<cell><m>2</m></cell>
<cell><m>5</m></cell>
</row>
<row>
<cell><m>4</m></cell>
<cell><m>10</m></cell>
</row>
<row>
<cell><m>8</m></cell>
<cell><m>20</m></cell>
</row>
<row>
<cell><m>16</m></cell>
<cell><m>40</m></cell>
</row>
</tabular></sidebyside>
</p></li>
</ol>
</p></statement>
</exercise>
</exercisegroup>
<exercisegroup cols="2"><introduction><p>Each table gives values for a linear function. Fill in the missing values.</p></introduction>
<exercise number="57"><statement><p>
<tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>d</m></cell>
<cell><m>V</m></cell>
</row>
<row>
<cell><m>-5</m></cell>
<cell><m>-4.8</m></cell>
</row>
<row>
<cell><m>-2</m></cell>
<cell><m>-3</m></cell>
</row>
<row>
<cell><m></m></cell>
<cell><m>-1.2</m></cell>
</row>
<row>
<cell><m>6</m></cell>
<cell><m>1.8</m></cell>
</row>
<row>
<cell><m>10</m></cell>
<cell><m></m></cell>
</row>
</tabular>
</p></statement>
<answer><p>
<tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>d</m></cell>
<cell><m>V</m></cell>
</row>
<row>
<cell><m>-5</m></cell>
<cell><m>-4.8</m></cell>
</row>
<row>
<cell><m>-2</m></cell>
<cell><m>-3</m></cell>
</row>
<row>
<cell><m>\alert{1}</m></cell>
<cell><m>-1.2</m></cell>
</row>
<row>
<cell><m>6</m></cell>
<cell><m>1.8</m></cell>
</row>
<row>
<cell><m>10</m></cell>
<cell><m>\alert{4.2} </m></cell>
</row>
</tabular>
</p></answer>
</exercise>
<exercise number="58"><statement><p>
<tabular top="major" halign="center" right="minor" left="minor" bottom="minor">
<row>
<cell><m>q</m></cell>
<cell><m>S</m></cell>
</row>
<row>
<cell><m>-8</m></cell>
<cell><m>-8</m></cell>
</row>
<row>
<cell><m>-4</m></cell>
<cell><m>56</m></cell>
</row>
<row>
<cell><m>3</m></cell>
<cell><m></m></cell>
</row>
<row>
<cell><m></m></cell>
<cell><m>200</m></cell>
</row>
<row>
<cell><m>9</m></cell>
<cell><m></m></cell>
</row>
</tabular>
</p></statement>
</exercise>
</exercisegroup>