#set document(title: "1.1 Linear Models", author: "OpenStax / XYZ Homework") #set page(width: 8.5in, height: auto, margin: 1in) #import "@preview/cetz:0.5.2" #set text(font: ("STIX Two Text", "Libertinus Serif", "New Computer Modern"), size: 10.5pt, lang: "en") #show math.equation: set text(font: ("STIX Two Math", "New Computer Modern Math")) #set par(justify: true, leading: 0.62em, spacing: 0.9em) #set enum(spacing: 1.1em) // room between list items so tall inline fractions don't collide #set list(spacing: 1.1em) #set table(stroke: 0.5pt + rgb("#c7ccd3")) #let BLUE = rgb("#183B6F") // brand navy — section bars + example/solution labels (white on navy 11.09:1) #let ORANGE = rgb("#A94509") // brand primary-700 — AA-safe deep orange for TEXT (5.93:1 on white; raw brand #F37021 is 2.94:1 and must never carry text) #let RED = rgb("#DC2626") // brand error-600 #let GREEN = rgb("#059669") // brand success-600 (decoration only; small green text uses green-text #007942) #show heading.where(level: 1): it => block(width: 100%, above: 0pt, below: 16pt, fill: gradient.linear(BLUE, rgb("#2C5AA0")), inset: (x: 14pt, y: 12pt), radius: 3pt, text(fill: white, weight: "bold", size: 19pt, it.body)) #show heading.where(level: 2): it => block(width: 100%, above: 18pt, below: 10pt, fill: BLUE, inset: (x: 10pt, y: 6pt), radius: 2pt, text(fill: white, weight: "bold", size: 12pt, it.body)) #show heading.where(level: 3): it => text(fill: ORANGE, weight: "bold", size: 12.5pt, it.body) #show heading.where(level: 4): it => text(fill: BLUE, weight: "bold", size: 10.5pt, it.body) #let examplebox(label, title, body) = block(width: 100%, breakable: true, fill: rgb("#EFF1F5"), stroke: 0.5pt + rgb("#CFDDF0"), radius: 4pt, inset: 10pt, above: 12pt, below: 12pt)[ #block(below: 6pt)[#box(fill: BLUE, inset: (x: 6pt, y: 2pt), radius: 2pt, text(fill: white, weight: "bold", size: 8.5pt, label)) #h(0.4em) #strong[#title]] #body] // rail = decorative left rule (raw brand token); labelcolor = AA-safe label text shade #let notebox(label, rail, labelcolor, tint, body) = block(width: 100%, breakable: true, fill: tint, stroke: (left: 3pt + rail), inset: (left: 10pt, rest: 8pt), radius: (right: 4pt), above: 11pt, below: 11pt)[ #text(fill: labelcolor, weight: "bold", size: 7.5pt, tracking: 0.5pt)[#upper(label)] #linebreak() #body] #let solutionbox(body) = block(above: 4pt, below: 8pt)[ #text(fill: BLUE, weight: "bold", size: 8.5pt)[Solution] #linebreak() #body] #let figph(msg) = block(width: 100%, height: 60pt, fill: rgb("#f6f7f9"), stroke: (paint: rgb("#c7ccd3"), dash: "dashed"), radius: 4pt, inset: 10pt)[ #align(center + horizon, text(fill: rgb("#889"), style: "italic", size: 9pt, msg))] // Standardize inlined figure sizes: measure the natural CeTZ canvas, then scale to a // consistent envelope (aspect-aware; see build_typst.py FIG_* constants). Unlike the // print preamble, dimensions are FLOORED: in an editor a user can trim a figure to a // degenerate 1-D shape (a bare line), and w/h or tw/w would then divide by zero. #let _STD_W = 3.5 #let _WIDE_W = 5.6 #let _MAX_H = 3.4 #let _ASPECT_WIDE = 2.2 #let _UPSCALE_MAX = 1.15 #let stdfig(body) = context { let m = measure(body) let w = calc.max(m.width / 1in, 0.01) let h = calc.max(m.height / 1in, 0.01) let tw = if w / h > _ASPECT_WIDE { _WIDE_W } else { _STD_W } let s = calc.min(tw / w, _MAX_H / h, _UPSCALE_MAX) align(center, box(scale(x: s * 100%, y: s * 100%, reflow: true, body))) } #show figure: set block(breakable: false) #set figure(gap: 8pt) #show figure.caption: set text(size: 8.5pt, fill: rgb("#555")) == 1.1#h(0.6em)Linear Models #notebox("Investigation", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Sales on Commission] Delbert is offered a part-time job selling restaurant equipment. He will be paid \$1000 per month plus a 6% commission on his sales. The sales manager tells Delbert he can expect to sell about \$8000 worth of equipment per month. To help him decide whether to accept the job, Delbert does a few calculations. + Based on the sales manager’s estimate, what monthly income can Delbert expect from this job? What annual salary would that provide? + What would Delbert’s monthly salary be if he sold only \$5000 of equipment per month? What would his salary be if he sold \$10,000 worth per month? Compute monthly incomes for each sales total shown in the table.#figure(table( columns: 2, align: left, inset: 6pt, table.header([Sales], [Income]), [5000], [], [8000], [], [10,000], [], [12,000], [], [15,000], [], [18,000], [], [20,000], [], [25,000], [], [30,000], [], [35,000], [], [], [], [], [], )) #figure(figph[grid for sales and income], alt: "grid for sales and income", caption: none) + Plot your data points on a graph, using sales, #math.equation(block: false, alt: "S")[$S$], on the horizontal axis and income, #math.equation(block: false, alt: "I")[$I$], on the vertical axis, as shown in the figure. Connect the data points to show Delbert’s monthly income for all possible monthly sales totals. + Add two new data points to the table by reading values from your graph. + Write an algebraic expression for Delbert’s monthly income, #math.equation(block: false, alt: "I")[$I$], in terms of his monthly sales, #math.equation(block: false, alt: "S")[$S$]. Use the description in the problem to help you: #linebreak() He will be paid: \$1000 . . . plus a 6% commission on his sales. #linebreak() #emph[Income] #math.equation(block: false, alt: "equals bar")[$= underline(#h(7.5em))$] + Test your formula from part (5) to see if it gives the same results as those you recorded in the table. + Use your formula to find out what monthly sales total Delbert would need in order to have a monthly income of \$2500. + Each increase of \$1000 in monthly sales increases Delbert’s monthly income by \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_. + Summarize the results of your work: In your own words, describe the relationship between Delbert’s monthly sales and his monthly income. Include in your discussion a description of your graph. ] === Tables, Graphs and Equations The first step in creating a model is to describe relationships between variables. In Sales on Commission, we analyzed the relationship between Delbert's sales and his income. Starting from a verbal description, we represented the relationship in three different ways. + A #strong[table of values] displays specific data points with precise numerical values. + A #strong[graph] is a visual display of the data. It is easier to spot trends and describe the overall behavior of the variables from a graph. + An #strong[algebraic equation] is a compact summary of the model. It can be used to analyze the model and to make predictions We begin our study of modeling with some examples of #strong[linear models]. In the examples that follow, observe the interplay among the three modeling tools, and how each contributes to the model. #examplebox("Example 1")[][ Annelise is on vacation at a seaside resort. She can rent a bicycle from her hotel for \$3 an hour, plus a \$5 insurance fee. (A fraction of an hour is charged as the same fraction of \$3.) + Make a table of values showing the cost, #math.equation(block: false, alt: "C")[$C$], of renting a bike for various lengths of time, #math.equation(block: false, alt: "t")[$t$]. + Plot the points on a graph. Draw a curve through the data points. + Write an equation for #math.equation(block: false, alt: "C")[$C$] in terms of #math.equation(block: false, alt: "t")[$t$]. #solutionbox[ + To find the cost, we multiply the time by \$3, and add the result to the \$5 insurance fee. For example, the cost of a 1-hour bike ride is #math.equation(block: true, alt: "Cost, equals open parenthesis $ 5 insurance fee close parenthesis plus open parenthesis $ 3 per hour close parenthesis times open parenthesis 1 hour close parenthesis; C, equals 5 plus 3 open parenthesis 1 close parenthesis equals 8")[$"Cost" & = ( upright(\$) 5 " insurance fee" ) + ( upright(\$) 3 " per hour" ) × ( 1 " hour" ) \ C & = 5 + 3 ( 1 ) = 8$] A 1-hour bike ride costs \$8. We record the results in a table, as shown here:#figure(table( columns: 4, align: left, inset: 6pt, table.header([Length of rental #linebreak() (hours) #linebreak()], [Cost of rental #linebreak() (dollars) #linebreak()], [], [#math.equation(block: false, alt: "open parenthesis t , C close parenthesis")[$( t , C )$]]), [#math.equation(block: false, alt: "1")[$1$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "C equals 5 plus 3 open parenthesis 1 close parenthesis")[$#h(1em) C = 5 + 3 ( 1 ) #h(1em)$]], [#math.equation(block: false, alt: "open parenthesis 1 , 8 close parenthesis")[$( 1 , 8 )$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "11")[$11$]], [#math.equation(block: false, alt: "C equals 5 plus 3 open parenthesis 2 close parenthesis")[$C = 5 + 3 ( 2 )$]], [#math.equation(block: false, alt: "open parenthesis 2 , 11 close parenthesis")[$( 2 , 11 )$]], [#math.equation(block: false, alt: "3")[$3$]], [#math.equation(block: false, alt: "14")[$14$]], [#math.equation(block: false, alt: "C equals 5 plus 3 open parenthesis 3 close parenthesis")[$C = 5 + 3 ( 3 )$]], [#math.equation(block: false, alt: "open parenthesis 3 , 14 close parenthesis")[$( 3 , 14 )$]], )) + Each pair of values represents a point on the graph. The first value gives the horizontal coordinate of the point, and the second value gives the vertical coordinate. The points lie on a straight line, as shown in the figure. The line extends infinitely in only one direction, because negative values of #math.equation(block: false, alt: "t")[$t$] do not make sense here. #figure(figph[graph of cost versus time], alt: "graph of cost versus time", caption: none) + To write an equation, we let #math.equation(block: false, alt: "C")[$C$] represent the cost of the rental, and we use #math.equation(block: false, alt: "t")[$t$] for the number of hours: #linebreak() #math.equation(block: true, alt: "Cost, equals open parenthesis $ 5 insurance fee close parenthesis plus open parenthesis $ 3 per hour close parenthesis times (number of hours); C, equals 5 plus 3 times t")[$"Cost" & = ( upright(\$) 5 " insurance fee" ) + ( upright(\$) 3 " per hour" ) × "(number of hours)" \ C & = 5 + 3 ⋅ t$] ] ] When you graph the data given in a table, on which axis do you show the variable in the first row of the table? \_\_\_\_\_ #solutionbox[ The horizontal axis ] When you graph the data given in a table, on which axis do you show the variable in the first row of the table? + The linear axis + The horizontal axis + The vertical axis + Both axes #examplebox("Example 2")[][ Use the equation #math.equation(block: false, alt: "C equals 5 plus 3 times t")[$" " C = 5 + 3 ⋅ t " "$] you found in Example to answer the following questions. Then show how to find the answers by using the graph. + How much will it cost Annelise to rent a bicycle for 6 hours? + How long can Annelise bicycle for \$18.50? #solutionbox[ + We substitute #math.equation(block: false, alt: "t equals 6")[$t = 6$] into the expression for #math.equation(block: false, alt: "C")[$C$] to find #math.equation(block: true, alt: "C equals 5 plus 3 open parenthesis 6 close parenthesis equals 23")[$C = 5 + 3 ( 6 ) = 23$]A 6-hour bike ride will cost \$23. The point #math.equation(block: false, alt: "P")[$P$] on the graph in the figure represents the cost of a 6-hour bike ride. The value on the #math.equation(block: false, alt: "C")[$C$]-axis at the same height as point #math.equation(block: false, alt: "P")[$P$] is 23, so a 6-hour bike ride costs \$23. + We substitute #math.equation(block: false, alt: "C equals 18.50")[$C = 18.50$] into the equation and solve for #math.equation(block: false, alt: "t")[$t$]. #math.equation(block: true, alt: "18.50, equals 5 plus 3 t; 13.50, equals 3 t; t, equals 4.5")[$18.50 & = 5 + 3 t \ 13.50 & = 3 t \ t & = 4.5$]For \$18.50 Annelise can bicycle for 4½ hours. The point #math.equation(block: false, alt: "Q")[$Q$] on the graph represents an \$18.50 bike ride. The value on the #math.equation(block: false, alt: "t")[$t$]-axis below point #math.equation(block: false, alt: "Q")[$Q$] is 4.5, so \$18.50 will buy a 4.5 hour bike ride. #figure(figph[line though points P and Q], alt: "line though points P and Q", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ In Example, notice the different algebraic techniques we used in parts (a) and (b). - In part (a), we were given a value of #math.equation(block: false, alt: "t")[$t$] and we #strong[evaluated the expression] #math.equation(block: false, alt: "5 plus 3 t")[$5 + 3 t$] to find #math.equation(block: false, alt: "C")[$C$]. - In part (b) we were given a value of #math.equation(block: false, alt: "C")[$C$] and we #strong[solved the equation] #math.equation(block: false, alt: "C equals 5 plus 3 t")[$C = 5 + 3 t$] to find #math.equation(block: false, alt: "t")[$t$]. ] Frank plants a dozen corn seedlings, each 6 inches tall. With plenty of water and sunlight they will grow approximately 2 inches per day. Complete the table of values for the height, #math.equation(block: false, alt: "h")[$h$], of the seedlings after #math.equation(block: false, alt: "t")[$t$] days. Complete the table of values for the height, #math.equation(block: false, alt: "h")[$h$] of the seedlings after #math.equation(block: false, alt: "t")[$t$] days. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "t")[$t$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "20")[$20$]]), [#math.equation(block: false, alt: "h")[$h$]], [\_\_\_\_\_], [\_\_\_\_\_], [\_\_\_\_\_], [\_\_\_\_\_], [\_\_\_\_\_], )) + Write an equation for the height #math.equation(block: false, alt: "h")[$h$] of the seedlings in terms of the number #math.equation(block: false, alt: "t")[$t$] of days since they were planted. #linebreak() Equation: \_\_\_\_\_ + Graph the equation. #solutionbox[ #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "t")[$t$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "20")[$20$]]), [#math.equation(block: false, alt: "h")[$h$]], [h0], [h1], [h2], [h3], [h4], )) + #math.equation(block: false, alt: "h equals 6 plus 2 t")[$h = 6 + 2 t$] + The graph of seedling height vs time is shown below. ] The graph of seedling height vs time for part (b) is shown below. #figure(figph[graph of seedlings height vs time], alt: "graph of seedlings height vs time", caption: none) Frank plants a dozen corn seedlings, each 6 inches tall. With plenty of water and sunlight they will grow approximately 2 inches per day. Complete the table of values for the height, #math.equation(block: false, alt: "h")[$h$], of the seedlings after #math.equation(block: false, alt: "t")[$t$] days. Complete the table of values for the height, #math.equation(block: false, alt: "h")[$h$] of the seedlings after #math.equation(block: false, alt: "t")[$t$] days. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "t")[$" " t " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "20")[$20$]]), [#math.equation(block: false, alt: "h")[$" " h " "$]], [$#hide($00$)$], [$#hide($000$)$], [$#hide($000$)$], [$#hide($000$)$], [$#hide($000$)$], )) + Write an equation for the height #math.equation(block: false, alt: "h")[$h$] of the seedlings in terms of the number #math.equation(block: false, alt: "t")[$t$] of days since they were planted. + Graph the equation. #solutionbox[ + #math.equation(block: false, alt: "h equals 6 plus 2 t")[$h = 6 + 2 t$] + #figure(figph[graph of seedlings height vs time], alt: "graph of seedlings height vs time", caption: none) ] Use your equation from Practice 1 to answer the questions. Illustrate each answer on the graph. + How tall is the corn after Tweek weeks? Use "ft" for feet or "in" for inches. #linebreak() Answer (including units): \_\_\_\_\_ + How long will it be before the corn is Hft feet tall? Use "day" for days. #linebreak() Answer (including units): \_\_\_\_\_ #solutionbox[ + 48 inches tall + 33 days A graph is below. ] The graph below illustrates the answers. #figure(figph[graph of seedlings height vs time], alt: "graph of seedlings height vs time", caption: none) Use your equation from Practice 1 to answer the questions. Illustrate each answer on the graph. + How tall is the corn after 3 weeks? + How long will it be before the corn is 6 feet tall? Hint: Convert feet to inches. #solutionbox[ + 48 inches tall + 33 days #figure(figph[graph of seedlings height vs time], alt: "graph of seedlings height vs time", caption: none) ] What is the difference between an expression and an equation? \_\_\_\_\_ What is the difference between an expression and an equation? === Choosing Scales for the Axes To create a useful graph, we must choose appropriate scales for the axes. - The axes must extend far enough to show the values of the variables. - The tick marks should be equally spaced. - Usually we should use no more than 10 or 15 tick marks. #examplebox("Example 3")[][ In 1990, the median price of a home in the US was \$92,000. The median price increased by about \$4700 per year over the next decade. + Make a table of values showing the median price of a house in 1990, 1994, 1998, and 2000. + Choose suitable scales for the axes and plot the values you found in part (a) on a graph. Use #math.equation(block: false, alt: "t")[$t$], the number of years since 1990, on the horizontal axis and the price of the house, #math.equation(block: false, alt: "P")[$P$], on the vertical axis. Draw a curve through the points. + Write an equation that expresses #math.equation(block: false, alt: "P")[$P$] in terms of #math.equation(block: false, alt: "t")[$t$]. + How much did the price of the house increase from 1990 to 1996? Illustrate the increase on your graph. #solutionbox[ + In 1990 the median price was \$92,000. Four years later, in 1994, the price had increased by #math.equation(block: false, alt: "4 open parenthesis 4700 close parenthesis equals 18 , 800")[$4 ( 4700 ) = 18 , 800$] dollars, so #math.equation(block: true, alt: "P equals 92 , 000 plus 4 open parenthesis 4700 close parenthesis equals 110 , 800")[$P = 92 , 000 + 4 ( 4700 ) = 110 , 800$] In 1998 the price had increased by #math.equation(block: false, alt: "8 open parenthesis 4700 close parenthesis equals 37 , 600")[$8 ( 4700 ) = 37 , 600$] dollars, so #math.equation(block: true, alt: "P equals 92 , 000 plus 8 open parenthesis 4700 close parenthesis equals 129 , 600")[$P = 92 , 000 + 8 ( 4700 ) = 129 , 600$] You can verify the price of the house in 2000 by a similar calculation.#figure(table( columns: 3, align: left, inset: 6pt, table.header([Year], [Price of House)], [#math.equation(block: false, alt: "open parenthesis t , P close parenthesis")[$( t , P )$]]), [#math.equation(block: false, alt: "1990")[$1990$]], [#math.equation(block: false, alt: "92 , 000")[$92 , 000$]], [#math.equation(block: false, alt: "open parenthesis 0 , 92 , 000 close parenthesis")[$( 0 , #h(0.167em) 92 , 000 )$]], [#math.equation(block: false, alt: "1994")[$1994$]], [#math.equation(block: false, alt: "110 , 800")[$110 , 800$]], [#math.equation(block: false, alt: "open parenthesis 4 , 110 , 800 close parenthesis")[$( 4 , #h(0.167em) 110 , 800 )$]], [#math.equation(block: false, alt: "1998")[$1998$]], [#math.equation(block: false, alt: "129 , 600")[$129 , 600$]], [#math.equation(block: false, alt: "open parenthesis 8 , 129 , 600 close parenthesis")[$( 8 , #h(0.167em) 129 , 600 )$]], [#math.equation(block: false, alt: "2000")[$2000$]], [#math.equation(block: false, alt: "139 , 000")[$139 , 000$]], [#math.equation(block: false, alt: "open parenthesis 10 , 139 , 000 close parenthesis")[$( 10 , #h(0.167em) 139 , 000 )$]], )) + We let #math.equation(block: false, alt: "t")[$t$] stand for the number of years since 1990, so that #math.equation(block: false, alt: "t equals 0")[$t = 0$] in 1990, #math.equation(block: false, alt: "t equals 4")[$t = 4$] in 1994, and so on. To choose scales for the axes, we look at the values in the table. For this graph we scale the horizontal axis, or #math.equation(block: false, alt: "t")[$t$]-axis, in 1-year intervals and the vertical axis, or #math.equation(block: false, alt: "P")[$P$]-axis, for \$90,000 to \$140,000 in intervals of \$5,000. The points lie on a straight line, as shown in the figure.#figure(figph[graph of price versus time], alt: "graph of price versus time", caption: none) + Look back at the calculations in part (a). The price of the house started at \$92,000 in 1990 and increased by #math.equation(block: false, alt: "t times 4700")[$t × 4700$] dollars after #math.equation(block: false, alt: "t")[$t$] years. Thus, #math.equation(block: true, alt: "P equals 92 , 000 plus 4700 t")[$P = 92 , 000 + 4700 t$] + We find the points on the graph for 1990 and 1996. These points lie above #math.equation(block: false, alt: "t equals 0")[$t = 0$] and #math.equation(block: false, alt: "t equals 6")[$t = 6$] on the #math.equation(block: false, alt: "t")[$t$]-axis. Next we find the values on the #math.equation(block: false, alt: "P")[$P$]-axis corresponding to the two points. The values are #math.equation(block: false, alt: "P equals 92 , 000")[$P = 92 , 000$] in 1990 and #math.equation(block: false, alt: "P equals 120 , 200")[$P = 120 , 200$] in 1996. The increase in price is the difference of the two #math.equation(block: false, alt: "P")[$P$]-values. #math.equation(block: true, alt: "increase in price, equals 120 , 200 minus 92 , 000; equals 28 , 200")[$"increase in price" & = 120 , 200 − 92 , 000 \ & = 28 , 200$] The price of the home increased \$28,200 between 1990 and 1996. This increase is indicated by the arrows in the figure. ] ] If #math.equation(block: false, alt: "C")[$C$] is expressed in terms of #math.equation(block: false, alt: "H")[$H$], which variable goes on the horizontal axis? \_\_\_\_\_ #solutionbox[ #math.equation(block: true, alt: "H")[$H$] ] If #math.equation(block: false, alt: "C")[$C$] is expressed in terms of #math.equation(block: false, alt: "H")[$H$], which variable goes on the horizontal axis? #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The graphs in the preceding examples are #strong[increasing graphs]. As we move along the graph from left to right (in the direction of increasing #math.equation(block: false, alt: "t")[$t$] ), the second coordinate increases as well. Try Practice 3, which illustrates a #strong[decreasing graph]. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The graphs in the preceding examples are #strong[increasing graphs] . As we move along the graph from left to right (in the direction of increasing #math.equation(block: false, alt: "t")[$t$] ), the second coordinate increases as well. Try Practice 3, which illustrates a #strong[decreasing graph]. ] Silver Lake has been polluted by industrial waste products. The concentration of toxic chemicals in the water is currently 285 parts per million (ppm). Environmental officials would like to reduce the concentration by 15 ppm each year. + Complete the table of values showing the desired concentration, #math.equation(block: false, alt: "C")[$C$], of toxic chemicals #math.equation(block: false, alt: "t")[$t$] years from now. For each #math.equation(block: false, alt: "t")[$t$]-value, calculate the corresponding value for #math.equation(block: false, alt: "C")[$C$]. Write your answers as ordered pairs.#figure(table( columns: 4, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "t")[$t$]], [#math.equation(block: false, alt: "C")[$C$]], [], [#math.equation(block: false, alt: "open parenthesis t , C close parenthesis")[$( t , C )$]]), [#math.equation(block: false, alt: "0")[$0$]], [], [#math.equation(block: false, alt: "C equals 285 minus 15 open parenthesis 0 close parenthesis")[$C = 285 − 15 ( 0 )$]], [(0, \_\_\_\_\_ )], [#math.equation(block: false, alt: "5")[$5$]], [], [#math.equation(block: false, alt: "C equals 285 minus 15 open parenthesis 5 close parenthesis")[$C = 285 − 15 ( 5 )$]], [(5, \_\_\_\_\_ )], [#math.equation(block: false, alt: "10")[$10$]], [], [#math.equation(block: false, alt: "C equals 285 minus 15 open parenthesis 10 close parenthesis")[$C = 285 − 15 ( 10 )$]], [(10, \_\_\_\_\_ )], [#math.equation(block: false, alt: "15")[$15$]], [], [#math.equation(block: false, alt: "C equals 285 minus 15 open parenthesis 15 close parenthesis")[$C = 285 − 15 ( 15 )$]], [(15, \_\_\_\_\_ )], )) + To choose scales for the axes, notice that the value of #math.equation(block: false, alt: "C")[$C$] starts at 285 and decreases from there. We'll scale the vertical axis up to 300, and use 10 tick marks at intervals of 30. Graph the ordered pairs on the grid, and connect them with a straight line. + Write an equation for the concentration, #math.equation(block: false, alt: "C")[$C$], of toxic chemicals #math.equation(block: false, alt: "t")[$t$] years from now. #linebreak() Equation: \_\_\_\_\_ For part (c): The concentration is initially 285 ppm, and we subtract 15 ppm for each year that passes, or #math.equation(block: false, alt: "15 times t")[$15 × t$]. #solutionbox[ + #figure(table( columns: 1, align: left, inset: 6pt, [#math.equation(block: false, alt: "open parenthesis t , C close parenthesis")[$( t , C )$]], [#math.equation(block: false, alt: "open parenthesis 0 , 285 close parenthesis")[$( 0 , 285 )$]], [#math.equation(block: false, alt: "open parenthesis 5 , 210 close parenthesis")[$( 5 , 210 )$]], [#math.equation(block: false, alt: "open parenthesis 10 , 135 close parenthesis")[$( 10 , 135 )$]], [#math.equation(block: false, alt: "open parenthesis 15 , 60 close parenthesis")[$( 15 , 60 )$]], )) + The graph is shown below. + #math.equation(block: false, alt: "C equals 285 minus 15 t")[$C = 285 − 15 t$] ] The graph for part(b): #figure(figph[decreasing graph], alt: "decreasing graph", caption: none) Silver Lake has been polluted by industrial waste products. The concentration of toxic chemicals in the water is currently 285 parts per million (ppm). Environmental officials would like to reduce the concentration by 15 ppm each year. + Complete the table of values showing the desired concentration, #math.equation(block: false, alt: "C")[$C$], of toxic chemicals #math.equation(block: false, alt: "t")[$t$] years from now. For each #math.equation(block: false, alt: "t")[$t$]-value, calculate the corresponding value for #math.equation(block: false, alt: "C")[$C$]. Write your answers as ordered pairs.#figure(table( columns: 3, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "t")[$t$]], [#math.equation(block: false, alt: "C")[$C$]], [#math.equation(block: false, alt: "open parenthesis t , C close parenthesis")[$( t , C )$]]), [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "285 minus 15 open parenthesis 0 close parenthesis")[$285 − 15 ( 0 )$]], [#math.equation(block: false, alt: "open parenthesis 0 , close parenthesis")[$( 0 , #hide($00$) )$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "285 minus 15 open parenthesis 5 close parenthesis")[$285 − 15 ( 5 )$]], [#math.equation(block: false, alt: "open parenthesis 5 , close parenthesis")[$( 5 , #hide($00$) )$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "285 minus 15 open parenthesis 10 close parenthesis")[$285 − 15 ( 10 )$]], [#math.equation(block: false, alt: "open parenthesis 10 , close parenthesis")[$( 10 , #hide($00$) )$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "285 minus 15 open parenthesis 15 close parenthesis")[$285 − 15 ( 15 )$]], [#math.equation(block: false, alt: "open parenthesis 15 , close parenthesis")[$( 15 , #hide($00$) )$]], )) + To choose scales for the axes, notice that the value of #math.equation(block: false, alt: "C")[$C$] starts at 285 and decreases from there. We'll scale the vertical axis up to 300, and use 10 tick marks at intervals of 30. Graph the ordered pairs on the grid, and connect them with a straight line. + Write an equation for the concentration, #math.equation(block: false, alt: "C")[$C$], of toxic chemicals #math.equation(block: false, alt: "t")[$t$] years from now. Hint: The concentration is initially 285 ppm, and we subtract 15 ppm for each year that passes, or #math.equation(block: false, alt: "15 times t")[$15 × t$]. #solutionbox[ + #figure(table( columns: 1, align: left, inset: 6pt, [#math.equation(block: false, alt: "open parenthesis t , C close parenthesis")[$( t , C )$]], [#math.equation(block: false, alt: "open parenthesis 0 , 285 close parenthesis")[$( 0 , 285 )$]], [#math.equation(block: false, alt: "open parenthesis 5 , 210 close parenthesis")[$( 5 , 210 )$]], [#math.equation(block: false, alt: "open parenthesis 10 , 135 close parenthesis")[$( 10 , 135 )$]], [#math.equation(block: false, alt: "open parenthesis 15 , 60 close parenthesis")[$( 15 , 60 )$]], )) + #figure(figph[decreasing graph], alt: "decreasing graph", caption: none) + #math.equation(block: false, alt: "C equals 285 minus 15 t")[$C = 285 − 15 t$] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ In the previous Exercise, we extend the graph until it reaches the horizontal axis, but no farther. Points with negative #math.equation(block: false, alt: "C")[$C$]-coordinates have no meaning for the problem. ] If #math.equation(block: false, alt: "x greater than 5")[$x > 5$], what is true about #math.equation(block: false, alt: "minus 2 x")[$− 2 x$]? \_\_\_\_\_ #solutionbox[ #math.equation(block: false, alt: "minus 2 x")[$− 2 x$] is less than #math.equation(block: false, alt: "minus 10")[$− 10$]. ] If #math.equation(block: false, alt: "x greater than 5")[$x > 5$], what is true about #math.equation(block: false, alt: "minus 2 x")[$− 2 x$]? + It is greater than 3 + It is less than 3 + It is greater than 10 + It is less than #math.equation(block: false, alt: "minus 10")[$− 10$] #notebox("Technology", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[ Graphing an Equation] We can use a graphing utililty to graph an equation. On most utilities, we follow three steps. To Graph an Equation: + Press Y= and enter the equation you wish to graph. + Press WINDOW and select a suitable graphing window. + Press GRAPH ] #examplebox("Example 4")[Using a Graphing Utility][ In Example, we found the equation #math.equation(block: true, alt: "P equals 92 , 000 plus 4700 t")[$P = 92 , 000 + 4700 t$] for the median price of a house #math.equation(block: false, alt: "t")[$t$] years after 1990. Graph this equation with technology. #solutionbox[ To begin, we press Y= and enter #math.equation(block: true, alt: "Y 1 equals 92 , 000 plus 4700 X")[$Y 1 = 92 , 000 + 4700 X$] For this graph, we’ll use the grid in Example for our window settings, so we press WINDOW and enter #figure(table( columns: 3, align: left, inset: 6pt, table.header([Xmin#math.equation(block: false, alt: "equals 0")[$= 0$]], [], [Xmax#math.equation(block: false, alt: "equals 10")[$= 10$]]), [Ymin#math.equation(block: false, alt: "equals 90 , 000")[$= 90 , 000$]], [], [Ymax#math.equation(block: false, alt: "equals 140 , 000")[$= 140 , 000$]], )) Finally, we press GRAPH. The graph is shown in the figure. #figure(figph[graph on calculator screen], alt: "graph on calculator screen", caption: none) ] ] + Solve the equation #math.equation(block: false, alt: "2 y minus 1575 equals 45 x")[$2 y − 1575 = 45 x$] for #math.equation(block: false, alt: "y")[$y$] in terms of #math.equation(block: false, alt: "x")[$x$]. #linebreak() #math.equation(block: false, alt: "y equals")[$y =$]\_\_\_\_\_ + Graph the equation with a graphing utility. Use the window#figure(table( columns: 5, align: left, inset: 6pt, table.header([Xmin#math.equation(block: false, alt: "equals minus 50")[$= − 50$]], [], [Xmax#math.equation(block: false, alt: "equals 50")[$= 50$]], [], [Xscl#math.equation(block: false, alt: "equals 5")[$= 5$]]), [Ymin#math.equation(block: false, alt: "equals minus 500")[$= − 500$]], [], [Ymax#math.equation(block: false, alt: "equals 1000")[$= 1000$]], [], [Yscl#math.equation(block: false, alt: "equals 100")[$= 100$]], )) + Sketch the graph on paper. Use the window settings to choose appropriate scales for the axes. #solutionbox[ + #math.equation(block: false, alt: "y equals open parenthesis 1575 plus 45 x close parenthesis / 2")[$y = ( 1575 + 45 x ) / 2$] + The calculator graph is shown below. + The graph is shown below. ] The graph for (b): #figure(figph[calculator graph], alt: "calculator graph", caption: none) c. #figure(figph[graph], alt: "graph", caption: none) + Solve the equation #math.equation(block: false, alt: "2 y minus 1575 equals 45 x")[$2 y − 1575 = 45 x$] for #math.equation(block: false, alt: "y")[$y$] in terms of #math.equation(block: false, alt: "x")[$x$]. + Graph the equation with a graphing utility. Use the window#figure(table( columns: 5, align: left, inset: 6pt, table.header([Xmin#math.equation(block: false, alt: "equals minus 50")[$= − 50$]], [], [Xmax#math.equation(block: false, alt: "equals 50")[$= 50$]], [], [Xscl#math.equation(block: false, alt: "equals 5")[$= 5$]]), [Ymin#math.equation(block: false, alt: "equals minus 500")[$= − 500$]], [], [Ymax#math.equation(block: false, alt: "equals 1000")[$= 1000$]], [], [Yscl#math.equation(block: false, alt: "equals 100")[$= 100$]], )) + Sketch the graph on paper. Use the window settings to choose appropriate scales for the axes. #solutionbox[ + #math.equation(block: false, alt: "y equals open parenthesis 1575 plus 45 x close parenthesis / 2")[$y = ( 1575 + 45 x ) / 2$] + #figure(figph[calculator graph], alt: "calculator graph", caption: none) + #figure(figph[graph of equation], alt: "graph of equation", caption: none) ] #figure(figph[bad grid], alt: "bad grid", caption: none) What is wrong with the grid above? \_\_\_\_\_ #figure(figph[bad grid], alt: "bad grid", caption: none) What is wrong with the grid above? + The grid lines on the #math.equation(block: false, alt: "x")[$x$]-axis are not evenly spaced. + The scale on the #math.equation(block: false, alt: "y")[$y$]-axis does not start at 0. + The axes are not labeled with the variables. + All of the above. === Linear Equations All the models in the preceding examples have equations with a similar form: #math.equation(block: true, alt: "y equals (starting value) plus (rate of change) times x")[$bold(italic(y)) = "(starting value)" + "(rate of change)" ⋅ bold(italic(x))$] (We'll talk more about rate of change in Slope and Rate of Change.) Their graphs were all portions of straight lines. For this reason such equations are called #strong[linear equations]. The order of the terms in the equation does not matter. For example, the equation in Example, #math.equation(block: true, alt: "C equals 5 plus 3 t")[$C = 5 + 3 t$] can be written equivalently as #math.equation(block: true, alt: "minus 3 t plus C equals 5")[$− 3 t + C = 5$] and the equation in Example, #math.equation(block: true, alt: "P equals 92 , 000 plus 4700 t")[$P = 92 , 000 + 4700 t$] can be written as #math.equation(block: true, alt: "minus 4700 t plus P equals 92 , 000")[$− 4700 t + P = 92 , 000$] This form of a linear equation, #math.equation(block: false, alt: "A x plus B y equals C")[$A x + B y = C$], is called the #strong[general form]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[General Form for a Linear Equation] The graph of any equation #math.equation(block: true, alt: "A x plus B y equals C")[$A x + B y = C$] where #math.equation(block: false, alt: "A")[$A$] and #math.equation(block: false, alt: "B")[$B$] are not both equal to zero, is a straight line. ] #examplebox("Example 5")[][ The manager at Albert's Appliances has \$3000 to spend on advertising for the next fiscal quarter. A 30-second spot on television costs \$150 per broadcast, and a 30-second radio ad costs \$50. + The manager decides to buy #math.equation(block: false, alt: "x")[$x$] television ads and #math.equation(block: false, alt: "y")[$y$] radio ads. Write an equation relating #math.equation(block: false, alt: "x")[$x$] and #math.equation(block: false, alt: "y")[$y$]. + Make a table of values showing several choices for #math.equation(block: false, alt: "x")[$x$] and #math.equation(block: false, alt: "y")[$y$]. + Plot the points from your table, and graph the equation. #solutionbox[ + Each television ad costs \$150, so #math.equation(block: false, alt: "x")[$x$] ads will cost \$#math.equation(block: false, alt: "150 x")[$150 x$]. Similarly, #math.equation(block: false, alt: "y")[$y$] radio ads will cost \$#math.equation(block: false, alt: "50 y")[$50 y$]. The manager has \$3000 to spend, so the sum of the costs must be \$3000. Thus, #math.equation(block: true, alt: "150 x plus 50 y equals 3000")[$150 x + 50 y = 3000$] + We choose some values of #math.equation(block: false, alt: "x")[$x$], and solve the equation for the corresponding value of #math.equation(block: false, alt: "y")[$y$]. For example, if #math.equation(block: false, alt: "x equals 10")[$x = 10$] then #math.equation(block: true, alt: "150 open parenthesis 10 close parenthesis plus 50 y, equals 300; 1500 plus 50 y, equals 3000; 50 y, equals 1500; y, equals 30")[$150 ( 10 ) + 50 y & = 300 \ 1500 + 50 y & = 3000 \ 50 y & = 1500 \ y & = 30$] If the manager buys 10 television ads, she can also buy 30 radio ads. You can verify the other entries in the table.#figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "12")[$12$]], [#math.equation(block: false, alt: "14")[$14$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "36")[$36$]], [#math.equation(block: false, alt: "30")[$30$]], [#math.equation(block: false, alt: "24")[$24$]], [#math.equation(block: false, alt: "18")[$18$]], )) + We plot the points from the table. All the solutions lie on a straight line, as shown in the figure. #figure(figph[data points on line], alt: "data points on line", caption: none) ] ] In central Nebraska, each acre of corn requires 25 acre-inches of water per year, and each acre of winter wheat requires 18 acre-inches of water. (An acre-inch is the amount of water needed to cover one acre of land to a depth of one inch.) A farmer can count on 9000 acre-inches of water for the coming year. (Source: Institute of Agriculture and Natural Resources, University of Nebraska) + Write an equation relating the number of acres of corn, #math.equation(block: false, alt: "x")[$x$], and the number of acres of wheat, #math.equation(block: false, alt: "y")[$y$], that the farmer can plant. #linebreak() \_\_\_\_\_ + Complete the table. Round your answers to tenths.#figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$x$]], [#math.equation(block: false, alt: "50")[$50$]], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "150")[$150$]], [#math.equation(block: false, alt: "200")[$200$]]), [#math.equation(block: false, alt: "y")[$y$]], [\_\_\_\_\_], [\_\_\_\_\_], [\_\_\_\_\_], [\_\_\_\_\_], )) #solutionbox[ + #math.equation(block: false, alt: "25 x plus 18 y equals 9000")[$25 x + 18 y = 9000$] + #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$x$]], [#math.equation(block: false, alt: "50")[$50$]], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "150")[$150$]], [#math.equation(block: false, alt: "200")[$200$]]), [#math.equation(block: false, alt: "y")[$y$]], [#math.equation(block: false, alt: "430.6")[$430.6$]], [#math.equation(block: false, alt: "361.1")[$361.1$]], [#math.equation(block: false, alt: "291.7")[$291.7$]], [#math.equation(block: false, alt: "222.2")[$222.2$]], )) ] In central Nebraska, each acre of corn requires 25 acre-inches of water per year, and each acre of winter wheat requires 18 acre-inches of water. (An acre-inch is the amount of water needed to cover one acre of land to a depth of one inch.) A farmer can count on 9000 acre-inches of water for the coming year. (Source: Institute of Agriculture and Natural Resources, University of Nebraska) + Write an equation relating the number of acres of corn, #math.equation(block: false, alt: "x")[$x$], and the number of acres of wheat, #math.equation(block: false, alt: "y")[$y$], that the farmer can plant. + Complete the table. Round your answers to tenths.#figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "50")[$50$]], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "150")[$150$]], [#math.equation(block: false, alt: "200")[$200$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) #solutionbox[ + #math.equation(block: false, alt: "25 x plus 18 y equals 9000")[$25 x + 18 y = 9000$] + #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "50")[$50$]], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "150")[$150$]], [#math.equation(block: false, alt: "200")[$200$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "430.6")[$430.6$]], [#math.equation(block: false, alt: "361.1")[$361.1$]], [#math.equation(block: false, alt: "291.7")[$291.7$]], [#math.equation(block: false, alt: "222.2")[$222.2$]], )) ] Write down two different equation forms for linear models. Which do you think is easier to use? \_\_\_\_\_ Write down two different equation forms for linear models. Which do you think is easier to use? === Intercepts #figure(figph[line with intercepts labeled], alt: "line with intercepts labeled", caption: none) Consider the graph of the equation #math.equation(block: true, alt: "3 x minus 4 y equals 12")[$3 x − 4 y = 12$] shown at left. The points where the graph crosses the axes are called the #strong[intercepts] of the graph. The coordinates of these points are easy to find. The #math.equation(block: false, alt: "y")[$y$]-coordinate of the #math.equation(block: false, alt: "x")[$x$]-intercept is zero, so we set #math.equation(block: false, alt: "y equals 0")[$y = 0$] in the equation to get #math.equation(block: true, alt: "3 open parenthesis 0 close parenthesis minus 4 x, equals 12; x equals minus 3")[$3 ( 0 ) − 4 x & = 12 \ x = − 3$] The #math.equation(block: false, alt: "x")[$x$]-intercept is the point #math.equation(block: false, alt: "open parenthesis minus 3 , 0 close parenthesis")[$( − 3 , 0 )$]. Also, the #math.equation(block: false, alt: "x")[$x$]-coordinate of the #math.equation(block: false, alt: "y")[$y$]-intercept is zero, so we set #math.equation(block: false, alt: "x equals 0")[$x = 0$] in the equation to get #math.equation(block: true, alt: "3 y minus 4 open parenthesis 0 close parenthesis equals 12; y equals 4")[$3 y − 4 ( 0 ) = 12 \ y = 4$] The #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , 4 close parenthesis")[$( 0 , 4 )$]. What is the #math.equation(block: false, alt: "y")[$y$]-coordinate of any point on the #math.equation(block: false, alt: "x")[$x$]-axis? \_\_\_\_\_ #solutionbox[ #math.equation(block: true, alt: "0")[$0$] ] What is the #math.equation(block: false, alt: "y")[$y$]-coordinate of any point on the #math.equation(block: false, alt: "x")[$x$]-axis? + #math.equation(block: false, alt: "open parenthesis x , y close parenthesis")[$( x , y )$] + #math.equation(block: false, alt: "y")[$y$] + It depends on the value of #math.equation(block: false, alt: "x")[$x$]. + #math.equation(block: false, alt: "0")[$0$] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Intercepts of a Graph] The points where a graph crosses the axes are called the #strong[intercepts of the graph]. + To find the #math.equation(block: false, alt: "y")[$y$]-intercept, set #math.equation(block: false, alt: "x equals 0")[$x = 0$] and solve for #math.equation(block: false, alt: "y")[$y$]. + To find the #math.equation(block: false, alt: "x")[$x$]-intercept, set #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solve for #math.equation(block: false, alt: "x")[$x$] ] The intercepts of a graph tell us something about the situation it models. #examplebox("Example 6")[][ + Find the intercepts of the graph in Practice 3, about the pollution in Silver Lake. + Find the intercepts of the graph in Practice 3, about the pollution in Silver Lake. + What do the intercepts tell us about the problem? #solutionbox[ + An equation for the concentration of toxic chemicals is #math.equation(block: true, alt: "C equals 285 minus 15 t")[$C = 285 − 15 t$] To find the #math.equation(block: false, alt: "C")[$C$]-intercept, we set #math.equation(block: false, alt: "t")[$t$] equal to zero. #math.equation(block: true, alt: "C equals 285 minus 15 open parenthesis 0 close parenthesis equals 285")[$C = 285 − 15 ( 0 ) = 285$] The #math.equation(block: false, alt: "C")[$C$]-intercept is the point #math.equation(block: false, alt: "open parenthesis 0 , 285 close parenthesis")[$( 0 , 285 )$], or simply #math.equation(block: false, alt: "285")[$285$]. #linebreak() To find the #math.equation(block: false, alt: "t")[$t$]-intercept, we set #math.equation(block: false, alt: "C")[$C$] equal to zero and solve for #math.equation(block: false, alt: "t")[$t$]. #linebreak() #math.equation(block: true, alt: "0, equals 285 minus 15 t, Add 15 t to both sides.; 15 t, equals 285, Divide both sides by 15.; t, equals 19")[$0 & = 285 − 15 t & & "Add " 15 bold(italic(t)) " to both sides." \ 15 t & = 285 & & "Divide both sides by 15." \ t & = 19$] #linebreak() The #math.equation(block: false, alt: "t")[$t$]-intercept is the point #math.equation(block: false, alt: "open parenthesis 19 , 0 close parenthesis")[$( 19 , 0 )$], or simply #math.equation(block: false, alt: "19")[$19$]. + The #math.equation(block: false, alt: "C")[$C$]-intercept represents the concentration of toxic chemicals in Silver Lake now: When #math.equation(block: false, alt: "t equals 0")[$t = 0$], #math.equation(block: false, alt: "C equals 285")[$C = 285$], so the concentration is currently #math.equation(block: false, alt: "285")[$285$] ppm. #linebreak() The #math.equation(block: false, alt: "t")[$t$]-intercept represents the number of years it will take for the concentration of toxic chemicals to drop to zero: When #math.equation(block: false, alt: "C equals 0")[$C = 0$], #math.equation(block: false, alt: "t equals 19")[$t = 19$], so it will take #math.equation(block: false, alt: "19")[$19$] years for the pollution to be eliminated entirely. ] ] Delbert says that the intercepts of the line #math.equation(block: false, alt: "3 x plus 5 y equals 30")[$3 x + 5 y = 30$] are #math.equation(block: false, alt: "open parenthesis 10 , 6 close parenthesis")[$( 10 , 6 )$]. What is wrong with his answer? \_\_\_\_\_ #solutionbox[ All of the above ] Delbert says that the intercepts of the line #math.equation(block: false, alt: "3 x plus 5 y equals 30")[$" " 3 x + 5 y = 30 " "$] are #math.equation(block: false, alt: "open parenthesis 10 , 6 close parenthesis")[$( 10 , 6 )$]. What is wrong with his answer? + #math.equation(block: false, alt: "open parenthesis 10 , 6 close parenthesis")[$( 10 , 6 )$] is not on the #math.equation(block: false, alt: "x")[$x$]-axis. + An intercept must have a 0 coordinate. + The line has two intercepts. + All of the above. Find the intercepts of the graph in Example, about the advertising budget for Albert's Appliances: #math.equation(block: false, alt: "150 x plus 50 y equals 3000")[$150 x + 50 y = 3000$]. + Enter each intercept as an ordered pair. #linebreak() The #math.equation(block: false, alt: "x")[$x$]-intercept is \_\_\_\_\_. #linebreak() The #math.equation(block: false, alt: "y")[$y$]-intercept is \_\_\_\_\_. + What do the intercepts tell us about the problem? #linebreak() The #math.equation(block: false, alt: "x")[$x$]-intercept tells us: #linebreak() \_\_\_\_\_ #linebreak() The #math.equation(block: false, alt: "y")[$y$]-intercept tells us: #linebreak() \_\_\_\_\_ #solutionbox[ + We find the #math.equation(block: false, alt: "x")[$x$]-intercept by setting #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solving for #math.equation(block: false, alt: "x")[$x$] to learn that #math.equation(block: false, alt: "x equals x0")[$x = "x0"$], so the #math.equation(block: false, alt: "x")[$x$]-intercept is #math.equation(block: false, alt: "xint")[$"xint"$]. #linebreak() We find the #math.equation(block: false, alt: "y")[$y$]-intercept by setting #math.equation(block: false, alt: "x equals 0")[$x = 0$] and solving for #math.equation(block: false, alt: "y")[$y$] to learn that #math.equation(block: false, alt: "y equals y0")[$y = "y0"$], so the #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "yint")[$"yint"$]. + The #math.equation(block: false, alt: "x")[$x$]-intercept has #math.equation(block: false, alt: "y equals 0")[$y = 0$], that is, it corresponds to when there are zero radio ads. The #math.equation(block: false, alt: "y")[$y$] -intercept has #math.equation(block: false, alt: "x equals 0")[$x = 0$], that is, it corresponds to when there are zero tv ads. ] + Find the intercepts of the graph in Example, about the advertising budget for Albert's Appliances: #math.equation(block: false, alt: "150 x plus 50 y equals 3000")[$" " 150 x + 50 y = 3000$]. + What do the intercepts tell us about the problem? #solutionbox[ + The #math.equation(block: false, alt: "x")[$x$]-intercept is #math.equation(block: false, alt: "open parenthesis 20 , 0 close parenthesis")[$( 20 , 0 )$]. The #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , 60 close parenthesis")[$( 0 , 60 )$]. + The manager can buy 20 television ads if she buys no radio ads. She can buy 60 radio ads if she buys no television ads. ] Explain how the words #strong[intercept] and #strong[intersect] are related, and how they are different. \_\_\_\_\_ Explain how the words #strong[intercept] and #strong[intersect] are related, and how they are different. === Intercept Method for Graphing Lines Because we really only need two points to graph a linear equation, we might as well find the intercepts first and use them to draw the graph. The values of the intercepts will also help us choose suitable scales for the axes. It is always a good idea to find a third point as a check. #examplebox("Example 7")[][ + Find the #math.equation(block: false, alt: "x")[$x$]- and #math.equation(block: false, alt: "y")[$y$]-intercepts of the graph of #math.equation(block: false, alt: "150 x minus 180 y equals 9000")[$" " 150 x − 180 y = 9000$]. + Use the intercepts to graph the equation. Find a third point as a check. #solutionbox[ + To find the #math.equation(block: false, alt: "x")[$x$]-intercept, we set #math.equation(block: false, alt: "y equals 0")[$y = 0$]. #linebreak() #math.equation(block: true, alt: "150 x minus 18 open parenthesis 0 close parenthesis, equals 9000, Simpify.; 150 x, equals 9000, Divide both sides by 150.; x, equals 60")[$150 x − 18 ( 0 ) & = 9000 & & "Simpify." \ 150 x & = 9000 & & "Divide both sides by 150." \ x & = 60 & &$] #linebreak() The #math.equation(block: false, alt: "x")[$x$]-intercept is the point #math.equation(block: false, alt: "open parenthesis 60 , 0 close parenthesis")[$( 60 , 0 )$]. To find the #math.equation(block: false, alt: "y")[$y$]-intercept, we set #math.equation(block: false, alt: "x equals 0")[$x = 0$]. #linebreak() #math.equation(block: true, alt: "150 open parenthesis 0 close parenthesis minus 18 y, equals 9000, Simpify.; minus 180 y, equals 9000, Divide both sides by minus 180.; y, equals minus 50")[$150 ( 0 ) − 18 y & = 9000 & & "Simpify." \ − 180 y & = 9000 & & "Divide both sides by " − 180 "." \ y & = − 50 & &$] #linebreak() The #math.equation(block: false, alt: "y")[$y$]-intercept is the point #math.equation(block: false, alt: "open parenthesis 0 , minus 50 close parenthesis")[$( 0 , − 50 )$]. + We scale both axes in intervals of 10 and then plot the two intercepts, #math.equation(block: false, alt: "open parenthesis 60 , 0 close parenthesis")[$( 60 , 0 )$] and #math.equation(block: false, alt: "open parenthesis 0 , minus 50 close parenthesis")[$( 0 , − 50 )$]. We draw the line through them, as shown below. Finally, we find another point and check that it lies on this line. We choose #math.equation(block: false, alt: "x equals 20")[$x = 20$] and solve for #math.equation(block: false, alt: "y")[$y$]. #math.equation(block: true, alt: "150 open parenthesis 20 close parenthesis minus 180 y, equals 9000; 3000 minus 180 y, equals 9000; minus 180 y, equals 6000; y, equals minus 33.3 bar")[$150 ( 20 ) − 180 y & = 9000 \ 3000 − 180 y & = 9000 \ − 180 y & = 6000 \ y & = − 33. limits(3)^(―)$] We plot the point #math.equation(block: false, alt: "open parenthesis 20 , minus 33 the fraction 1 over 3 close parenthesis")[$( 20 , − 33 frac(1, 3) )$]. Because this point lies on the line, we can be reasonably confident that our graph is correct. #figure(figph[graph of equation with intercepts], alt: "graph of equation with intercepts", caption: none) ] ] Is it possible for the #math.equation(block: false, alt: "x")[$x$]-intercept and the #math.equation(block: false, alt: "y")[$y$]-intercept of a line to be the same point? \_\_\_\_\_ #solutionbox[ Yes ] Is it possible for the #math.equation(block: false, alt: "x")[$x$]-intercept and the #math.equation(block: false, alt: "y")[$y$]-intercept of a line to be the same point? #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Graph a Line Using the Intercept Method:] + Find the intercepts of the line. + To find the #math.equation(block: false, alt: "x")[$x$]-intercept, set #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solve for #math.equation(block: false, alt: "x")[$x$]. + To find the #math.equation(block: false, alt: "y")[$y$]-intercept, set #math.equation(block: false, alt: "x equals 0")[$x = 0$] and solve for #math.equation(block: false, alt: "y")[$y$]. + Plot the intercepts. + Choose a value for #math.equation(block: false, alt: "x")[$x$] and find a third point on the line. + Draw a line through the points. ] How many points do you need to graph a linear equation? \_\_\_\_\_ #solutionbox[ Two ] How many points do you need to graph a linear equation? + Two + Three + One in each quadrant + It depends on the equation #notebox("Technology", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Choosing a Graphing Window] Knowing the intercepts can also help us choose a suitable window on a graphing utility. We would like the window to be large enough to show the intercepts. For the graph in the example above, we can enter the equation #math.equation(block: true, alt: "Y equals open parenthesis 9000 minus 150 X close parenthesis / minus 180")[$Y = ( 9000 − 150 X ) / − 180$] in the window #figure(table( columns: 3, align: left, inset: 6pt, table.header([Xmin#math.equation(block: false, alt: "equals minus 20")[$= − 20$]], [], [Xmax#math.equation(block: false, alt: "equals 70")[$= 70$]]), [Ymin#math.equation(block: false, alt: "equals minus 70")[$= − 70$]], [], [Ymax#math.equation(block: false, alt: "equals 30")[$= 30$]], )) ] In Practice 5 you wrote an equation about crops in Nebraska. + Find the intercepts of the graph. #linebreak() Note: Enter each intercept as an ordered pair. #linebreak() The #math.equation(block: false, alt: "x")[$x$]-intercept is \_\_\_\_\_. #linebreak() The #math.equation(block: false, alt: "y")[$y$]-intercept is \_\_\_\_\_. + Use the intercepts to help you choose appropriate scales for the axes, and then graph the equation. + What do the intercepts tell us about the problem? #linebreak() The #math.equation(block: false, alt: "x")[$x$]-intercept tells us: #linebreak() \_\_\_\_\_ #linebreak() The #math.equation(block: false, alt: "y")[$y$]-intercept tells us: #linebreak() \_\_\_\_\_ #solutionbox[ + We find the #math.equation(block: false, alt: "x")[$x$]-intercept by setting #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solving for #math.equation(block: false, alt: "x")[$x$] to learn that #math.equation(block: false, alt: "x equals x0")[$x = "x0"$], so the #math.equation(block: false, alt: "x")[$x$]-intercept is #math.equation(block: false, alt: "xint")[$"xint"$]. #linebreak() We find the #math.equation(block: false, alt: "y")[$y$]-intercept by setting #math.equation(block: false, alt: "x equals 0")[$x = 0$] and solving for #math.equation(block: false, alt: "y")[$y$] to learn that #math.equation(block: false, alt: "y equals y0")[$y = "y0"$], so the #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "yint")[$"yint"$]. + If he plants no wheat, the farmer can plant 360 acres of corn. If he plants no corn, the farmer can plant 500 acres of wheat. ] A graph is shown below. #figure(figph[acres of wheat vs acres of corn], alt: "acres of wheat vs acres of corn", caption: none) In Practice 5 you wrote an equation about crops in Nebraska. + Find the intercepts of the graph. + Use the intercepts to help you choose appropriate scales for the axes, and then graph the equation. + What do the intercepts tell us about the crops? #solutionbox[ + The #math.equation(block: false, alt: "x")[$x$]-intercept is #math.equation(block: false, alt: "open parenthesis 360 , 0 close parenthesis")[$( 360 , 0 )$]. The #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , 500 close parenthesis")[$( 0 , 500 )$]. + #figure(figph[acres of wheat vs acres of corn], alt: "acres of wheat vs acres of corn", caption: none) + If he plants no wheat, the farmer can plant 360 acres of corn. If he plants no corn, the farmer can plant 500 acres of wheat. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The examples in this section model simple linear relationships between two variables. Such relationships, in which the value of one variable is determined by the value of the other, are called #strong[functions]. We will study various kinds of functions throughout the course. ] What was the most difficult part of this section to understand? Write a question whose answer would help you understand it. \_\_\_\_\_ What was the most difficult part of this section to understand? Write a question whose answer would help you understand it. === Section Summary ==== Vocabulary Look up the definitions of new terms in the Glossary. - Variable - Solve an equation - Evaluate an expression - Linear equation - Increasing graph - Decreasing graph - Intercept - Mathematical model ==== CONCEPTS + We can describe a relationship between variables with a table of values, a graph, or an equation. + Linear models have equations of the following form: #math.equation(block: true, alt: "y equals open parenthesis starting value close parenthesis plus open parenthesis rate of change close parenthesis times x")[$y = ( "starting value" ) + ( "rate of change" ) ⋅ x$] + To make a useful graph, we must choose appropriate scales for the axes. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[General Form for a Linear Equation] The graph of any equation #math.equation(block: true, alt: "A x plus B y equals C")[$A x + B y = C$]where #math.equation(block: false, alt: "A")[$A$] and #math.equation(block: false, alt: "B")[$B$] are not both equal to zero, is a straight line. ] + The intercepts of a graph are the points where the graph crosses the axes. + We can use the intercepts to graph a line. #linebreak() #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Graph a Line Using the Intercept Method:] + Find the intercepts of the line. + To find the #math.equation(block: false, alt: "x")[$x$]-intercept, set #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solve for #math.equation(block: false, alt: "x")[$x$]. + To find the #math.equation(block: false, alt: "y")[$y$]-intercept, set #math.equation(block: false, alt: "x equals 0")[$x = 0$] and solve for #math.equation(block: false, alt: "y")[$y$]. + Plot the intercepts. + Choose a value for #math.equation(block: false, alt: "x")[$x$] and find a third point on the line. + Draw a line through the points. ] + The intercepts are also useful for interpreting a model. ==== STUDY QUESTIONS + Name three ways to represent a relationship between two variables. + If #math.equation(block: false, alt: "C")[$C$] is expressed in terms of #math.equation(block: false, alt: "H")[$H$], which variable goes on the horizontal axis? + Explain the difference between evaluating an expression and solving an equation. + How many points do you need to graph a linear equation? + Explain how the words #strong[intercept] and #strong[intersect] are related; explain how they are different. + Delbert says that the intercepts of the line #math.equation(block: false, alt: "3 x plus 5 y equals 30")[$3 x + 5 y = 30$] are #math.equation(block: false, alt: "open parenthesis 10 , 6 close parenthesis")[$( 10 , 6 )$]. What is wrong with his answer? ==== SKILLS Practice each skill in the Homework problems listed. + Make a table of values: \#1–4, 7 and 8 + Plot points and draw a graph: \#1–4, 7 and 8 + Choose appropriate scales for the axes: \#5–12 + Write a linear model of the form #math.equation(block: false, alt: "y equals open parenthesis starting value close parenthesis plus open parenthesis rate of change close parenthesis times x")[$y = ( "starting value" ) + ( "rate of change" ) ⋅ x$]: \#1–8 + Write a linear model in general form: \#25–28, 33–36 + Evaluate a linear expression, algebraically and graphically: \#1–4 + Solve a linear equation, algebraically and graphically: \#1–4 + Find the intercepts of a graph: \#5 and 6, 13–24, 45–52 + Graph a line by the intercept method: \#5 and 6, 13–24 + Interpret the meaning of the intercepts: \#5 and 6, 25–28 + Use a graphing calculator to graph a line: \#37–52 + Sketch on paper a graph obtained on a calculator: \#37–44 === Homework 1.1 The temperature in the desert at 6 a.m., just before sunrise, was #math.equation(block: false, alt: "65 degrees")[$65^(∘)$]F. The temperature rose #math.equation(block: false, alt: "5")[$5$] degrees every hour until it reached its maximum value at about 5 p.m. Complete the table of values for the temperature, #math.equation(block: false, alt: "T")[$T$], at #math.equation(block: false, alt: "h")[$h$] hours after 6 a.m. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "h")[$" " h " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "3")[$3$]], [#math.equation(block: false, alt: "6")[$6$]], [#math.equation(block: false, alt: "9")[$9$]], [#math.equation(block: false, alt: "10")[$10$]]), [#math.equation(block: false, alt: "T")[$" " T " "$]], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Write an equation for the temperature, #math.equation(block: false, alt: "T")[$T$], in terms of #math.equation(block: false, alt: "h")[$h$]. + Graph the equation.#figure(figph[grid], alt: "grid", caption: none) + How hot is it at noon? Illustrate the answer on your graph. + When will the temperature be #math.equation(block: false, alt: "110 degrees")[$110^(∘)$]F? Illustrate the answer on your graph. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "h")[$h$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "3")[$3$]], [#math.equation(block: false, alt: "6")[$6$]], [#math.equation(block: false, alt: "9")[$9$]], [#math.equation(block: false, alt: "10")[$10$]]), [#math.equation(block: false, alt: "T")[$T$]], [#math.equation(block: false, alt: "65")[$65$]], [#math.equation(block: false, alt: "80")[$80$]], [#math.equation(block: false, alt: "95")[$95$]], [#math.equation(block: false, alt: "110")[$110$]], [#math.equation(block: false, alt: "115")[$115$]], )) + #math.equation(block: false, alt: "T equals 65 plus 5 h")[$T = 65 + 5 h$] + #figure(figph[graph of temperature vs time], alt: "graph of temperature vs time", caption: none) + #math.equation(block: false, alt: "95 degrees")[$95^(∘)$] + 3 p.m. The taxi out of Dulles Airport charges a traveler with one suitcase an initial fee of \$#math.equation(block: false, alt: "2.00")[$2.00$], plus \$#math.equation(block: false, alt: "1.50")[$1.50$] for each mile traveled. Complete the table of values showing the charge, #math.equation(block: false, alt: "C")[$C$], for a trip of #math.equation(block: false, alt: "n")[$n$] miles. #figure(table( columns: 7, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "n")[$" " n " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "20")[$20$]], [#math.equation(block: false, alt: "25")[$25$]]), [#math.equation(block: false, alt: "C")[$" " C " "$]], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Write an equation for the charge, #math.equation(block: false, alt: "C")[$C$], in terms of the number of miles traveled, #math.equation(block: false, alt: "n")[$n$]. + Graph the equation.#figure(figph[grid], alt: "grid", caption: none) + What is the charge for a trip to Mount Vernon, #math.equation(block: false, alt: "40")[$40$] miles from the airport? Illustrate the answer on your graph. + If a ride to the National Institutes of Health (NIH) costs \$#math.equation(block: false, alt: "39.50")[$39.50$], how far is it from the airport to the NIH? Illustrate the answer on your graph. On October 31, Betty and Paul fill their #math.equation(block: false, alt: "250")[$250$]-gallon oil tank for their heater. Beginning in November, they use an average of #math.equation(block: false, alt: "15")[$15$] gallons of oil per week. Complete the table of values for the amount of oil, #math.equation(block: false, alt: "A")[$A$], left in the tank after #math.equation(block: false, alt: "w")[$w$] weeks. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "w")[$" " w " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "4")[$4$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "12")[$12$]], [#math.equation(block: false, alt: "16")[$16$]]), [#math.equation(block: false, alt: "A")[$" " A " "$]], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Write an equation that expresses the amount of oil, #math.equation(block: false, alt: "A")[$A$], in the tank in terms of the number of weeks, #math.equation(block: false, alt: "w")[$w$], since October 31. + Graph the equation.#figure(figph[graph of gallons vs weeks], alt: "graph of gallons vs weeks", caption: none) + How much did the amount of fuel oil in the tank decrease between the third week and the eighth week? Illustrate this amount on the graph. + When will the tank contain more than #math.equation(block: false, alt: "175")[$175$] gallons of fuel oil? Illustrate on the graph. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "w")[$w$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "4")[$4$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "12")[$12$]], [#math.equation(block: false, alt: "16")[$16$]]), [#math.equation(block: false, alt: "A")[$A$]], [#math.equation(block: false, alt: "250")[$250$]], [#math.equation(block: false, alt: "190")[$190$]], [#math.equation(block: false, alt: "130")[$130$]], [#math.equation(block: false, alt: "70")[$70$]], [#math.equation(block: false, alt: "10")[$10$]], )) + #math.equation(block: false, alt: "A equals 250 minus 15 w")[$A = 250 − 15 w$] + #figure(figph[grid], alt: "grid", caption: none) + 75 gallons + Until the fifth week Leon's camper has a #math.equation(block: false, alt: "20")[$20$]-gallon gas tank, and he gets #math.equation(block: false, alt: "12")[$12$] miles to the gallon. (That is, he uses #math.equation(block: false, alt: "the fraction 1 over 12")[$frac(1, 12)$] gallon per mile.) Complete the table of values for the amount of gas, #math.equation(block: false, alt: "g")[$g$], left in Leon's tank after driving #math.equation(block: false, alt: "m")[$m$] miles. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "m")[$" " m " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "48")[$48$]], [#math.equation(block: false, alt: "96")[$96$]], [#math.equation(block: false, alt: "144")[$144$]], [#math.equation(block: false, alt: "192")[$192$]]), [#math.equation(block: false, alt: "g")[$" " g " "$]], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Write an equation that expresses the amount of gas, #math.equation(block: false, alt: "g")[$g$], in Leon's fuel tank in terms of the number of miles, #math.equation(block: false, alt: "m")[$m$], he has driven. + Graph the equation.#figure(figph[grid], alt: "grid", caption: none) + How much gas will Leon use between 8 a.m., when his odometer reads #math.equation(block: false, alt: "96")[$96$] miles, and 9 a.m., when the odometer reads #math.equation(block: false, alt: "144")[$144$] miles? Illustrate on the graph. + If Leon has less than #math.equation(block: false, alt: "5")[$5$] gallons of gas left, how many miles has he driven? Illustrate on the graph. Phil and Ernie buy a used photocopier for \$#math.equation(block: false, alt: "800")[$800$] and set up a copy service on their campus. For each hour that the copier runs, Phil and Ernie make \$#math.equation(block: false, alt: "40")[$40$]. + Write an equation that expresses Phil and Ernie's profit (or loss), #math.equation(block: false, alt: "P")[$P$], in terms of the number of hours, #math.equation(block: false, alt: "t")[$t$], they run the copier. + Find the intercepts and sketch the graph. (Suggestion: Scale the horizontal axis from #math.equation(block: false, alt: "0")[$0$] to #math.equation(block: false, alt: "40")[$40$] in increments of #math.equation(block: false, alt: "5")[$5$], and scale the vertical axis from #math.equation(block: false, alt: "minus 1000")[$− 1000$] to #math.equation(block: false, alt: "400")[$400$] in increments of #math.equation(block: false, alt: "100")[$100$].) + What do the intercepts tell us about the profit? + #math.equation(block: false, alt: "P equals minus 800 plus 40 t")[$P = − 800 + 40 t$] + #math.equation(block: false, alt: "open parenthesis 0 , minus 800 close parenthesis")[$( 0 , − 800 )$], #math.equation(block: false, alt: "open parenthesis 20 , 0 close parenthesis")[$( 20 , 0 )$]#figure(figph[graph of profit vs hours], alt: "graph of profit vs hours", caption: none) + The #math.equation(block: false, alt: "P")[$P$]-intercept, #math.equation(block: false, alt: "minus 800")[$− 800$], is the initial #math.equation(block: false, alt: "open parenthesis t equals 0 close parenthesis")[$( t = 0 )$] value of the profit. Phil and Ernie start out #math.equation(block: false, alt: "$ 800")[$upright(\$) 800$] in debt. The #math.equation(block: false, alt: "t")[$t$]-intercept, #math.equation(block: false, alt: "20")[$20$], is the number of hours required for Phil and Ernie to break even. A deep-sea diver is taking some readings at a depth of #math.equation(block: false, alt: "400")[$400$] feet. He begins rising at #math.equation(block: false, alt: "20")[$20$] feet per minute. + Write an equation that expresses the diver’s altitude, #math.equation(block: false, alt: "h")[$h$], in terms of the number of minutes, #math.equation(block: false, alt: "m")[$m$], elapsed. (Consider a depth of #math.equation(block: false, alt: "400")[$400$] feet as an altitude of #math.equation(block: false, alt: "minus 400")[$− 400$] feet.) + Find the intercepts and sketch the graph. (Suggestion: Scale the horizontal axis from #math.equation(block: false, alt: "0")[$0$] to #math.equation(block: false, alt: "24")[$24$] in increments of #math.equation(block: false, alt: "2")[$2$], and scale the vertical axis from #math.equation(block: false, alt: "minus 500")[$− 500$] to #math.equation(block: false, alt: "100")[$100$] in increments of #math.equation(block: false, alt: "50")[$50$].) + What do the intercepts tell us about the diver's depth? There are many formulas for estimating the annual cost of driving. The Automobile Club estimates that fixed costs for a small car—including insurance, registration, depreciation, and financing—total about \$#math.equation(block: false, alt: "5000")[$5000$] per year. The operating costs for gasoline, oil, maintenance, tires, and so forth are about #math.equation(block: false, alt: "12.5")[$12.5$] cents per mile. (Source: Automobile Association of America) + Write an equation for the annual driving cost, #math.equation(block: false, alt: "C")[$C$], in terms of #math.equation(block: false, alt: "d")[$d$], the number of miles driven. + Complete the table of values.#figure(table( columns: 6, align: left, inset: 6pt, table.header([Miles Driven], [#math.equation(block: false, alt: "4000")[$4000$]], [#math.equation(block: false, alt: "8000")[$8000$]], [#math.equation(block: false, alt: "12 , 000")[$12 , 000$]], [#math.equation(block: false, alt: "16 , 000")[$16 , 000$]], [#math.equation(block: false, alt: "20 , 000")[$20 , 000$]]), [Cost (\$)], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Choose scales for the axes and graph the equation. + How much does the annual cost of driving increase when the mileage increases from #math.equation(block: false, alt: "8000")[$8000$] to #math.equation(block: false, alt: "12 , 000")[$12 , 000$] miles? Illustrate this amount on the graph. + How much mileage will cause the annual cost to exceed \$#math.equation(block: false, alt: "7000")[$7000$]? Illustrate on the graph. + #math.equation(block: false, alt: "C equals 5000 plus 0.125 d")[$C = 5000 + 0.125 d$] + Complete the table of values.#figure(table( columns: 6, align: left, inset: 6pt, table.header([Miles Driven], [#math.equation(block: false, alt: "4000")[$4000$]], [#math.equation(block: false, alt: "8000")[$8000$]], [#math.equation(block: false, alt: "12 , 000")[$12 , 000$]], [#math.equation(block: false, alt: "16 , 000")[$16 , 000$]], [#math.equation(block: false, alt: "20 , 000")[$20 , 000$]]), [Cost (\$)], [#math.equation(block: false, alt: "5500")[$5500$]], [#math.equation(block: false, alt: "6000")[$6000$]], [#math.equation(block: false, alt: "6500")[$6500$]], [#math.equation(block: false, alt: "7000")[$7000$]], [#math.equation(block: false, alt: "7500")[$7500$]], )) + #figure(figph[graph of cost vs miles driven], alt: "graph of cost vs miles driven", caption: none) + \$#math.equation(block: false, alt: "500")[$500$] + More than 16,000 miles The boiling point of water changes with altitude. At sea level, water boils at #math.equation(block: false, alt: "212 degrees")[$212^(∘)$]F, and the boiling point diminishes by approximately #math.equation(block: false, alt: "0.002 degrees")[$0.002^(∘)$]F for each #math.equation(block: false, alt: "1")[$1$]-foot increase in altitude. + Write an equation for the boiling point, #math.equation(block: false, alt: "B")[$B$], in terms of #math.equation(block: false, alt: "a")[$a$], the altitude in feet. + Complete the table of values.#figure(table( columns: 8, align: left, inset: 6pt, table.header([Altitude (ft)], [#math.equation(block: false, alt: "minus 500")[$− 500$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "1000")[$1000$]], [#math.equation(block: false, alt: "2000")[$2000$]], [#math.equation(block: false, alt: "3000")[$3000$]], [#math.equation(block: false, alt: "4000")[$4000$]], [#math.equation(block: false, alt: "5000")[$5000$]]), [Boiling point (#math.equation(block: false, alt: "∘")[$∘$]F)], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], [$#hide($0000$)$], )) + Choose scales for the axes and graph the equation. + How much does the boiling point decrease when the altitude increases from #math.equation(block: false, alt: "1000")[$1000$] to #math.equation(block: false, alt: "3000")[$3000$] feet? Illustrate this amount on the graph. + At what altitudes is the boiling point less than #math.equation(block: false, alt: "204 degrees")[$204^(∘)$]F? Illustrate on the graph. For each table, choose appropriate scales for the axes and plot the given points. #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "80")[$80$]], [#math.equation(block: false, alt: "90")[$90$]], [#math.equation(block: false, alt: "120")[$120$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "6")[$6$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "1.5")[$1.5$]], [#math.equation(block: false, alt: "1")[$1$]], )) #figure(figph[plotted points], alt: "plotted points", caption: none) #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "300")[$300$]], [#math.equation(block: false, alt: "500")[$500$]], [#math.equation(block: false, alt: "800")[$800$]], [#math.equation(block: false, alt: "1100")[$1100$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "1.2")[$1.2$]], [#math.equation(block: false, alt: "1.3")[$1.3$]], [#math.equation(block: false, alt: "1.5")[$1.5$]], [#math.equation(block: false, alt: "1.9")[$1.9$]], )) #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "0.01")[$0.01$]], [#math.equation(block: false, alt: "0.03")[$0.03$]], [#math.equation(block: false, alt: "0.06")[$0.06$]], [#math.equation(block: false, alt: "0.07")[$0.07$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "minus 0.2")[$− 0.2$]], [#math.equation(block: false, alt: "minus 1")[$− 1$]], [#math.equation(block: false, alt: "minus 1.1")[$− 1.1$]], [#math.equation(block: false, alt: "minus 2")[$− 2$]], )) #figure(figph[plotted points], alt: "plotted points", caption: none) #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$" " x " "$]], [#math.equation(block: false, alt: "0.003")[$0.003$]], [#math.equation(block: false, alt: "0.005")[$0.005$]], [#math.equation(block: false, alt: "0.008")[$0.008$]], [#math.equation(block: false, alt: "0.011")[$0.011$]]), [#math.equation(block: false, alt: "y")[$" " y " "$]], [#math.equation(block: false, alt: "6")[$6$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "1.5")[$1.5$]], [#math.equation(block: false, alt: "1")[$1$]], )) For Problems 13–18, + Find the intercepts of the graph. + Graph the equation by the intercept method. #math.equation(block: true, alt: "x plus 2 y equals 8")[$x + 2 y = 8$] + #math.equation(block: false, alt: "open parenthesis 8 , 0 close parenthesis , open parenthesis 0 , 4 close parenthesis")[$( 8 , 0 ) , ( 0 , 4 )$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "2 x minus y equals 6")[$2 x − y = 6$] #math.equation(block: true, alt: "3 x minus 4 y equals 12")[$3 x − 4 y = 12$] + #math.equation(block: false, alt: "open parenthesis 4 , 0 close parenthesis , open parenthesis 0 , minus 3 close parenthesis")[$( 4 , 0 ) , ( 0 , − 3 )$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "2 x plus 6 y equals 6")[$2 x + 6 y = 6$] #math.equation(block: true, alt: "the fraction x over 9 minus the fraction y over 4 equals 1")[$display(frac(x, 9) − frac(y, 4) = 1)$] + #math.equation(block: false, alt: "open parenthesis 9 , 0 close parenthesis , open parenthesis 0 , minus 4 close parenthesis")[$( 9 , 0 ) , ( 0 , − 4 )$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "the fraction x over 5 plus the fraction y over 8 equals 1")[$display(frac(x, 5) + frac(y, 8) = 1)$] For Problems 19–24, + Find the intercepts of the graph. + Use the intercepts to choose scales for the axes, and then graph the equation by the intercept method. #math.equation(block: true, alt: "20 x equals 30 y minus 45 , 000")[$20 x = 30 y − 45 , 000$] + #math.equation(block: false, alt: "open parenthesis minus 2250 , 0 close parenthesis , open parenthesis 0 , 1500 close parenthesis")[$( − 2250 , 0 ) , ( 0 , 1500 )$] + #figure(figph[plotted points], alt: "plotted points", caption: none) #math.equation(block: true, alt: "30 x equals 45 y plus 60 , 000")[$30 x = 45 y + 60 , 000$] #math.equation(block: true, alt: "0.4 x plus 1.2 y equals 4.8")[$0.4 x + 1.2 y = 4.8$] + #math.equation(block: false, alt: "open parenthesis 12 , 0 close parenthesis , open parenthesis 0 , 4 close parenthesis")[$( 12 , 0 ) , ( 0 , 4 )$] + #figure(figph[plotted points], alt: "plotted points", caption: none) #math.equation(block: true, alt: "3.2 x minus 0.8 y equals 12.8")[$3.2 x − 0.8 y = 12.8$] #math.equation(block: true, alt: "the fraction 2 x over 3 plus the fraction 3 y over 11 equals 1")[$display(frac(2 x, 3) + frac(3 y, 11) = 1)$] + #math.equation(block: false, alt: "open parenthesis the fraction 3 over 2 , 0 close parenthesis , open parenthesis 0 , the fraction 11 over 3 close parenthesis")[$( display(frac(3, 2)) , 0 ) , ( 0 , display(frac(11, 3)) )$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "the fraction 8 x over 7 minus the fraction 2 y over 7 equals 1")[$display(frac(8 x, 7) − frac(2 y, 7) = 1)$] The owner of a gas station has \$#math.equation(block: false, alt: "19 , 200")[$19 , 200$] to spend on unleaded gas this month. Regular unleaded costs him \$#math.equation(block: false, alt: "2.40")[$2.40$] per gallon, and premium unleaded costs \$#math.equation(block: false, alt: "3.20")[$3.20$] per gallon. + How much do #math.equation(block: false, alt: "x")[$x$] gallons of regular cost? How much do #math.equation(block: false, alt: "y")[$y$] gallons of premium cost? + Write an equation in general form that relates the amount of regular unleaded gasoline, #math.equation(block: false, alt: "x")[$x$], the owner can buy and the amount of premium unleaded, #math.equation(block: false, alt: "y")[$y$]. + Find the intercepts and sketch the graph. + What do the intercepts tell us about the amount of gasoline the owner can purchase? + \$#math.equation(block: false, alt: "2.40 x ,")[$2.40 x ,$] \$#math.equation(block: false, alt: "3.20 y")[$3.20 y$] + #math.equation(block: false, alt: "2.40 x plus 3.20 y equals 19 , 200")[$2.40 x + 3.20 y = 19 , 200$] + #figure(figph[line], alt: "line", caption: none) + The #math.equation(block: false, alt: "y")[$y$]-intercept, #math.equation(block: false, alt: "6000")[$6000$] gallons, is the amount of premium that the gas station owner can buy if he buys no regular. The #math.equation(block: false, alt: "x")[$x$]-intercept, #math.equation(block: false, alt: "8000")[$8000$] gallons, is the amount of regular he can buy if he buys no premium. Five pounds of body fat is equivalent to #math.equation(block: false, alt: "16 , 000")[$16 , 000$] calories. Carol can burn #math.equation(block: false, alt: "600")[$600$] calories per hour bicycling and #math.equation(block: false, alt: "400")[$400$] calories per hour swimming. + How many calories will Carol burn in #math.equation(block: false, alt: "x")[$x$] hours of cycling? How many calories will she burn in #math.equation(block: false, alt: "y")[$y$] hours of swimming? + Write an equation in general form that relates the number of hours, #math.equation(block: false, alt: "x")[$x$], of cycling and the number of hours, #math.equation(block: false, alt: "y")[$y$], of swimming Carol needs to perform in order to lose #math.equation(block: false, alt: "5")[$5$] pounds. + Find the intercepts and sketch the graph. + What do the intercepts tell us about Carol's exercise program? Delbert must increase his daily potassium intake by #math.equation(block: false, alt: "1800")[$1800$] mg. He decides to eat a combination of figs and bananas, which are both low in sodium. There are #math.equation(block: false, alt: "9")[$9$] mg potassium per gram of fig, and #math.equation(block: false, alt: "4")[$4$] mg potassium per gram of banana. + How much potassium is in #math.equation(block: false, alt: "x")[$x$] grams of fig? How much potassium is in #math.equation(block: false, alt: "y")[$y$] grams of banana? + Write an equation in general form that relates the number of grams, #math.equation(block: false, alt: "x")[$x$], of fig and the number of grams, #math.equation(block: false, alt: "y")[$y$], of banana Delbert needs to get #math.equation(block: false, alt: "1800")[$1800$] mg of potassium. + Find the intercepts and sketch the graph. + What do the intercepts tell us about Delbert's diet? + #math.equation(block: false, alt: "9 x")[$9 x$] mg, #math.equation(block: false, alt: "4 y")[$4 y$] mg + #math.equation(block: false, alt: "9 x plus 4 y equals 1800")[$9 x + 4 y = 1800$] + #figure(figph[line], alt: "line", caption: none) + The #math.equation(block: false, alt: "x")[$x$]-intercept, #math.equation(block: false, alt: "200")[$200$] grams, tells how much fig Delbert should eat if he has no bananas, and the #math.equation(block: false, alt: "y")[$y$]-intercept, #math.equation(block: false, alt: "450")[$450$] grams, tells how much banana he should eat if he has no figs. Leslie plans to invest some money in two CD accounts. The first account pays #math.equation(block: false, alt: "3.6 %")[$3.6 upright(%)$] interest per year, and the second account pays #math.equation(block: false, alt: "2.8 %")[$2.8 upright(%)$] interest per year. Leslie would like to earn \$#math.equation(block: false, alt: "500")[$500$] per year on her investment. + If Leslie invests #math.equation(block: false, alt: "x")[$x$] dollars in the first account, how much interest will she earn? How much interest will she earn if she invests #math.equation(block: false, alt: "y")[$y$] dollars in the second account? + Write an equation in general form that relates #math.equation(block: false, alt: "x")[$x$] and #math.equation(block: false, alt: "y")[$y$] if Leslie earns #math.equation(block: false, alt: "$ 500")[$upright(\$) 500$] interest. + Find the intercepts and sketch the graph. + What do the intercepts tell us about Leslie's investments? Find the intercepts of the graph for each equation. + #math.equation(block: false, alt: "the fraction x over 3 plus the fraction y over 5 equals 1")[$display(frac(x, 3) + frac(y, 5) = 1)$] + #math.equation(block: false, alt: "2 x minus 4 y equals 1")[$display(2 x − 4 y = 1)$] + #math.equation(block: false, alt: "the fraction 2 x over 5 minus the fraction 2 y over 3 equals 1")[$display(frac(2 x, 5) − frac(2 y, 3) = 1)$] + #math.equation(block: false, alt: "the fraction x over p plus the fraction y over q equals 1")[$display(frac(x, p) + frac(y, q) = 1)$] $#hide($00$)$ e. Why is the equation #math.equation(block: false, alt: "the fraction x over a plus the fraction y over b equals 1")[$display(frac(x, a) + frac(y, b) = 1)$] called the #strong[intercept form] for a line? + #math.equation(block: false, alt: "open parenthesis 3 , 0 close parenthesis , open parenthesis 0 , 5 close parenthesis")[$( 3 , 0 ) , ( 0 , 5 )$] + #math.equation(block: false, alt: "open parenthesis the fraction 1 over 2 , 0 close parenthesis , open parenthesis 0 , the fraction minus 1 over 4 close parenthesis")[$( display(frac(1, 2)) , 0 ) , ( 0 , display(frac(− 1, 4)) )$] + #math.equation(block: false, alt: "open parenthesis the fraction 5 over 2 , 0 close parenthesis , open parenthesis 0 , the fraction minus 3 over 2 close parenthesis")[$( display(frac(5, 2)) , 0 ) , ( 0 , display(frac(− 3, 2)) )$] + #math.equation(block: false, alt: "open parenthesis p , 0 close parenthesis , open parenthesis 0 , q close parenthesis")[$( p , 0 ) , ( 0 , q )$] + The value of #math.equation(block: false, alt: "a")[$a$] is the #math.equation(block: false, alt: "x")[$x$]-intercept, and the value of #math.equation(block: false, alt: "b")[$b$] is the #math.equation(block: false, alt: "y")[$y$]-intercept. Write an equation in intercept form (see Problem 29) for the line with the given intercepts. Then write the equation in general form. + #math.equation(block: false, alt: "open parenthesis 6 , 0 close parenthesis , open parenthesis 0 , 2 close parenthesis")[$( 6 , 0 ) , ( 0 , 2 )$] + #math.equation(block: false, alt: "open parenthesis minus 3 , 0 close parenthesis , open parenthesis 0 , 8 close parenthesis")[$( − 3 , 0 ) , ( 0 , 8 )$] + #math.equation(block: false, alt: "open parenthesis the fraction 3 over 4 , 0 close parenthesis , open parenthesis 0 , the fraction minus 1 over 4 close parenthesis")[$( display(frac(3, 4)) , 0 ) , ( 0 , display(frac(− 1, 4)) )$] + #math.equation(block: false, alt: "open parenthesis v , 0 close parenthesis , open parenthesis 0 , minus w close parenthesis")[$( v , 0 ) , ( 0 , − w )$] + #math.equation(block: false, alt: "open parenthesis the fraction 1 over H , 0 close parenthesis , open parenthesis 0 , the fraction 1 over T close parenthesis")[$( display(frac(1, H)) , 0 ) , ( 0 , display(frac(1, T)) )$] + Find the #math.equation(block: false, alt: "y")[$y$]-intercept of the line #math.equation(block: false, alt: "y equals m x plus b")[$y = m x + b$]. + Find the #math.equation(block: false, alt: "x")[$x$]-intercept of the line #math.equation(block: false, alt: "y equals m x plus b")[$y = m x + b$]. + #math.equation(block: false, alt: "open parenthesis 0 , b close parenthesis")[$( 0 , b )$] + #math.equation(block: false, alt: "open parenthesis the fraction minus b over m , 0 close parenthesis")[$( display(frac(− b, m)) , 0 )$], if #math.equation(block: false, alt: "m not equal to 0")[$m ≠ 0$] + Find the #math.equation(block: false, alt: "y")[$y$]-intercept of the line #math.equation(block: false, alt: "A x plus B y equals C")[$A x + B y = C$]. + Find the #math.equation(block: false, alt: "x")[$x$]-intercept of the line #math.equation(block: false, alt: "A x plus B y equals C")[$A x + B y = C$]. Write an equation in general form for each line. #figure(figph[graph of line], alt: "graph of line", caption: none) #math.equation(block: true, alt: "minus 2 x plus 3 y equals 2400")[$− 2 x + 3 y = 2400$] #figure(figph[graph of line], alt: "graph of line", caption: none) #figure(figph[graph of line], alt: "graph of line", caption: none) #math.equation(block: true, alt: "3 x plus 400 y equals 240")[$3 x + 400 y = 240$] #figure(figph[graph of line], alt: "graph of line", caption: none) For Problems 37–44, + Solve each equation for #math.equation(block: false, alt: "y")[$y$] in terms of #math.equation(block: false, alt: "x")[$x$]. (See the Algebra Skills Refresher Linear Equations and Inequalities to review this skill.) + Graph the equation with your graphing utility in the specified window. + Make a pencil and paper sketch of the graph. Label the scales on your axes, and the coordinates of the intercepts. #math.equation(block: true, alt: "2 plus y equals 6")[$2 + y = 6$] #math.equation(block: true, alt: "Xmin, equals minus 10, Ymin equals minus 10; Xmax, equals 10, Ymax equals 10; Xscl, equals 1, Yscl equals 1")[$"Xmin" & = − 10 & & "Ymin" = − 10 \ "Xmax" & = 10 & & "Ymax" = 10 \ "Xscl" & = 1 & & "Yscl" = 1$] + #math.equation(block: false, alt: "y equals 6 minus 2 x")[$y = 6 − 2 x$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "8 minus y plus 3 x equals 0")[$8 − y + 3 x = 0$] #math.equation(block: true, alt: "Xmin, equals minus 10, Ymin equals minus 10; Xmax, equals 10, Ymax equals 10; Xscl, equals 1, Yscl equals 1")[$"Xmin" & = − 10 & & "Ymin" = − 10 \ "Xmax" & = 10 & & "Ymax" = 10 \ "Xscl" & = 1 & & "Yscl" = 1$] #math.equation(block: true, alt: "3 x minus 4 y equals 1200")[$3 x − 4 y = 1200$] #math.equation(block: true, alt: "Xmin, equals minus 1000, Ymin equals minus 1000; Xmax, equals 1000, Ymax equals 1000; Xscl, equals 100, Yscl equals 100")[$"Xmin" & = − 1000 & & "Ymin" = − 1000 \ "Xmax" & = 1000 & & "Ymax" = 1000 \ "Xscl" & = 100 & & "Yscl" = 100$] + #math.equation(block: false, alt: "y equals the fraction 3 over 4 x minus 300")[$y = display(frac(3, 4)) x − 300$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "x plus 2 y equals 500")[$x + 2 y = 500$] #math.equation(block: true, alt: "Xmin, equals minus 1000, Ymin equals minus 1000; Xmax, equals 1000, Ymax equals 1000; Xscl, equals 100, Yscl equals 100")[$"Xmin" & = − 1000 & & "Ymin" = − 1000 \ "Xmax" & = 1000 & & "Ymax" = 1000 \ "Xscl" & = 100 & & "Yscl" = 100$] #math.equation(block: true, alt: "0.2 x plus 5 y equals 0.1")[$0.2 x + 5 y = 0.1$] #math.equation(block: true, alt: "Xmin, equals minus 1, Ymin equals minus 0.1; Xmax, equals 1, Ymax equals 0.1; Xscl, equals 0.1, Yscl equals 0.01")[$"Xmin" & = − 1 & & "Ymin" = − 0.1 \ "Xmax" & = 1 & & "Ymax" = 0.1 \ "Xscl" & = 0.1 & & "Yscl" = 0.01$] + #math.equation(block: false, alt: "y equals 0.02 minus 0.04 x")[$y = 0.02 − 0.04 x$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "1.2 x minus 4.2 y equals 3.6")[$1.2 x − 4.2 y = 3.6$] #math.equation(block: true, alt: "Xmin, equals minus 1, Ymin equals minus 1; Xmax, equals 4, Ymax equals 1; Xscl, equals 0.2, Yscl equals 0.1")[$"Xmin" & = − 1 & & "Ymin" = − 1 \ "Xmax" & = 4 & & "Ymax" = 1 \ "Xscl" & = 0.2 & & "Yscl" = 0.1$] #math.equation(block: true, alt: "70 x plus 3 y equals y plus 420")[$70 x + 3 y = y + 420$] #math.equation(block: true, alt: "Xmin, equals 0, Ymin equals 0; Xmax, equals 10, Ymax equals 250; Xscl, equals 1, Yscl equals 25")[$"Xmin" & = 0 & & "Ymin" = 0 \ "Xmax" & = 10 & & "Ymax" = 250 \ "Xscl" & = 1 & & "Yscl" = 25$] + #math.equation(block: false, alt: "y equals 210 minus 35 x")[$y = 210 − 35 x$] + #figure(figph[line], alt: "line", caption: none) #math.equation(block: true, alt: "40 y minus 5 x equals 780 minus 20 y")[$40 y − 5 x = 780 − 20 y$] #math.equation(block: true, alt: "Xmin, equals minus 200, Ymin equals 0; Xmax, equals 0, Ymax equals 20; Xscl, equals 20, Yscl equals 2")[$"Xmin" & = − 200 & & "Ymin" = 0 \ "Xmax" & = 0 & & "Ymax" = 20 \ "Xscl" & = 20 & & "Yscl" = 2$] For Problems 45–52, + Find the #math.equation(block: false, alt: "x")[$x$]- and #math.equation(block: false, alt: "y")[$y$]-intercepts. + Solve the equation for #math.equation(block: false, alt: "y")[$y$]. + Choose a graphing window in which both intercepts are visible, and graph the equation with your graphing utility. #math.equation(block: true, alt: "x plus 4 y equals 100")[$x + 4 y = 100$] + #math.equation(block: false, alt: "open parenthesis 100 , 0 close parenthesis , open parenthesis 0 , 25 close parenthesis")[$( 100 , 0 ) , ( 0 , 25 )$] + #math.equation(block: false, alt: "y equals 25 minus the fraction 1 over 4 x")[$y = 25 − display(frac(1, 4)) x$] + #figure(figph[GC-line], alt: "GC-line", caption: none) #math.equation(block: true, alt: "2 x minus 3 y equals minus 72")[$2 x − 3 y = − 72$] #math.equation(block: true, alt: "25 x minus 20 y equals 1")[$25 x − 20 y = 1$] + #math.equation(block: false, alt: "open parenthesis 0.04 , 0 close parenthesis , open parenthesis 0 , minus 0.05 close parenthesis")[$( 0.04 , 0 ) , ( 0 , − 0.05 )$] + #math.equation(block: false, alt: "y equals 1.25 x minus 0.05")[$y = 1.25 x − 0.05$] + #figure(figph[GC-line], alt: "GC-line", caption: none) #math.equation(block: true, alt: "4 x plus 75 y equals 60 , 000")[$4 x + 75 y = 60 , 000$] #math.equation(block: true, alt: "the fraction y over 12 minus the fraction x over 60 equals 1")[$display(frac(y, 12)) − display(frac(x, 60)) = 1$] + #math.equation(block: false, alt: "open parenthesis minus 60 , 0 close parenthesis , open parenthesis 0 , 12 close parenthesis")[$( − 60 , 0 ) , ( 0 , 12 )$] + #math.equation(block: false, alt: "y equals 12 plus the fraction 1 over 5 x")[$y = 12 + display(frac(1, 5)) x$] + #figure(figph[GC-line], alt: "GC-line", caption: none) #math.equation(block: true, alt: "the fraction x over 80 plus the fraction y over 400 equals 1")[$display(frac(x, 80)) + display(frac(y, 400)) = 1$] #math.equation(block: true, alt: "minus 2 x equals 3 y plus 84")[$− 2 x = 3 y + 84$] + #math.equation(block: false, alt: "open parenthesis minus 42 , 0 close parenthesis , open parenthesis 0 , minus 28 close parenthesis")[$( − 42 , 0 ) , ( 0 , − 28 )$] + #math.equation(block: false, alt: "y equals the fraction minus 2 over 3 x minus 28")[$y = display(frac(− 2, 3)) x − 28$] + #figure(figph[GC-line], alt: "GC-line", caption: none) #math.equation(block: true, alt: "7 x equals 91 minus 13 y")[$7 x = 91 − 13 y$]