#set document(title: "6.6 Curve Fitting", 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")) == 6.6#h(0.6em)Curve Fitting === Introduction In Linear Regression, we used linear regression to fit a line to a collection of data points. If the data points do not cluster around a line, it does not make sense to describe them by a linear function. Compare the scatterplots shown below. #figure(figph[scatterplot that is linear and another that falls on a parabola], alt: "scatterplot that is linear and another that falls on a parabola", caption: none) The points in figure (a) are roughly linear in appearance, but the points in figure (b) are not. However, we can visualize a parabola that would approximate the data. In this section, we will see how to fit a quadratic function to a collection of data points. We will need to solve a special type of #math.equation(block: false, alt: "3 times 3")[$3 × 3$] linear system, that is, a linear system of three equations in three variables. We can solve these systems using the #strong[elimination] method. See Appendix to review the elimination method. #examplebox("Example 1")[][ Use elimination to solve the system of equations. #math.equation(block: true, alt: "3 a, plus, 2 b, plus, c, equals, minus 1, open parenthesis 1 close parenthesis; a, minus, 2 b, plus, c, equals, minus 3, open parenthesis 2 close parenthesis; 2 a, plus, 3 b, plus, c, equals, 4, open parenthesis 3 close parenthesis")[$3 a & + & 2 b & + & c & = & − 1 & #hide($b l a n k b l a n k$) & ( 1 ) \ a & − & 2 b & + & c & = & − 3 & & ( 2 ) \ 2 a & + & 3 b & + & c & = & 4 & & ( 3 )$] #solutionbox[ We first eliminate #math.equation(block: false, alt: "c")[$c$] from the system by combining the equations in pairs. We can add #math.equation(block: false, alt: "minus 1")[$− 1$] times Equation (2) to Equation (1) to get a new equation in two variables: #figure(table( columns: 9, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "3 a")[$3 a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "2 b")[$2 b$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "c")[$c$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "minus 1")[$− 1$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "open parenthesis 1 close parenthesis")[$( 1 )$]]), [#math.equation(block: false, alt: "minus a")[$− a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "2 b")[$2 b$]], [#math.equation(block: false, alt: "minus")[$−$]], [#math.equation(block: false, alt: "c")[$c$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "3")[$3$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "minus 1 times Equation open parenthesis 2 close parenthesis")[$− 1 " times Equation " ( 2 )$]], [#math.equation(block: false, alt: "2 a")[$2 a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "4 b")[$4 b$]], [], [], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "2")[$2$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "open parenthesis 4 close parenthesis")[$( 4 )$]], )) Next, we add #math.equation(block: false, alt: "minus 1")[$− 1$] times Equation (2) to Equation (3) to get a second equation in two variables: #figure(table( columns: 9, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "2 a")[$2 a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "3 b")[$3 b$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "c")[$c$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "minus 4")[$− 4$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "open parenthesis 3 close parenthesis")[$( 3 )$]]), [#math.equation(block: false, alt: "minus a")[$− a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "2 b")[$2 b$]], [#math.equation(block: false, alt: "minus")[$−$]], [#math.equation(block: false, alt: "c")[$c$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "3")[$3$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "minus 1 times open parenthesis 2 close parenthesis")[$− 1 × ( 2 )$]], [#math.equation(block: false, alt: "a")[$a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "5 b")[$5 b$]], [], [], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "7")[$7$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "open parenthesis 5 close parenthesis")[$( 5 )$]], )) By combining Equations (4) and (5), we have a #math.equation(block: false, alt: "2 times 2")[$2 × 2$] linear system, which we can solve as usual. #math.equation(block: true, alt: "2 a, plus, 4 b, equals, 2, open parenthesis 4 close parenthesis; a, plus, 5 b, equals, 7, open parenthesis 5 close parenthesis")[$2 a & + & 4 b & = & 2 & #hide($b l a n k b l a n k$) & ( 4 ) \ a & + & 5 b & = & 7 & & ( 5 )$] To eliminate #math.equation(block: false, alt: "a")[$a$], we add #math.equation(block: false, alt: "minus 2")[$− 2$] times Equation (5) to Equation (4): #figure(table( columns: 7, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "2 a")[$2 a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "4 b")[$4 b$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "2")[$2$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "open parenthesis 4 close parenthesis")[$( 4 )$]]), [#math.equation(block: false, alt: "minus 2 a")[$− 2 a$]], [#math.equation(block: false, alt: "minus")[$−$]], [#math.equation(block: false, alt: "10 b")[$10 b$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "minus 14")[$− 14$]], [], [#math.equation(block: false, alt: "minus 2 times open parenthesis 5 close parenthesis")[$− 2 × ( 5 )$]], [], [], [#math.equation(block: false, alt: "minus 6 b")[$− 6 b$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "minus 12")[$− 12$]], [], [], )) Solving this last equation gives us #math.equation(block: false, alt: "b equals 2")[$b = 2$]. Then we substitute #math.equation(block: false, alt: "b equals 2")[$b = 2$] into either of Equations (4) or (5) to find #math.equation(block: false, alt: "a equals minus 3")[$a = − 3$]. Finally, we substitute both values into one of the three original equations to find #math.equation(block: false, alt: "c equals 4")[$c = 4$]. The solution of the system is #math.equation(block: false, alt: "a equals minus 3")[$a = − 3$], #math.equation(block: false, alt: "b equals 2")[$b = 2$], #math.equation(block: false, alt: "c equals 4")[$c = 4$]. ] ] Follow the steps to solve the system #math.equation(block: true, alt: "a, plus, b, plus, c, equals, 3, open parenthesis 1 close parenthesis; 4 a, minus, b, plus, c, equals, minus 4, open parenthesis 2 close parenthesis; minus 3 a, plus, 2 b, plus, c, equals, 4, open parenthesis 3 close parenthesis")[$a & + & b & + & c & = & 3 & #hide($b l a n k b l a n k$) & ( 1 ) \ 4 a & − & b & + & c & = & − 4 & & ( 2 ) \ − 3 a & + & 2 b & + & c & = & 4 & & ( 3 )$] + Eliminate #math.equation(block: false, alt: "c")[$c$] from Equations (1) and (2) to obtain a new Equation (4). #linebreak() \_\_\_\_\_ + Eliminate #math.equation(block: false, alt: "c")[$c$] from Equations (2) and (3) to obtain a new Equation (5). #linebreak() \_\_\_\_\_ + Solve the system of Equations (4) and (5). #linebreak() #math.equation(block: false, alt: "a equals")[$a =$]\_\_\_\_\_, #math.equation(block: false, alt: "b equals")[$b =$]\_\_\_\_\_ + Substitute the values of #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "b")[$b$] into one of the original equations to find #math.equation(block: false, alt: "c")[$c$]. #linebreak() #math.equation(block: false, alt: "c equals")[$c =$]\_\_\_\_\_ #solutionbox[ + #math.equation(block: false, alt: "3 a minus 2 b equals minus 7")[$3 a − 2 b = − 7$] + #math.equation(block: false, alt: "7 a minus 3 b equals minus 8")[$7 a − 3 b = − 8$] + #math.equation(block: false, alt: "a equals 1")[$a = 1$], #math.equation(block: false, alt: "b equals 5")[$b = 5$] + #math.equation(block: false, alt: "c equals minus 3")[$c = − 3$] ] Follow the steps to solve the system #math.equation(block: true, alt: "a, plus, b, plus, c, equals, 3, open parenthesis 1 close parenthesis; 4 a, minus, b, plus, c, equals, minus 4, open parenthesis 2 close parenthesis; minus 3 a, plus, 2 b, plus, c, equals, 4, open parenthesis 3 close parenthesis")[$a & + & b & + & c & = & 3 & #hide($b l a n k b l a n k$) & ( 1 ) \ 4 a & − & b & + & c & = & − 4 & & ( 2 ) \ − 3 a & + & 2 b & + & c & = & 4 & & ( 3 )$] + Eliminate #math.equation(block: false, alt: "c")[$c$] from Equations (1) and (2) to obtain a new Equation (4). + Eliminate #math.equation(block: false, alt: "c")[$c$] from Equations (2) and (3) to obtain a new Equation (5). + Solve the system of Equations (4) and (5). + Substitute the values of #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "b")[$b$] into one of the original equations to find #math.equation(block: false, alt: "c")[$c$]. #solutionbox[ + #math.equation(block: false, alt: "3 a minus 2 b equals minus 7")[$3 a − 2 b = − 7$] + #math.equation(block: false, alt: "7 a minus 3 b equals minus 8")[$7 a − 3 b = − 8$] + #math.equation(block: false, alt: "a equals 1")[$a = 1$], #math.equation(block: false, alt: "b equals 5")[$b = 5$] + #math.equation(block: false, alt: "c equals minus 3")[$c = − 3$] ] === Finding a Quadratic Function through Three Points Every linear function can be written in the form #math.equation(block: true, alt: "y equals m x plus b")[$y = m x + b$] To find a specific line, we must find values for the two parameters (constants) #math.equation(block: false, alt: "m")[$m$] and #math.equation(block: false, alt: "b")[$b$]. We need two data points in order to find those two parameters. A quadratic function, however, has three parameters, #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$]: #math.equation(block: true, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] To find these parameters, we need three data points. We then use the method of elimination to solve a system of three linear equations. #examplebox("Example 2")[][ Find values for #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] so that the points #math.equation(block: false, alt: "open parenthesis 1 , 3 close parenthesis")[$( 1 , 3 )$], #math.equation(block: false, alt: "open parenthesis 3 , 5 close parenthesis")[$( 3 , 5 )$], and #math.equation(block: false, alt: "open parenthesis 4 , 9 close parenthesis")[$( 4 , 9 )$] lie on the graph of #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$" " y = a x^(2) + b x + c$]. #solutionbox[ We substitute the coordinates of each of the three points into the equation of the parabola to obtain three equations: #math.equation(block: true, alt: "3 equals, a open parenthesis 1 close parenthesis squared plus, b open parenthesis 1 close parenthesis, plus, c; 5 equals, a open parenthesis 3 close parenthesis squared plus, b open parenthesis 3 close parenthesis, plus, c; 9 equals, a open parenthesis 4 close parenthesis squared plus, b open parenthesis 4 close parenthesis, plus, c")[$3 = & a ( 1 )^(2) + & b ( 1 ) & + & c & \ 5 = & a ( 3 )^(2) + & b ( 3 ) & + & c & \ 9 = & a ( 4 )^(2) + & b ( 4 ) & + & c &$] or, equivalently, #math.equation(block: true, alt: "a, plus, b, plus, c, equals, 3, open parenthesis 1 close parenthesis; 9 a, plus, 3 b, plus, c, equals, 5, open parenthesis 2 close parenthesis; 16 a, plus, 4 b, plus, c, equals, 9, open parenthesis 3 close parenthesis")[$a & + & b & + & c & = & 3 & #hide($b l a n k b l a n k$) & ( 1 ) \ 9 a & + & 3 b & + & c & = & 5 & & ( 2 ) \ 16 a & + & 4 b & + & c & = & 9 & & ( 3 )$] This is a system of three equations in the three unknowns #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$]. To solve the system, we first eliminate #math.equation(block: false, alt: "c")[$c$]. Add #math.equation(block: false, alt: "minus 1")[$− 1$] times Equation (1) to Equation (2) to obtain #math.equation(block: true, alt: "8 a plus 2 b equals 2 open parenthesis 4 close parenthesis")[$8 a + 2 b = 2 #hide($b l a n k b l a n k$) ( 4 )$] and add #math.equation(block: false, alt: "minus 1")[$− 1$] times Equation (1) to Equation (3) to get #math.equation(block: true, alt: "15 a plus 3 b equals 6 open parenthesis 5 close parenthesis")[$15 a + 3 b = 6 #hide($b l a n k b l a n k$) ( 5 )$] We now have a system of two linear equations in two variables: #math.equation(block: true, alt: "8 a, plus, 2 b, equals, 2, open parenthesis 4 close parenthesis; 15 a, plus, 3 b, equals, 6, open parenthesis 5 close parenthesis")[$8 a & + & 2 b & = & 2 & #hide($b l a n k b l a n k$) & ( 4 ) \ 15 a & + & 3 b & = & 6 & & ( 5 )$] We eliminate #math.equation(block: false, alt: "b")[$b$] from Equations (4) and (5): Add #math.equation(block: false, alt: "minus 3")[$− 3$] times Equation (4) to #math.equation(block: false, alt: "2")[$2$] times Equation (5) to get #figure(table( columns: 7, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "minus 24 a")[$− 24 a$]], [#math.equation(block: false, alt: "minus")[$−$]], [#math.equation(block: false, alt: "6 b")[$6 b$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "minus 6")[$− 6$]], [$#hide($b l a n k$)$], [#math.equation(block: false, alt: "minus 3 times open parenthesis 4 close parenthesis")[$− 3 × ( 4 )$]]), [#math.equation(block: false, alt: "30 a")[$30 a$]], [#math.equation(block: false, alt: "plus")[$+$]], [#math.equation(block: false, alt: "6 b")[$6 b$]], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "12")[$12$]], [], [#math.equation(block: false, alt: "2 times open parenthesis 5 close parenthesis")[$2 × ( 5 )$]], [#math.equation(block: false, alt: "6 a")[$6 a$]], [], [], [#math.equation(block: false, alt: "equals")[$=$]], [#math.equation(block: false, alt: "6")[$6$]], [], [], )) or #math.equation(block: false, alt: "a equals 1")[$a = 1$]. We substitute #math.equation(block: false, alt: "1")[$1$] for #math.equation(block: false, alt: "a")[$a$] in Equation (4) to find #math.equation(block: true, alt: "8 open parenthesis 1 close parenthesis plus 2 b, equals 2, Solve for b .; b, equals minus 3")[$8 ( 1 ) + 2 b & = 2 & & "Solve for " bold(italic(b)) . \ b & = − 3$] Finally, we substitute #math.equation(block: false, alt: "minus 3")[$− 3$] for #math.equation(block: false, alt: "b")[$b$] and #math.equation(block: false, alt: "1")[$1$] for #math.equation(block: false, alt: "a")[$a$] in Equation (1) to find #math.equation(block: true, alt: "1 plus open parenthesis minus 3 close parenthesis plus c, equals 3, Solve for c .; c, equals 5")[$1 + ( − 3 ) + c & = 3 & & "Solve for " bold(italic(c)) . \ c & = 5$] Thus, the equation of the parabola is #math.equation(block: true, alt: "y equals x squared minus 3 x plus 5")[$y = x^(2) − 3 x + 5$] The parabola and the three points are shown below. #figure(figph[parabola through-3 specified points], alt: "parabola through-3 specified points", caption: none) ] ] When we solve a system to fit a parabola through three points, which variable should we eliminate first? \_\_\_\_\_ #solutionbox[ #math.equation(block: true, alt: "c")[$c$] ] When we solve a system to fit a parabola through three points, which variable should we eliminate first? + #math.equation(block: false, alt: "a")[$a$] + #math.equation(block: false, alt: "b")[$b$] + #math.equation(block: false, alt: "c")[$c$] + #math.equation(block: false, alt: "x")[$x$] + Find the equation of a parabola #math.equation(block: true, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] that passes through the points #math.equation(block: false, alt: "open parenthesis 0 , 80 close parenthesis")[$( 0 , 80 )$], #math.equation(block: false, alt: "open parenthesis 15 , 95 close parenthesis")[$( 15 , 95 )$], and #math.equation(block: false, alt: "open parenthesis 25 , 55 close parenthesis")[$( 25 , 55 )$]. #linebreak() #math.equation(block: false, alt: "y equals")[$y =$]\_\_\_\_\_ + Plot the data points and sketch the parabola. #solutionbox[ + #math.equation(block: false, alt: "y equals the fraction minus 1 over 5 x squared plus 4 x plus 80")[$y = frac(− 1, 5) x^(2) + 4 x + 80$] + A graph is below. ] #figure(figph[parabola], alt: "parabola", caption: none) + Find the equation of a parabola #math.equation(block: true, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] that passes through the points #math.equation(block: false, alt: "open parenthesis 0 , 80 close parenthesis")[$( 0 , 80 )$], #math.equation(block: false, alt: "open parenthesis 15 , 95 close parenthesis")[$( 15 , 95 )$], and #math.equation(block: false, alt: "open parenthesis 25 , 55 close parenthesis")[$( 25 , 55 )$]. + Plot the data points and sketch the parabola. #solutionbox[ + #math.equation(block: false, alt: "y equals the fraction minus 1 over 5 x squared plus 4 x plus 80")[$y = frac(− 1, 5) x^(2) + 4 x + 80$] + #figure(figph[parabola], alt: "parabola", caption: none) ] The simplest way to fit a parabola to a set of data points is to pick three of the points and find the equation of the parabola that passes through those three points. #examplebox("Example 3")[][ Major Motors Corporation is testing a new car designed for in-town driving. The data below show the cost of driving the car at different speeds. The speeds, #math.equation(block: false, alt: "v")[$v$], are given in miles per hour, and the cost, #math.equation(block: false, alt: "C")[$C$], includes fuel and maintenance for driving the car #math.equation(block: false, alt: "100")[$100$] miles at that speed. #figure(table( columns: 6, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "v")[$v$]], [#math.equation(block: false, alt: "30")[$30$]], [#math.equation(block: false, alt: "40")[$40$]], [#math.equation(block: false, alt: "50")[$50$]], [#math.equation(block: false, alt: "60")[$60$]], [#math.equation(block: false, alt: "70")[$70$]]), [#math.equation(block: false, alt: "C")[$C$]], [#math.equation(block: false, alt: "6.50")[$6.50$]], [#math.equation(block: false, alt: "6.00")[$6.00$]], [#math.equation(block: false, alt: "6.20")[$6.20$]], [#math.equation(block: false, alt: "7.80")[$7.80$]], [#math.equation(block: false, alt: "10.60")[$10.60$]], )) Find a possible quadratic model for #math.equation(block: false, alt: "C")[$C$] as a function of #math.equation(block: false, alt: "v")[$v$], #math.equation(block: false, alt: "C equals a v squared plus b v plus c")[$C = a v^(2) + b v + c$]. #solutionbox[ When we plot the data, it is clear that the relationship between #math.equation(block: false, alt: "v")[$v$] and #math.equation(block: false, alt: "C")[$C$] is not linear, but it may be quadratic, as shown at right. We will use the last three data points, #math.equation(block: false, alt: "open parenthesis 50 , 6.20 close parenthesis")[$( 50 , 6.20 )$], #math.equation(block: false, alt: "open parenthesis 60 , 7.80 close parenthesis")[$( 60 , 7.80 )$], and #math.equation(block: false, alt: "open parenthesis 70 , 10.60 close parenthesis")[$( 70 , 10.60 )$], to fit a parabola to the data. We would like to find the coefficients #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] of a parabola #math.equation(block: false, alt: "C equals a v squared plus b v plus c")[$C = a v^(2) + b v + c$] that includes the three data points. This gives us a system of equations: #figure(figph[scatterplot points following parabola shape], alt: "scatterplot points following parabola shape", caption: none) #math.equation(block: true, alt: "2500 a, plus, 50 b, plus, c, equals, 6.20, open parenthesis 1 close parenthesis; 3600 a, plus, 60 b, plus, c, equals, 7.8, open parenthesis 2 close parenthesis; 4900 a, plus, 70 b, plus, c, equals, 10.6, open parenthesis 3 close parenthesis")[$2500 a & + & 50 b & + & c & = & 6.20 & #hide($b l a n k b l a n k$) & ( 1 ) \ 3600 a & + & 60 b & + & c & = & 7.8 & & ( 2 ) \ 4900 a & + & 70 b & + & c & = & 10.6 & & ( 3 )$] Eliminating #math.equation(block: false, alt: "c")[$c$] from Equations (1) and (2) yields Equation (4), and eliminating #math.equation(block: false, alt: "c")[$c$] from Equations (2) and (3) yields Equation (5). #math.equation(block: true, alt: "1100 a, plus, 10 b, equals, 1.60, open parenthesis 4 close parenthesis; 1300 a, plus, 10 b, equals, 2.8, open parenthesis 5 close parenthesis")[$1100 a & + & 10 b & = & 1.60 & #hide($b l a n k b l a n k$) & ( 4 ) \ 1300 a & + & 10 b & = & 2.8 & & ( 5 )$] Eliminating #math.equation(block: false, alt: "b")[$b$] from Equations (4) and (5) gives us #math.equation(block: true, alt: "200 a, equals 1.20; a, equals 0.006")[$200 a & = 1.20 \ a & = 0.006$] We substitute this value into Equation (4) to find #math.equation(block: false, alt: "b equals minus 0.5")[$b = − 0.5$], then substitute both values into Equation (1) to find #math.equation(block: false, alt: "c equals 16.2")[$c = 16.2$]. Thus, our quadratic model is #math.equation(block: true, alt: "C equals 0.006 v squared minus 0.5 v plus 16.2")[$C = 0.006 v^(2) − 0.5 v + 16.2$] The graph of this function, along with the data points, is shown at right. #figure(figph[parabola fitting nonlinear scatterplot], alt: "parabola fitting nonlinear scatterplot", caption: none) ] ] Sara plans to start a side business selling eggs. She finds that the total number of eggs produced each day depends on the number of hens confined in the henhouse, as shown in the table. Use the first three data points to find a quadratic model #math.equation(block: false, alt: "E equals a n squared plus b n plus c")[$E = a n^(2) + b n + c$]. #math.equation(block: false, alt: "E equals")[$E =$]\_\_\_\_\_ Plot the data and sketch the curve on the same axes. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Number of hens, #math.equation(block: false, alt: "n")[$n$]], [#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: "30")[$30$]], [#math.equation(block: false, alt: "36")[$36$]], [#math.equation(block: false, alt: "39")[$39$]]), [Number of eggs, #math.equation(block: false, alt: "E")[$E$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "18")[$18$]], [#math.equation(block: false, alt: "20")[$20$]], [#math.equation(block: false, alt: "21")[$21$]], [#math.equation(block: false, alt: "21")[$21$]], [#math.equation(block: false, alt: "20")[$20$]], )) #solutionbox[ #math.equation(block: true, alt: "E equals minus 0.02 n squared plus 1.3 n")[$E = − 0.02 n^(2) + 1.3 n$] A graph is below. ] Sara plans to start a side business selling eggs. She finds that the total number of eggs produced each day depends on the number of hens confined in the henhouse, as shown in the table. Use the first three data points to find a quadratic model #math.equation(block: false, alt: "E equals a n squared plus b n plus c")[$E = a n^(2) + b n + c$]. Plot the data and sketch the curve on the same axes. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Number of hens, #math.equation(block: false, alt: "n")[$n$]], [#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: "30")[$30$]], [#math.equation(block: false, alt: "36")[$36$]], [#math.equation(block: false, alt: "39")[$39$]]), [Number of eggs, #math.equation(block: false, alt: "E")[$E$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "18")[$18$]], [#math.equation(block: false, alt: "20")[$20$]], [#math.equation(block: false, alt: "21")[$21$]], [#math.equation(block: false, alt: "21")[$21$]], [#math.equation(block: false, alt: "20")[$20$]], )) #solutionbox[ #math.equation(block: true, alt: "E equals minus 0.02 n squared plus 1.3 n")[$E = − 0.02 n^(2) + 1.3 n$] #figure(figph[parabola fit to points], alt: "parabola fit to points", caption: none) ] Explain how to fit a parabola through three points. \_\_\_\_\_ Explain how to fit a parabola through three points. === Finding an Equation in Vertex Form It is easier to find a quadratic model if one of the points we know happens to be the vertex of the parabola. In that case, we need only one other point, and we can use the vertex form to find its equation. #examplebox("Example 4")[][ When Andre practices free-throws at the park, the ball leaves his hands at a height of #math.equation(block: false, alt: "7")[$7$] feet and reaches the vertex of its trajectory #math.equation(block: false, alt: "10")[$10$] feet away at a height of #math.equation(block: false, alt: "11")[$11$] feet, as shown at right. #figure(figph[basketball path on grid], alt: "basketball path on grid", caption: none) + Find a quadratic function for the ball's trajectory. + Do you think Andre's free-throw will score on a basketball court where the hoop is #math.equation(block: false, alt: "15")[$15$] feet from the shooter and #math.equation(block: false, alt: "10")[$10$] feet high? #solutionbox[ + If Andre's feet are at the origin, then the vertex of the ball's trajectory is the point #math.equation(block: false, alt: "open parenthesis 10 , 11 close parenthesis")[$( 10 , 11 )$], and its #math.equation(block: false, alt: "y")[$y$]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , 7 close parenthesis")[$( 0 , 7 )$]. Start with the vertex form for a parabola: #math.equation(block: true, alt: "y, equals a open parenthesis x minus x sub v close parenthesis squared plus y sub v; y, equals a open parenthesis x minus 10 close parenthesis squared plus 11")[$y & = a ( x − x_(v) )^(2) + y_(v) \ y & = a ( x − 10 )^(2) + 11$] We still need to know the value of #math.equation(block: false, alt: "a")[$a$]. We can substitute the coordinates of any point on the parabola for #math.equation(block: false, alt: "x")[$x$] and #math.equation(block: false, alt: "y")[$y$] and solve for #math.equation(block: false, alt: "a")[$a$]. We will use the point #math.equation(block: false, alt: "open parenthesis 0 , 7 close parenthesis")[$( 0 , 7 )$]: #math.equation(block: true, alt: "7, equals a open parenthesis 0 minus 10 close parenthesis squared plus 11; 7, equals 100 a plus 11; a, equals minus 0.04")[$7 & = a ( 0 − 10 )^(2) + 11 \ 7 & = 100 a + 11 \ a & = − 0.04$] The equation of the trajectory is #math.equation(block: false, alt: "y equals minus 0.04 open parenthesis x minus 10 close parenthesis squared plus 11")[$y = − 0.04 ( x − 10 )^(2) + 11$]. + We would like to know if the point #math.equation(block: false, alt: "open parenthesis 15 , 10 close parenthesis")[$( 15 , 10 )$] is on the trajectory of Andre's free-throw. Substitute #math.equation(block: false, alt: "x equals 15")[$x = 15$] into the equation: #math.equation(block: true, alt: "y, equals minus 0.04 open parenthesis 15 minus 10 close parenthesis squared plus 11; equals minus 0.04 open parenthesis 25 close parenthesis plus 11 equals 10")[$y & = − 0.04 ( 15 − 10 )^(2) + 11 \ & = − 0.04 ( 25 ) + 11 = 10$] Andre's shot will score. ] ] If you know the vertex of a parabola, how many more points do you need to find its equation? \_\_\_\_\_ #solutionbox[ One ] If you know the vertex of a parabola, how many more points do you need to find its equation? + One + Two + Three + Four #figure(figph[water fountain with parabolic water stream], alt: "water fountain with parabolic water stream", caption: none) Francine is designing a synchronized fountain display for a hotel in Las Vegas. For each fountain, water emerges in a parabolic arc from a nozzle #math.equation(block: false, alt: "3")[$3$] feet above the ground. Francine would like the vertex of the arc to be #math.equation(block: false, alt: "8")[$8$] feet high and #math.equation(block: false, alt: "2")[$2$] feet horizontally from the nozzle. + Choose a coordinate system for the diagram below and write a function for the path of the water. #linebreak() With the origin on the ground directly below the nozzle, #linebreak() #math.equation(block: false, alt: "y equals")[$y =$]\_\_\_\_\_ Use #math.equation(block: false, alt: "x")[$x$] to represent the horizontal distance from the origin. + How far from the base of the nozzle will the stream of water hit the ground? #linebreak() Answer: \_\_\_\_\_ feet #solutionbox[ + With the origin on the ground directly below the nozzle, #math.equation(block: false, alt: "y equals the fraction minus 5 over 4 x squared plus 5 x plus 3")[$y = frac(− 5, 4) x^(2) + 5 x + 3$]. + Approximately #math.equation(block: false, alt: "4.53")[$4.53$] feet ] Francine is designing a synchronized fountain display for a hotel in Las Vegas. For each fountain, water emerges in a parabolic arc from a nozzle #math.equation(block: false, alt: "3")[$3$] feet above the ground. Francine would like the vertex of the arc to be #math.equation(block: false, alt: "8")[$8$] feet high and #math.equation(block: false, alt: "2")[$2$] feet horizontally from the nozzle. #figure(figph[water fountain with parabolic water stream], alt: "water fountain with parabolic water stream", caption: none) + Choose a coordinate system for the diagram below and write a function for the path of the water. + How far from the base of the nozzle will the stream of water hit the ground? #solutionbox[ + With the origin on the ground directly below the nozzle, #math.equation(block: false, alt: "y equals the fraction minus 5 over 4 x squared plus 5 x plus 3")[$y = display(frac(− 5, 4)) x^(2) + 5 x + 3$]. + Approximately #math.equation(block: false, alt: "4.53")[$4.53$] feet ] #notebox("Technology", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Using a Calculator for Quadratic Regression] We can use a graphing calculator to find an approximate quadratic fit for a set of data. The procedure is similar to the steps for linear regression outlined in Functions. ] #examplebox("Example 5")[][ + Use your calculator to find a quadratic fit for the data in Example. + How many of the given data points actually lie on the graph of the quadratic approximation? #solutionbox[ + We press STAT ENTER and enter the data under columns #math.equation(block: false, alt: "L sub 1")[$L_(1)$] and #math.equation(block: false, alt: "L sub 2")[$L_(2)$], as shown below. Next, we calculate the quadratic regression equation and store it in #math.equation(block: false, alt: "Y sub 1")[$Y_(1)$] by pressing STAT #math.equation(block: false, alt: "5")[$5$] VARS #math.equation(block: false, alt: "1")[$1$] #math.equation(block: false, alt: "1")[$1$] ENTER. #linebreak() The regression equation has the form #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$], where #math.equation(block: false, alt: "a equals 0.0057")[$a = 0.0057$], #math.equation(block: false, alt: "b equals minus 0.47")[$b = − 0.47$], and #math.equation(block: false, alt: "c equals 15.56")[$c = 15.56$]. Notice that #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] are all close to the values we computed in Example.#figure(figph[GC lists and GC quadratic regression output], alt: "GC lists and GC quadratic regression output", caption: none) + Next, we will graph the data and the regression equation. We press Y= and select #emph[Plot1], then press ZOOM #math.equation(block: false, alt: "9")[$9$] to see the graph shown below. The parabola seems to pass close to all the data points. #linebreak() However, try using either the #emph[value] feature or a table to find the #math.equation(block: false, alt: "y")[$y$]-coordinates of points on the regression curve. By comparing these #math.equation(block: false, alt: "y")[$y$]-coordinates with our original data points, we find that none of the given data points lies precisely on the parabola. #figure(figph[GC plot and GC table quadratic regression output], alt: "GC plot and GC table quadratic regression output", caption: none) ] ] To test the effects of radiation, a researcher irradiated male mice with various dosages and bred them with unexposed female mice. The table below shows the fraction of fertilized eggs that survived, as a function of the radiation dosage. (Source: Strickberger, Monroe W., 1976) #figure(table( columns: 8, align: left, inset: 6pt, table.header([Radiation (rems)], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "300")[$300$]], [#math.equation(block: false, alt: "500")[$500$]], [#math.equation(block: false, alt: "700")[$700$]], [#math.equation(block: false, alt: "900")[$900$]], [#math.equation(block: false, alt: "1100")[$1100$]], [#math.equation(block: false, alt: "1500")[$1500$]]), [Relative survival #linebreak() of eggs #linebreak()], [#math.equation(block: false, alt: "0.94")[$0.94$]], [#math.equation(block: false, alt: "0.700")[$0.700$]], [#math.equation(block: false, alt: "0.544")[$0.544$]], [#math.equation(block: false, alt: "0.424")[$0.424$]], [#math.equation(block: false, alt: "0.366")[$0.366$]], [#math.equation(block: false, alt: "0.277")[$0.277$]], [#math.equation(block: false, alt: "0.195")[$0.195$]], )) + Enter the data into your calculator and create a scatterplot. Does the graph appear to be linear? Does it appear to be quadratic? \_\_\_\_\_ + Fit a quadratic regression equation to the data and graph the equation on the scatterplot. #linebreak() #math.equation(block: false, alt: "y equals")[$y =$]\_\_\_\_\_ #solutionbox[ + The graph appears to be quadratic. + #math.equation(block: false, alt: "y equals 3.65 times 10 to the power minus 7 x squared minus 0.001 x plus 1.02")[$y = 3.65 × 10^(− 7) x^(2) − 0.001 x + 1.02$] ] #figure(figph[parabola fit to points], alt: "parabola fit to points", caption: none) To test the effects of radiation, a researcher irradiated male mice with various dosages and bred them with unexposed female mice. The table below shows the fraction of fertilized eggs that survived, as a function of the radiation dosage. (Source: Strickberger, Monroe W., 1976) #figure(table( columns: 8, align: left, inset: 6pt, table.header([Radiation (rems)], [#math.equation(block: false, alt: "100")[$100$]], [#math.equation(block: false, alt: "300")[$300$]], [#math.equation(block: false, alt: "500")[$500$]], [#math.equation(block: false, alt: "700")[$700$]], [#math.equation(block: false, alt: "900")[$900$]], [#math.equation(block: false, alt: "1100")[$1100$]], [#math.equation(block: false, alt: "1500")[$1500$]]), [Relative survival #linebreak() of eggs #linebreak()], [#math.equation(block: false, alt: "0.94")[$0.94$]], [#math.equation(block: false, alt: "0.700")[$0.700$]], [#math.equation(block: false, alt: "0.544")[$0.544$]], [#math.equation(block: false, alt: "0.424")[$0.424$]], [#math.equation(block: false, alt: "0.366")[$0.366$]], [#math.equation(block: false, alt: "0.277")[$0.277$]], [#math.equation(block: false, alt: "0.195")[$0.195$]], )) + Enter the data into your calculator and create a scatterplot. Does the graph appear to be linear? Does it appear to be quadratic? + Fit a quadratic regression equation to the data and graph the equation on the scatterplot. #solutionbox[ + The graph appears to be quadratic. + #math.equation(block: false, alt: "y equals 3.65 times 10 to the power minus 7 x squared minus 0.001 x plus 1.02")[$y = 3.65 × 10^(− 7) x^(2) − 0.001 x + 1.02$] ] How many data points must a quadratic regression graph pass through? \_\_\_\_\_ #solutionbox[ None ] How many data points must a quadratic regression graph pass through? + One + Two + Three + None #notebox("Caution", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ We must be careful that our data set gives a complete picture of the situation we want to model. A regression equation may fit a particular collection of data and still be a poor model if the rest of the data diverge from the regression graph. #figure(figph[GC graph showing a poor linear fit for quadratic data], alt: "GC graph showing a poor linear fit for quadratic data", caption: none) In Example, suppose Major Motors had collected only the first three data points and fit a line through them, as shown at left. This regression line gives poor predictions for the cost of driving at 60 or 70 miles per hour. ] #examplebox("Example 6")[][ Francine records the height of the tip of the minute hand on the classroom’s clock at different times. The data are shown in the table, where time is measured in minutes since noon. (A negative time indicates a number of minutes before noon.) Find a quadratic regression equation for the data and use it to predict the height of the minute hand's tip at #math.equation(block: false, alt: "40")[$40$] minutes past noon. Do you believe this prediction is valid? #figure(table( columns: 12, align: left, inset: 6pt, table.header([Time #linebreak() (minutes) #linebreak()], [#math.equation(block: false, alt: "minus 25")[$− 25$]], [#math.equation(block: false, alt: "minus 20")[$− 20$]], [#math.equation(block: false, alt: "minus 15")[$− 15$]], [#math.equation(block: false, alt: "minus 10")[$− 10$]], [#math.equation(block: false, alt: "minus 5")[$− 5$]], [#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$]]), [Height #linebreak() (feet) #linebreak()], [#math.equation(block: false, alt: "7.13")[$7.13$]], [#math.equation(block: false, alt: "7.50")[$7.50$]], [#math.equation(block: false, alt: "8.00")[$8.00$]], [#math.equation(block: false, alt: "8.50")[$8.50$]], [#math.equation(block: false, alt: "8.87")[$8.87$]], [#math.equation(block: false, alt: "9.00")[$9.00$]], [#math.equation(block: false, alt: "8.87")[$8.87$]], [#math.equation(block: false, alt: "8.50")[$8.50$]], [#math.equation(block: false, alt: "8.80")[$8.80$]], [#math.equation(block: false, alt: "7.50")[$7.50$]], [#math.equation(block: false, alt: "7.13")[$7.13$]], )) #solutionbox[ We enter the time data under #math.equation(block: false, alt: "L sub 1")[$L_(1)$] and the height data under #math.equation(block: false, alt: "L sub 2")[$L_(2)$]. Then we calculate and store the quadratic regression equation in #math.equation(block: false, alt: "Y sub 1")[$Y_(1)$], as we did in Example. The regression equation is #math.equation(block: true, alt: "y equals minus 0.00297 x squared plus 0 x plus 8.834")[$y = − 0.00297 x^(2) + 0 x + 8.834$] From either the graph of the regression equation or from the table (see figure below), we can see that the fit is not perfect, although the curve certainly fits the data better than any straight line could. #figure(figph[GC screens of graph and tables for quadratic fit], alt: "GC screens of graph and tables for quadratic fit", caption: none) If we scroll down the table, we find that this equation predicts a height of approximately #math.equation(block: false, alt: "4.08")[$4.08$] feet at time #math.equation(block: false, alt: "40")[$40$] minutes. (See figure (c).) This is a preposterous estimate! The position of the minute hand at #math.equation(block: false, alt: "40")[$40$] minutes after noon should be the same as it was exactly one hour earlier (at 20 minutes before noon), when it was #math.equation(block: false, alt: "7.50")[$7.50$] feet. ] ] Using the wrong type of function to fit the data is a common error in making predictions. We know that the minute hand of a clock repeats its position every #math.equation(block: false, alt: "60")[$60$] minutes. The graph of the height of its tip oscillates up and down, repeating the same pattern over and over. We cannot describe such a graph using either a linear or a quadratic function. #figure(figph[parabola fit on part of a periodic wave], alt: "parabola fit on part of a periodic wave", caption: none) The graph of the height is shown at left, along with the graph of our quadratic regression equation. You can see that the regression equation fits the actual curve only on a small interval. Your calculator can always compute a regression equation, but that equation is not necessarily appropriate for your data. Choosing a reasonable type of regression equation for a particular data set requires knowledge of different kinds of models and the physical or natural laws that govern the situation at hand. Which statement is true? \_\_\_\_\_ #solutionbox[ We can use elimination to fit a parabola through three points. ] Which statement is true? + A parabola is a good model for any non-linear curve. + We will get the same equation by fitting a parabola through any three points of a data set. + We can use elimination to fit a parabola through three points. + When we use quadratic regression, the lowest (or highest) point of a data set will be the vertex of the parabola. A speeding motorist slams on the brakes when she sees an accident directly ahead of her. The distance she has traveled #math.equation(block: false, alt: "t")[$t$] seconds after braking is shown in the table. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Time (seconds)], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "0.5")[$0.5$]], [#math.equation(block: false, alt: "1.0")[$1.0$]], [#math.equation(block: false, alt: "1.5")[$1.5$]], [#math.equation(block: false, alt: "2.0")[$2.0$]], [#math.equation(block: false, alt: "2.5")[$2.5$]]), [Distance (feet)], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "51")[$51$]], [#math.equation(block: false, alt: "95")[$95$]], [#math.equation(block: false, alt: "131")[$131$]], [#math.equation(block: false, alt: "160")[$160$]], [#math.equation(block: false, alt: "181")[$181$]], )) + Enter the data into your calculator and create a scatterplot. Fit a quadratic regression equation to the data and graph the equation on the scatterplot. #linebreak() Regression equation: #math.equation(block: false, alt: "y equals")[$y =$]\_\_\_\_\_ Use #math.equation(block: false, alt: "x")[$x$] for the time in seconds. + Use your regression equation to find the vertex of the parabola: \_\_\_\_\_ #linebreak() What do the coordinates represent in terms of the problem? #solutionbox[ + A graph is below. #linebreak() #math.equation(block: false, alt: "y equals minus 15 x squared plus 110 x minus 0.07")[$y = − 15 x^(2) + 110 x − 0.07$] + #math.equation(block: false, alt: "open parenthesis 3.67 , 201 close parenthesis")[$( 3.67 , 201 )$]: The car came to a stop in #math.equation(block: false, alt: "3.67")[$3.67$] seconds, after sliding #math.equation(block: false, alt: "201")[$201$] feet. ] A graph for part (a): #figure(figph[parabola fit to points], alt: "parabola fit to points", caption: none) A speeding motorist slams on the brakes when she sees an accident directly ahead of her. The distance she has traveled #math.equation(block: false, alt: "t")[$t$] seconds after braking is shown in the table. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Time (seconds)], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "0.5")[$0.5$]], [#math.equation(block: false, alt: "1.0")[$1.0$]], [#math.equation(block: false, alt: "1.5")[$1.5$]], [#math.equation(block: false, alt: "2.0")[$2.0$]], [#math.equation(block: false, alt: "2.5")[$2.5$]]), [Distance (feet)], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "51")[$51$]], [#math.equation(block: false, alt: "95")[$95$]], [#math.equation(block: false, alt: "131")[$131$]], [#math.equation(block: false, alt: "160")[$160$]], [#math.equation(block: false, alt: "181")[$181$]], )) + Enter the data into your calculator and create a scatterplot. Fit a quadratic regression equation to the data and graph the equation on the scatterplot. + Use your regression equation to find the vertex of the parabola. What do the coordinates represent in terms of the problem? #solutionbox[ + #figure(figph[parabola fit to points], alt: "parabola fit to points", caption: none) #linebreak() #math.equation(block: false, alt: "y equals minus 15 x squared plus 110 x minus 0.07")[$y = − 15 x^(2) + 110 x − 0.07$] + #math.equation(block: false, alt: "open parenthesis 3.67 , 201 close parenthesis")[$( 3.67 , 201 )$]: The car came to a stop in #math.equation(block: false, alt: "3.67")[$3.67$] seconds, after sliding #math.equation(block: false, alt: "201")[$201$] feet. ] Why is it a bad idea to clculate a regression equation without first plotting the data? \_\_\_\_\_ Why is it a bad idea to clculate a regression equation without first plotting the data? === Section Summary ==== Vocabulary Look up the definitions of new terms in the Glossary. - Elimination method - Quadratic regression ==== CONCEPTS + We need three points to determine a parabola. + We can use the method of elimination to find the equation of a parabola through three points. + If we know the vertex of a parabola, we need only one other point to find its equation. + We can use quadratic regression to fit a parabola to a collection of data points. ==== STUDY QUESTIONS + How many points are necessary to determine a parabola? + Why do we need a second point to find the equation of a parabola if we know its vertex? + How can you decide whether linear regression, quadratic regression, or neither one is appropriate for a collection of data? ==== SKILLS Practice each skill in the Homework problems listed. + Fit a quadratic equation through three points: \#5–12 + Find a quadratic model in vertex form: \#13–30 + Use quadratic regression to fit a parabola to data: \#31–34 === Homework 6.6 For Problems 1–4, solve the system by elimination. Begin by eliminating #math.equation(block: false, alt: "c")[$c$]. #math.equation(block: true, alt: "a, plus, b, plus, c, equals, minus 3; a, minus, b, plus, c, equals, minus 9; 4 a, plus, 2 b, plus, c, equals, minus 6")[$a & + & b & + & c & = & − 3 \ a & − & b & + & c & = & − 9 \ 4 a & + & 2 b & + & c & = & − 6$] #math.equation(block: true, alt: "a equals minus 2 , b equals 3 , c equals minus 4")[$a = − 2 , b = 3 , c = − 4$] #math.equation(block: true, alt: "a, plus, b, plus, c, equals, 10; 4 a, plus, 2 b, plus, c, equals, 19; 9 a, plus, 3 b, plus, c, equals, 38")[$a & + & b & + & c & = & 10 \ 4 a & + & 2 b & + & c & = & 19 \ 9 a & + & 3 b & + & c & = & 38$] #math.equation(block: true, alt: "a, minus, b, plus, c, equals, 12; 4 a, minus, 2 b, plus, c, equals, 19; 9 a, plus, 3 b, plus, c, equals, 4")[$a & − & b & + & c & = & 12 \ 4 a & − & 2 b & + & c & = & 19 \ 9 a & + & 3 b & + & c & = & 4$] #math.equation(block: true, alt: "a equals 1 , b equals minus 4 , c equals 7")[$a = 1 , b = − 4 , c = 7$] #math.equation(block: true, alt: "4 a, plus, 2 b, plus, c, equals, 14; 9 a, minus, 3 b, plus, c, equals, minus 41; 16 a, minus, 4 b, plus, c, equals, minus 70")[$4 a & + & 2 b & + & c & = & 14 \ 9 a & − & 3 b & + & c & = & − 41 \ 16 a & − & 4 b & + & c & = & − 70$] For Problems 5–12, find a quadratic equation that fits the data points. Find values for #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] so that the graph of the parabola #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] includes the points #math.equation(block: false, alt: "open parenthesis minus 1 , 0 close parenthesis")[$( − 1 , 0 )$], #math.equation(block: false, alt: "open parenthesis 2 , 12 close parenthesis")[$( 2 , 12 )$], and #math.equation(block: false, alt: "open parenthesis minus 2 , 8 close parenthesis")[$( − 2 , 8 )$]. #math.equation(block: false, alt: "a equals 3 , b equals 1 , c equals minus 2")[$a = 3 , b = 1 , c = − 2$]. The equation for the parabola is #math.equation(block: false, alt: "y equals 3 x squared plus x minus 2")[$y = 3 x^(2) + x − 2$] Find values for #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] so that the graph of the parabola #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] includes the points #math.equation(block: false, alt: "open parenthesis minus 1 , 2 close parenthesis")[$( − 1 , 2 )$], #math.equation(block: false, alt: "open parenthesis 1 , 6 close parenthesis")[$( 1 , 6 )$], and #math.equation(block: false, alt: "open parenthesis 2 , 11 close parenthesis")[$( 2 , 11 )$]. A survey to determine what percent of different age groups regularly use marijuana collected the following data. #figure(table( columns: 5, align: left, inset: 6pt, table.header([Age], [#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: "30")[$30$]]), [Percent], [#math.equation(block: false, alt: "4")[$4$]], [#math.equation(block: false, alt: "13")[$13$]], [#math.equation(block: false, alt: "11")[$11$]], [#math.equation(block: false, alt: "7")[$7$]], )) + Use the percentages for ages #math.equation(block: false, alt: "15")[$15$], #math.equation(block: false, alt: "20")[$20$], and #math.equation(block: false, alt: "30")[$30$] to fit a quadratic function to the data, #math.equation(block: false, alt: "P equals a x squared plus b x plus c")[$P = a x^(2) + b x + c$], where #math.equation(block: false, alt: "x")[$x$] represents age. + What does your function predict for the percentage of #math.equation(block: false, alt: "25")[$25$]-year-olds who use marijuana? + Sketch the graph of your quadratic function and the given data on the same axes. + #math.equation(block: false, alt: "P equals minus 0.16 x squared plus 7.4 x minus 71")[$P = − 0.16 x^(2) + 7.4 x − 71$] + #math.equation(block: false, alt: "14 %")[$14 upright(%)$]. It predicts that #math.equation(block: false, alt: "14 %")[$14 upright(%)$] of the #math.equation(block: false, alt: "25")[$25$]-year old population use marijuana on a regular basis. + #figure(figph[parabola fitting points], alt: "parabola fitting points", caption: none) The following data show the number of people of certain ages who were the victims of homicide in a large city last year. #figure(table( columns: 5, align: left, inset: 6pt, table.header([Age], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "20")[$20$]], [#math.equation(block: false, alt: "30")[$30$]], [#math.equation(block: false, alt: "40")[$40$]]), [Number of victims], [#math.equation(block: false, alt: "12")[$12$]], [#math.equation(block: false, alt: "62")[$62$]], [#math.equation(block: false, alt: "72")[$72$]], [#math.equation(block: false, alt: "40")[$40$]], )) + Use the first three data points to fit a quadratic function to the data, #math.equation(block: false, alt: "N equals a x squared plus b x plus c")[$N = a x^(2) + b x + c$], where #math.equation(block: false, alt: "x")[$x$] represents age. + What does your function predict for the number of #math.equation(block: false, alt: "40")[$40$]-year-olds who were the victims of homicide? + Sketch the graph of your quadratic function and the given data on the same axes. The data below show Americans' annual per capita consumption of chicken for several years since #math.equation(block: false, alt: "1985")[$1985$]. #figure(table( columns: 6, align: left, inset: 6pt, table.header([Year], [#math.equation(block: false, alt: "1986")[$1986$]], [#math.equation(block: false, alt: "1987")[$1987$]], [#math.equation(block: false, alt: "1988")[$1988$]], [#math.equation(block: false, alt: "1989")[$1989$]], [#math.equation(block: false, alt: "1990")[$1990$]]), [Pounds of chicken], [#math.equation(block: false, alt: "51.3")[$51.3$]], [#math.equation(block: false, alt: "55.5")[$55.5$]], [#math.equation(block: false, alt: "57.4")[$57.4$]], [#math.equation(block: false, alt: "60.8")[$60.8$]], [#math.equation(block: false, alt: "63.6")[$63.6$]], )) + Use the values for #math.equation(block: false, alt: "1987")[$1987$] through #math.equation(block: false, alt: "1989")[$1989$] to fit a quadratic function to the data, #math.equation(block: false, alt: "C equals a t squared plus b t plus c")[$C = a t^(2) + b t + c$], where #math.equation(block: false, alt: "t")[$t$] is measured in years since #math.equation(block: false, alt: "1985")[$1985$]. + What does your function predict for per capita chicken consumption in #math.equation(block: false, alt: "1990")[$1990$]? + Sketch the graph of your function and the given data. + #math.equation(block: false, alt: "C equals 0.75 t squared minus 1.85 t plus 56.2")[$C = 0.75 t^(2) − 1.85 t + 56.2$] + #math.equation(block: false, alt: "65.7")[$65.7$] lb + #figure(figph[parabola fit to data], alt: "parabola fit to data", caption: none) The data show sales of in-line skates at a sporting goods store at the beach. #figure(table( columns: 6, align: left, inset: 6pt, table.header([Year], [#math.equation(block: false, alt: "1990")[$1990$]], [#math.equation(block: false, alt: "1991")[$1991$]], [#math.equation(block: false, alt: "1992")[$1992$]], [#math.equation(block: false, alt: "1993")[$1993$]], [#math.equation(block: false, alt: "1994")[$1994$]]), [Skate sold], [#math.equation(block: false, alt: "54")[$54$]], [#math.equation(block: false, alt: "82")[$82$]], [#math.equation(block: false, alt: "194")[$194$]], [#math.equation(block: false, alt: "446")[$446$]], [#math.equation(block: false, alt: "726")[$726$]], )) + Use the values for #math.equation(block: false, alt: "1991")[$1991$] through #math.equation(block: false, alt: "1993")[$1993$] to fit a quadratic function to the data, #math.equation(block: false, alt: "S equals a t squared plus b t plus c")[$S = a t^(2) + b t + c$], where #math.equation(block: false, alt: "t")[$t$] is measured in years since #math.equation(block: false, alt: "1990")[$1990$]. + What does your function predict for the number of pairs of skates sold in #math.equation(block: false, alt: "1994")[$1994$]? + Sketch the graph of your function and the given data. Find a quadratic function for the number of diagonals that can be drawn in a polygon of #math.equation(block: false, alt: "n")[$n$] sides. Some data are provided. #figure(table( columns: 5, align: left, inset: 6pt, table.header([Sides], [#math.equation(block: false, alt: "4")[$4$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "6")[$6$]], [#math.equation(block: false, alt: "7")[$7$]]), [Diagonals], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "5")[$5$]], [#math.equation(block: false, alt: "9")[$9$]], [#math.equation(block: false, alt: "14")[$14$]], )) #math.equation(block: true, alt: "D equals the fraction 1 over 2 n squared minus the fraction 3 over 2 n")[$D = display(frac(1, 2)) n^(2) − display(frac(3, 2)) n$] You are driving at #math.equation(block: false, alt: "60")[$60$] miles per hour when you step on the brakes. Find a quadratic function for the distance in feet that your car travels in #math.equation(block: false, alt: "t")[$t$] seconds after braking. Some data are provided. #figure(table( columns: 5, align: left, inset: 6pt, table.header([Seconds], [#math.equation(block: false, alt: "1")[$1$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "3")[$3$]], [#math.equation(block: false, alt: "4")[$4$]]), [Feet], [#math.equation(block: false, alt: "81")[$81$]], [#math.equation(block: false, alt: "148")[$148$]], [#math.equation(block: false, alt: "210")[$210$]], [#math.equation(block: false, alt: "267")[$267$]], )) + Write an equation for a parabola whose vertex is the point #math.equation(block: false, alt: "open parenthesis minus 2 , 6 close parenthesis")[$( − 2 , 6 )$]. (Many answers are possible.) + Find the value of #math.equation(block: false, alt: "a")[$a$] if the #math.equation(block: false, alt: "y")[$y$]-intercept of the parabola in part (a) is #math.equation(block: false, alt: "18")[$18$]. + #math.equation(block: false, alt: "y equals a open parenthesis x plus 2 close parenthesis squared plus 6")[$y = a ( x + 2 )^(2) + 6$] + #math.equation(block: false, alt: "3")[$3$] + Write an equation for a parabola whose vertex is the point #math.equation(block: false, alt: "open parenthesis 5 , minus 10 close parenthesis")[$( 5 , − 10 )$]. (Many answers are possible.) + Find the value of #math.equation(block: false, alt: "a")[$a$] if the #math.equation(block: false, alt: "y")[$y$]-intercept of the parabola in part (a) is #math.equation(block: false, alt: "minus 5")[$− 5$]. + Write an equation for a parabola with vertex at #math.equation(block: false, alt: "open parenthesis 0 , minus 3 close parenthesis")[$( 0 , − 3 )$] and one of its #math.equation(block: false, alt: "x")[$x$]-intercepts at #math.equation(block: false, alt: "open parenthesis 2 , 0 close parenthesis")[$( 2 , 0 )$]. + Write an equation for a parabola with vertex at #math.equation(block: false, alt: "open parenthesis 0 , minus 3 close parenthesis")[$( 0 , − 3 )$] and no #math.equation(block: false, alt: "x")[$x$]-intercepts. + #math.equation(block: false, alt: "y equals the fraction 3 over 4 x squared minus 3")[$y = display(frac(3, 4)) x^(2) − 3$] + #math.equation(block: false, alt: "y equals a x squared minus 3")[$y = a x^(2) − 3$] for any #math.equation(block: false, alt: "a less than 0")[$a < 0$] Write an equation for a parabola with vertex at #math.equation(block: false, alt: "open parenthesis 4 , 0 close parenthesis")[$( 4 , 0 )$] and #math.equation(block: false, alt: "y")[$y$]-intercept at #math.equation(block: false, alt: "open parenthesis 0 , 4 close parenthesis")[$( 0 , 4 )$]. How many #math.equation(block: false, alt: "x")[$x$]-intercepts does the parabola have? Find the equation for a parabola that has a vertex of #math.equation(block: false, alt: "open parenthesis 30 , 280 close parenthesis")[$( 30 , 280 )$] and passes through the point #math.equation(block: false, alt: "open parenthesis 20 , 80 close parenthesis")[$( 20 , 80 )$]. #math.equation(block: true, alt: "y equals minus 2 open parenthesis x minus 30 close parenthesis squared plus 280")[$y = − 2 ( x − 30 )^(2) + 280$] Find the equation for a parabola that has a vertex of #math.equation(block: false, alt: "open parenthesis minus 12 , minus 40 close parenthesis")[$( − 12 , − 40 )$] and passes through the point #math.equation(block: false, alt: "open parenthesis 6 , 68 close parenthesis")[$( 6 , 68 )$]. For Problems 19–26, find an equation for each parabola. Use the vertex form or the factored form of the equation, whichever is more appropriate. #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals x squared minus 9")[$y = x^(2) − 9$] #figure(figph[parabola], alt: "parabola", caption: none) #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals minus 2 x squared")[$y = − 2 x^(2)$] #figure(figph[parabola], alt: "parabola", caption: none) #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals x squared minus 2 x minus 15")[$y = x^(2) − 2 x − 15$] #figure(figph[parabola], alt: "parabola", caption: none) #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals x squared minus 4 x plus 5")[$y = x^(2) − 4 x + 5$] #figure(figph[parabola], alt: "parabola", caption: none) In skeet shooting, the clay pigeon is launched from a height of #math.equation(block: false, alt: "4")[$4$] feet and reaches a maximum height of #math.equation(block: false, alt: "164")[$164$] feet at a distance of #math.equation(block: false, alt: "80")[$80$] feet from the launch site. + Write a function for the height of the clay pigeon in terms of the horizontal distance it has traveled. + If the shooter misses the clay pigeon, how far from the launch site will it hit the ground? + #math.equation(block: false, alt: "y equals the fraction minus 1 over 40 open parenthesis x minus 80 close parenthesis squared plus 164")[$y = display(frac(− 1, 40)) ( x − 80 )^(2) + 164$] + #math.equation(block: false, alt: "160.99")[$160.99$] ft The batter in a softball game hits the ball when it is #math.equation(block: false, alt: "4")[$4$] feet above the ground. The ball reaches the greatest height on its trajectory, #math.equation(block: false, alt: "35")[$35$] feet, directly above the head of the left-fielder, who is #math.equation(block: false, alt: "200")[$200$] feet from home plate. + Write a function for the height of the softball in terms of its horizontal distance from home plate. + Will the ball clear the left field wall, which is #math.equation(block: false, alt: "10")[$10$] feet tall and #math.equation(block: false, alt: "375")[$375$] feet from home plate? The cables on a suspension bridge hang in the shape of parabolas. For Problems 29–30, imagine a coordinate system superimposed on a diagram of the bridge, as shown in the figure. #figure(figph[suspension bridge], alt: "suspension bridge", caption: none) The Akashi Kaikyo bridge in Japan is the longest suspension bridge in the world, with a main span of #math.equation(block: false, alt: "1991")[$1991$] meters. Its main towers are #math.equation(block: false, alt: "297")[$297$] meters tall. The roadbed of the bridge is #math.equation(block: false, alt: "14")[$14$] meters thick and clears the water below by #math.equation(block: false, alt: "65")[$65$] meters. + Find the coordinates of the vertex and one other point on the cable. + Use the points from part (a) to find an equation for the shape of the cable in vertex form. + Vertex: #math.equation(block: false, alt: "open parenthesis the fraction 1991 over 2 , 79 close parenthesis")[$( frac(1991, 2) , 79 )$]; #math.equation(block: false, alt: "y")[$y$]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 297 close parenthesis")[$( 0 , 297 )$] + #math.equation(block: false, alt: "y equals 0.00022 open parenthesis x minus 995.5 close parenthesis squared plus 79")[$y = 0.00022 ( x − 995.5 )^(2) + 79$] A suspension bridge joining Sicily to the tip of Italy over the Straits of Messina has been planned planned and canceled multiple times. The main span of the bridge should be #math.equation(block: false, alt: "3300")[$3300$] meters, and its main towers #math.equation(block: false, alt: "375")[$375$] meters tall. The roadbed should be #math.equation(block: false, alt: "3")[$3$] meters thick, clearing the water below by #math.equation(block: false, alt: "65")[$65$] meters. + Find the coordinates of the vertex and one other point on the cable. + Use the points from part (a) to find an equation for the shape of the cable in vertex form. The Square Kilometre Array (SKA) is an international radio telescope project. Project members plan to build a telescope 30 times larger than the largest one currently available. The Australia Telescope National Facility held a workshop in 2005 to design an appropriate antenna. The antenna should be a parabolic dish with diameter from #math.equation(block: false, alt: "12")[$12$] to #math.equation(block: false, alt: "20")[$20$] meters, and the ratio of the focal length to the diameter should be #math.equation(block: false, alt: "0.4")[$0.4$]. The figure shows a cross section of the dish. (Source: www.atnf.csiro.au/projects/ska/) #figure(figph[antenna design], alt: "antenna design", caption: none) + You want to design a #math.equation(block: false, alt: "20")[$20$]-meter-diameter parabolic antenna for the project. What will the focal length of your antenna be? + The equation of the dish has the form #math.equation(block: false, alt: "y equals the fraction x squared over 4 F")[$y = display(frac(x^(2), 4 F))$], where #math.equation(block: false, alt: "F")[$F$] is the focal length. What is the equation of the parabola for your antenna? + What is the depth of your parabolic antenna? + #math.equation(block: false, alt: "8")[$8$] m + #math.equation(block: false, alt: "y equals the fraction x squared over 32")[$y = display(frac(x^(2), 32))$] + #math.equation(block: false, alt: "3.125")[$3.125$] m Some comets move about the sun in parabolic orbits. In 1973, the comet Kohoutek passed within 0.14 AU (astronomical units), or 21 million kilometers, of the Sun. Imagine a coordinate system superimposed on a diagram of the comet’s orbit, with the Sun at the origin, as shown in the figure. The units on each axis are measured in AU. #figure(figph[parabola], alt: "parabola", caption: none) + The comet's closest approach to the Sun (called #strong[perihelion]) occurred at the vertex of the parabola. What were the comet’s coordinates at perihelion? + When the comet was first discovered, its coordinates were #math.equation(block: false, alt: "open parenthesis 1.68 , minus 4.9 close parenthesis")[$( 1.68 , − 4.9 )$]. Find an equation for comet Kohoutek's orbit in vertex form. Use your calculator's statistics features for Problems 33–38. The table shows the height of a projectile at different times after it was fired. #figure(table( columns: 8, align: left, inset: 6pt, table.header([Time #linebreak() (seconds) #linebreak()], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "4")[$4$]], [#math.equation(block: false, alt: "6")[$6$]], [#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$]]), [Height #linebreak() (meters) #linebreak()], [#math.equation(block: false, alt: "39.2")[$39.2$]], [#math.equation(block: false, alt: "71.8")[$71.8$]], [#math.equation(block: false, alt: "98.0")[$98.0$]], [#math.equation(block: false, alt: "117.8")[$117.8$]], [#math.equation(block: false, alt: "131.0")[$131.0$]], [#math.equation(block: false, alt: "137.8")[$137.8$]], [#math.equation(block: false, alt: "138.0")[$138.0$]], )) + Find the equation of the least-squares regression line for height in terms of time. + Use the linear regression equation to predict the height of the projectile #math.equation(block: false, alt: "15")[$15$] seconds after it was fired. + Make a scatterplot of the data and draw the regression line on the same axes. + Find the quadratic regression equation for height in terms of time. + Use the quadratic regression equation to predict the height of the projectile #math.equation(block: false, alt: "15")[$15$] seconds after it was fired. + Draw the quadratic regression curve on the graph from part (c). + Which model is more appropriate for the height of the projectile, linear or quadratic? Why? + #math.equation(block: false, alt: "h equals 8.24 t plus 38.89")[$h = 8.24 t + 38.89$] + #math.equation(block: false, alt: "162.5")[$162.5$] m + #figure(figph[line fit to data], alt: "line fit to data", caption: none) + #math.equation(block: false, alt: "h equals minus 0.81 t squared plus 21.2 t")[$h = − 0.81 t^(2) + 21.2 t$] + #math.equation(block: false, alt: "135.7")[$135.7$] m + #figure(figph[parabola fit to data], alt: "parabola fit to data", caption: none) + Quadratic: Gravity will slow the projectile, giving the graph a concave down shape. The table shows the height of a star-flare at different times after it exploded from the surface of a star. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Time #linebreak() (seconds) #linebreak()], [#math.equation(block: false, alt: "0.2")[$0.2$]], [#math.equation(block: false, alt: "0.4")[$0.4$]], [#math.equation(block: false, alt: "0.6")[$0.6$]], [#math.equation(block: false, alt: "0.8")[$0.8$]], [#math.equation(block: false, alt: "1.0")[$1.0$]], [#math.equation(block: false, alt: "1.2")[$1.2$]]), [Height #linebreak() (kilometers) #linebreak()], [#math.equation(block: false, alt: "6.8")[$6.8$]], [#math.equation(block: false, alt: "12.5")[$12.5$]], [#math.equation(block: false, alt: "17.1")[$17.1$]], [#math.equation(block: false, alt: "20.5")[$20.5$]], [#math.equation(block: false, alt: "22.8")[$22.8$]], [#math.equation(block: false, alt: "23.9")[$23.9$]], )) + Find the equation of the least-squares regression line for height of the flare in terms of time. + Use the linear regression equation to predict the height of the flare #math.equation(block: false, alt: "1.4")[$1.4$] seconds after it exploded. + Make a scatterplot of the data and draw the regression line on the same axes. + Find the quadratic regression equation for height in terms of time. + Use the quadratic regression equation to predict the height of the flare #math.equation(block: false, alt: "1.4")[$1.4$] seconds after it exploded. + Draw the quadratic regression curve on the graph from part (c). + Which model is more appropriate for the height of the star-flare, linear or quadratic? Why? In the 1990s, an outbreak of mad cow disease (Creutzfeldt-Jakob disease) alarmed health officials in England. The table shows the number of deaths each year from the disease. #figure(table( columns: 12, align: left, inset: 6pt, table.header([Year], ['94], ['95], ['96], ['97], ['98], ['99], [2000], ['01], ['02], ['03], ['04]), [Deaths], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "3")[$3$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "18")[$18$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "28")[$28$]], [#math.equation(block: false, alt: "20")[$20$]], [#math.equation(block: false, alt: "17")[$17$]], [#math.equation(block: false, alt: "19")[$19$]], [#math.equation(block: false, alt: "9")[$9$]], )) (Source: www.cjd.ed.ac.uk/vcjdqsep05) + The Health Protection Agency determined that a quadratic model was the best-fitting model for the data. Find a quadratic regression equation for the data. + Use your model to estimate when the peak of the epidemic occurred and how many deaths from mad cow disease were expected in 2005. + #math.equation(block: false, alt: "y equals minus 0.587 t squared plus 7.329 t minus 2.538")[$y = − 0.587 t^(2) + 7.329 t − 2.538$] + The predicted peak was in 2000, near the end of March. The model predicts #math.equation(block: false, alt: "7")[$7$] deaths for 2005. The table shows the amount of nitrogen fertilizer applied to a crop of soybeans per hectare of land in a trial in Thailand and the resulting yield. #figure(table( columns: 6, align: left, inset: 6pt, table.header([Nitrogen (kg)], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "15")[$15$]], [#math.equation(block: false, alt: "30")[$30$]], [#math.equation(block: false, alt: "60")[$60$]], [#math.equation(block: false, alt: "120")[$120$]]), [Yield (tons)], [#math.equation(block: false, alt: "2.12")[$2.12$]], [#math.equation(block: false, alt: "2.46")[$2.46$]], [#math.equation(block: false, alt: "2.65")[$2.65$]], [#math.equation(block: false, alt: "2.80")[$2.80$]], [#math.equation(block: false, alt: "2.60")[$2.60$]], )) (Source: www.arc-avrdc.org) + Fit a quadratic regression equation to the data. + Use your model to predict the maximum yield and the amount of nitrogen needed. The number of daylight hours increases each day from the beginning of winter until the beginning of summer, and then begins to decrease. The table below gives the number of daylight hours in Delbert's hometown last year in terms of the number of days since January 1. #figure(table( columns: 8, align: left, inset: 6pt, table.header([Days since #linebreak() January 1 #linebreak()], [#math.equation(block: false, alt: "0")[$0$]], [#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: "250")[$250$]], [#math.equation(block: false, alt: "300")[$300$]]), [Hours of #linebreak() daylight #linebreak()], [#math.equation(block: false, alt: "9.8")[$9.8$]], [#math.equation(block: false, alt: "10.9")[$10.9$]], [#math.equation(block: false, alt: "12.7")[$12.7$]], [#math.equation(block: false, alt: "14.1")[$14.1$]], [#math.equation(block: false, alt: "13.9")[$13.9$]], [#math.equation(block: false, alt: "12.5")[$12.5$]], [#math.equation(block: false, alt: "10.7")[$10.7$]], )) + Find the equation of the least-squares regression line for the number of daylight hours in terms of the number of days since January 1. + Use the linear regression equation to predict the number of daylight hours #math.equation(block: false, alt: "365")[$365$] days after January 1. + Make a scatterplot of the data and draw the regression line on the same axes. + Find the quadratic regression equation for the number of daylight hours in terms of the number of days since January 1. + Use the quadratic regression equation to predict the number of daylight hours #math.equation(block: false, alt: "365")[$365$] days after January 1. + Draw the quadratic regression curve on the graph from part (c). + Predict the number of daylight hours #math.equation(block: false, alt: "365")[$365$] days since January 1 without using any regression equation. What does this tell you about the linear and quadratic models you found? + #math.equation(block: false, alt: "y equals 0.0051 t plus 11.325")[$y = 0.0051 t + 11.325$] + #math.equation(block: false, alt: "13.2")[$13.2$] hr + #figure(figph[line to data], alt: "line to data", caption: none) + #math.equation(block: false, alt: "y equals minus 0.00016 t squared plus 0.053 t plus 9.319")[$y = − 0.00016 t^(2) + 0.053 t + 9.319$] + #math.equation(block: false, alt: "7.4")[$7.4$] hr + #figure(figph[parabola to data], alt: "parabola to data", caption: none) + #math.equation(block: false, alt: "9.8")[$9.8$] hr (the same as the previous year); Neither model is appropriate. To observers on Earth, the Moon looks like a disk that is completely illuminated at full moon and completely dark at new moon. The table below shows what fraction of the Moon is illuminated at #math.equation(block: false, alt: "5")[$5$]-day interval after the last full moon. #figure(table( columns: 7, align: left, inset: 6pt, table.header([Days since #linebreak() full moon #linebreak()], [#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$]]), [Fraction #linebreak() illuminated #linebreak()], [#math.equation(block: false, alt: "1.000")[$1.000$]], [#math.equation(block: false, alt: "0.734")[$0.734$]], [#math.equation(block: false, alt: "0.236")[$0.236$]], [#math.equation(block: false, alt: "0.001")[$0.001$]], [#math.equation(block: false, alt: "0.279")[$0.279$]], [#math.equation(block: false, alt: "0.785")[$0.785$]], )) (Source: www.arc-avrdc.org) + Find the equation of the least-squares regression line for the fraction illuminated in terms of days. + Use the linear regression equation to predict the fraction illuminated #math.equation(block: false, alt: "30")[$30$] days after the full moon. + Make a scatterplot of the data and draw the regression line on the same axes. + Find the quadratic regression equation for the fraction illuminated in terms of days. + Use the quadratic regression equation to predict the fraction illuminated #math.equation(block: false, alt: "30")[$30$] days after the full moon. + Draw the quadratic regression curve on the graph from part (c). + Predict the fraction of the disk that is illuminated #math.equation(block: false, alt: "30")[$30$] days after the full moon without using any regression equation. What does this tell you about the linear and quadratic models you found?