#set document(title: "6.7 Chapter Summary and Review", 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.7#h(0.6em)Chapter Summary and Review === Key Concepts + A #strong[quadratic] function has the form #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals a x squared plus b x plus c")[$f ( x ) = a x^(2) + b x + c$], where #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] are constants and #math.equation(block: false, alt: "a")[$a$] is not equal to zero. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Zero-Factor Principle] The product of two factors equals zero if and only if one or both of the factors equals zero. In symbols, #math.equation(block: true, alt: "a b equals 0 if and only if a equals 0 or b equals 0")[$a b = 0 " " " " " if and only if " " " " " a = 0 " " " " " or " " " " " b = 0$] ] + The #math.equation(block: false, alt: "x")[$x$]-intercepts of the graph of #math.equation(block: false, alt: "y equals f open parenthesis x close parenthesis")[$y = f ( x )$] are the solutions of the equation #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$]. + A quadratic equation written as #math.equation(block: false, alt: "a x squared plus b x plus c equals 0")[$a x^(2) + b x + c = 0$] is in #strong[standard form]. #linebreak() A quadratic equation written as #math.equation(block: false, alt: "a open parenthesis x minus r sub 1 close parenthesis open parenthesis x minus r sub 2 close parenthesis equals 0")[$a ( x − r_(1) ) ( x − r_(2) ) = 0$] is in #strong[factored form]. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Solve a Quadratic Equation by Factoring] + Write the equation in standard form. + Factor the left side of the equation. + Apply the zero-factor principle: Set each factor equal to zero. + Solve each equation. There are two solutions (which may be equal). ] + Every quadratic equation has two solutions, which may be the same. + The value of the constant #math.equation(block: false, alt: "a")[$a$] in the factored form of a quadratic equation does not affect the solutions. + Each solution of a quadratic equation corresponds to a factor in the factored form. + An equation is called #strong[quadratic in form] if we can use a substitution to write it as #math.equation(block: false, alt: "a u squared plus b u plus c equals 0")[$a u^(2) + b u + c = 0$], where #math.equation(block: false, alt: "u")[$u$] stands for an algebraic expression. + The square of the binomial is a #strong[quadratic trinomial], #math.equation(block: true, alt: "open parenthesis x plus p close parenthesis squared equals x squared plus 2 p x plus p squared")[$( x + p )^(2) = x^(2) + 2 p x + p^(2)$] + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Solve a Quadratic Equation by Completing the Square] + + Write the equation in standard form. + Divide both sides of the equation by the coefficient of the quadratic term, and subtract the constant term from both sides. + Complete the square on the left side:+ Multiply the coefficient of the first-degree term by one-half, then square the result. + Add the value obtained in (a) to both sides of the equation. + Write the left side of the equation as the square of a binomial. Simplify the right side. + Use extraction of roots to finish the solution. ] + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[The Quadratic Formula] The solutions of the equation #math.equation(block: false, alt: "a x squared plus b x plus c equals 0 , a not equal to 0")[$a x^(2) + b x + c = 0 ", " " " " " " " a ≠ 0$], are #math.equation(block: true, alt: "x equals the fraction minus b plus or minus the square root of b squared minus 4 a c over 2 a")[$bold(italic(x)) = frac(− bold(italic(b)) ± sqrt(bold(italic(b))^(2) − 4 bold(italic(a)) bold(italic(c))), 2 bold(italic(a)))$] ] + We have four methods for solving quadratic equations: extracting roots, factoring, completing the square, and using the quadratic formula. The first two methods are faster, but they do not work on all equations. The last two methods work on any quadratic equation. + The graph of a quadratic function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals a x squared plus b x plus c")[$f ( x ) = a x^(2) + b x + c$] is called a #strong[parabola]. The values of the constants #math.equation(block: false, alt: "a")[$a$], #math.equation(block: false, alt: "b")[$b$], and #math.equation(block: false, alt: "c")[$c$] determine the location and orientation of the parabola. + For 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$], the #math.equation(block: false, alt: "x")[$x$]-coordinate of the vertex is #math.equation(block: false, alt: "x sub v equals the fraction minus b over 2 a")[$x_(v) = display(frac(− b, 2 a))$]. #linebreak() To find the #math.equation(block: false, alt: "y")[$y$]-coordinate of the vertex, we substitute #math.equation(block: false, alt: "x sub v")[$x_(v)$] into the formula for the parabola. + The graph of the quadratic function #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$] may have two, one, or no #math.equation(block: false, alt: "x")[$x$]-intercepts, according to the number of distinct real-valued solutions of the equation #math.equation(block: false, alt: "a x squared plus b x plus c equals 0")[$a x^(2) + b x + c = 0$]. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[The Discriminant] The #strong[discriminant] of a quadratic equation is #math.equation(block: false, alt: "D equals b squared minus 4 a c")[$D = b^(2) − 4 a c$]. + If #math.equation(block: false, alt: "D greater than 0")[$D > 0$], there are two unequal real solutions. + If #math.equation(block: false, alt: "D equals 0")[$D = 0$], there is one real solution of multiplicity two. + If #math.equation(block: false, alt: "D less than 0")[$D < 0$], there are two complex solutions. ] + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Graph the Quadratic Function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals a x squared plus b x plus c")[$f ( x ) = a x^(2) + b x + c$]:] + Determine whether the parabola opens upward (if #math.equation(block: false, alt: "a greater than 0")[$a > 0$]) or downward (if #math.equation(block: false, alt: "a less than 0")[$a < 0$]). + Locate the vertex of the parabola. + The #math.equation(block: false, alt: "x")[$x$]-coordinate of the vertex is #math.equation(block: false, alt: "x sub v equals the fraction minus b over 2 a")[$x_(v) = display(frac(− b, 2 a))$]. + Find the #math.equation(block: false, alt: "y")[$y$]-coordinate of the vertex by substituting #math.equation(block: false, alt: "x sub v")[$x_(v)$] into the equation of the parabola. + Locate the #math.equation(block: false, alt: "x")[$x$]-intercepts (if any) by setting #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solving for #math.equation(block: false, alt: "x")[$x$]. + Locate the #math.equation(block: false, alt: "y")[$y$]-intercept by evaluating #math.equation(block: false, alt: "y")[$y$] for #math.equation(block: false, alt: "x equals 0")[$x = 0$]. + Locate the point symmetric to the #math.equation(block: false, alt: "y")[$y$]-intercept across the axis of symmetry. ] + Quadratic models may arise as the product of two variables. + The maximum or minimum of a quadratic function occurs at the vertex. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Vertex Form for a Quadratic Function] A quadratic function #math.equation(block: false, alt: "y equals a x squared plus b x plus c")[$y = a x^(2) + b x + c$], #math.equation(block: false, alt: "a not equal to 0")[$a ≠ 0$], can be written in the vertex form #math.equation(block: true, alt: "y equals a open parenthesis x minus x sub v close parenthesis squared plus y sub v")[$y = a ( x − x_(v) )^(2) + y_(v)$]where the vertex of the graph is #math.equation(block: false, alt: "open parenthesis x sub v , y sub v close parenthesis")[$( x_(v) , y_(v) )$]. ] + We can convert a quadratic equation to vertex form by completing the square. + We can graph a quadratic equation in vertex form using transformations. + A #math.equation(block: false, alt: "2 times 2")[$2 × 2$] system involving quadratic equations may have one, two, or no solutions. + We can use a graphical technique to solve quadratic inequalities. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To Solve a Quadratic Inequality Algebraically:] + Write the inequality in standard form: One side is #math.equation(block: false, alt: "0")[$0$], and the other has the form #math.equation(block: false, alt: "a x squared plus b x plus c")[$a x^(2) + b x + c$]. + Find the #math.equation(block: false, alt: "x")[$x$]-intercepts of 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$] by setting #math.equation(block: false, alt: "y equals 0")[$y = 0$] and solving for #math.equation(block: false, alt: "x")[$x$]. + Make a rough sketch of the graph, using the sign of #math.equation(block: false, alt: "a")[$a$] to determine whether the parabola opens upward or downward. + Decide which intervals on the #math.equation(block: false, alt: "x")[$x$]-axis give the correct sign for #math.equation(block: false, alt: "y")[$y$]. ] + We need three points to determine the equation of 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. === Chapter 6 Review Problems For Problems 1-6, solve by factoring. #math.equation(block: true, alt: "x squared plus x equals 4 minus open parenthesis x plus 2 close parenthesis squared")[$x^(2) + x = 4 − ( x + 2 )^(2)$] #math.equation(block: true, alt: "0 , the fraction minus 5 over 2")[$0 , " " display(frac(− 5, 2))$] #math.equation(block: true, alt: "open parenthesis n minus 3 close parenthesis open parenthesis n plus 2 close parenthesis equals 6")[$( n − 3 ) ( n + 2 ) = 6$] #math.equation(block: true, alt: "x open parenthesis 3 x plus 2 close parenthesis equals open parenthesis x plus 2 close parenthesis squared")[$x ( 3 x + 2 ) = ( x + 2 )^(2)$] #math.equation(block: true, alt: "minus 1 , 2")[$− 1 , " " 2$] #math.equation(block: true, alt: "6 y equals open parenthesis y plus 1 close parenthesis squared plus 3")[$6 y = ( y + 1 )^(2) + 3$] #math.equation(block: true, alt: "4 x minus open parenthesis x plus 1 close parenthesis open parenthesis x plus 2 close parenthesis equals minus 8")[$4 x − ( x + 1 ) ( x + 2 ) = − 8$] #math.equation(block: true, alt: "minus 2 , 3")[$− 2 , " " 3$] #math.equation(block: true, alt: "3 open parenthesis x plus 2 close parenthesis squared equals 15 plus 12 x")[$3 ( x + 2 )^(2) = 15 + 12 x$] For Problems 7-8, write a quadratic equation with integer coefficients and with the given solutions. #math.equation(block: false, alt: "the fraction minus 3 over 4")[$display(frac(− 3, 4))$] and #math.equation(block: false, alt: "8")[$8$] #math.equation(block: true, alt: "4 x squared minus 29 x minus 24 equals 0")[$4 x^(2) − 29 x − 24 = 0$] #math.equation(block: false, alt: "the fraction 5 over 3")[$display(frac(5, 3))$] and #math.equation(block: false, alt: "the fraction 5 over 3")[$display(frac(5, 3))$] For Problems 9-10, graph the equation using the #strong[ZDecimal] setting. Locate the #math.equation(block: false, alt: "x")[$x$]-intercepts and use them to write the quadratic expression in factored form. #math.equation(block: true, alt: "y equals x squared minus 0.6 x minus 7.2")[$y = x^(2) − 0.6 x − 7.2$] #math.equation(block: true, alt: "y equals open parenthesis x minus 3 close parenthesis open parenthesis x plus 2.4 close parenthesis")[$y = ( x − 3 ) ( x + 2.4 )$] #math.equation(block: true, alt: "y equals minus x squared plus 0.7 x plus 2.6")[$y = − x^(2) + 0.7 x + 2.6$] For Problems 11-14, use a substitution to solve. #math.equation(block: true, alt: "2 to the power 2 p minus 6 times 2 to the power p plus 8 equals 0")[$2^(2 p) − 6 ⋅ 2^(p) + 8 = 0$] #math.equation(block: true, alt: "1")[$1$], #math.equation(block: true, alt: "2")[$" " 2$] #math.equation(block: true, alt: "3 to the power 2 r minus 6 times 3 to the power r plus 5 equals 0")[$3^(2 r) − 6 ⋅ 3^(r) + 5 = 0$] #math.equation(block: true, alt: "open parenthesis the fraction 1 over b close parenthesis squared minus 3 open parenthesis the fraction 1 over b close parenthesis minus 4 equals 0")[$attach(( display(frac(1, b)) ), t: 2) − 3 ( display(frac(1, b)) ) − 4 = 0$] #math.equation(block: true, alt: "minus 1")[$− 1$], #math.equation(block: true, alt: "the fraction 1 over 4")[$" " display(frac(1, 4))$] #math.equation(block: true, alt: "open parenthesis the fraction 1 over q close parenthesis squared plus the fraction 1 over q minus 2 equals 0")[$attach(( display(frac(1, q)) ), t: 2) + display(frac(1, q)) − 2 = 0$] For problems 15-18, solve by completing the square. #math.equation(block: true, alt: "x squared minus 4 x minus 6 equals 0")[$x^(2) − 4 x − 6 = 0$] #math.equation(block: true, alt: "2 plus or minus the square root of 10")[$2 ± sqrt(10)$] #math.equation(block: true, alt: "x squared plus 3 x equals 3")[$x^(2) + 3 x = 3$] #math.equation(block: true, alt: "2 x squared plus 3 equals 6 x")[$2 x^(2) + 3 = 6 x$] #math.equation(block: true, alt: "the fraction 3 plus or minus the square root of 3 over 2")[$display(frac(3 ± sqrt(3), 2))$] #math.equation(block: true, alt: "3 x squared equals 2 x plus 3")[$3 x^(2) = 2 x + 3$] For Problems 19-22, solve by using the quadratic formula. #math.equation(block: true, alt: "the fraction 1 over 2 x squared plus 1 equals the fraction 3 over 2 x")[$display(frac(1, 2)) x^(2) + 1 = display(frac(3, 2)) x$] #math.equation(block: true, alt: "1")[$1$], #math.equation(block: true, alt: "2")[$" " 2$] #math.equation(block: true, alt: "x squared minus 3 x plus 1 equals 0")[$x^(2) − 3 x + 1 = 0$] #math.equation(block: true, alt: "x squared minus 4 x plus 2 equals 0")[$x^(2) − 4 x + 2 = 0$] #math.equation(block: true, alt: "2 plus or minus the square root of 2")[$2 ± sqrt(2)$] #math.equation(block: true, alt: "2 x squared plus 2 x equals 3")[$2 x^(2) + 2 x = 3$] For Problems 23-26, solve the formula for the indicated variable. #math.equation(block: false, alt: "K equals the fraction 1 over 2 m v squared ,")[$K = display(frac(1, 2)) m v^(2) , " " " " " "$] for #math.equation(block: false, alt: "v")[$v$] #math.equation(block: true, alt: "plus or minus the square root of the fraction 2 K over m")[$± sqrt(display(frac(2 K, m)))$] #math.equation(block: false, alt: "a squared plus b squared equals c squared ,")[$a^(2) + b^(2) = c^(2) , " " " " " "$] for #math.equation(block: false, alt: "b")[$b$] #math.equation(block: false, alt: "h equals 6 t minus 3 t squared ,")[$h = 6 t − 3 t^(2) , " " " " " "$] for #math.equation(block: false, alt: "t")[$t$] #math.equation(block: true, alt: "the fraction 3 plus or minus the square root of 9 minus 3 h over 3")[$display(frac(3 ± sqrt(9 − 3 h), 3))$] #math.equation(block: false, alt: "D equals the fraction n squared minus 3 n over 2 ,")[$D = display(frac(n^(2) − 3 n, 2)) , " " " " " "$] for #math.equation(block: false, alt: "n")[$n$] In a tennis tournament among #math.equation(block: false, alt: "n")[$n$] competitors, #math.equation(block: false, alt: "the fraction n open parenthesis n minus 1 close parenthesis over 2")[$display(frac(n ( n − 1 ), 2))$] matches must be played. If the organizers can schedule #math.equation(block: false, alt: "36")[$36$] matches, how many players should they invite? #math.equation(block: true, alt: "9")[$9$] The formula #math.equation(block: false, alt: "S equals the fraction n open parenthesis n plus 1 close parenthesis over 2")[$S = display(frac(n ( n + 1 ), 2))$] gives the sum of the first #math.equation(block: false, alt: "n")[$n$] positive integers. How many consecutive integers must be added to make a sum of #math.equation(block: false, alt: "91")[$91$]? Irene wants to enclose two adjacent chicken coops of equal size against the henhouse wall. She has #math.equation(block: false, alt: "66")[$66$] feet of chicken wire fencing and would like the total area of the two coops to be #math.equation(block: false, alt: "360")[$360$] square feet. What should the dimensions of the chicken coops be? #math.equation(block: false, alt: "10")[$10$] ft by #math.equation(block: false, alt: "18")[$18$] ft or #math.equation(block: false, alt: "12")[$12$] ft by #math.equation(block: false, alt: "15")[$15$] ft The base of an isosceles triangle is one inch shorter than the equal sides, and the altitude of the triangle is #math.equation(block: false, alt: "2")[$2$] inches shorter than the equal sides. What is the length of the equal sides? A car traveling at #math.equation(block: false, alt: "50")[$50$] feet per second (about #math.equation(block: false, alt: "34")[$34$] miles per hour) can stop in #math.equation(block: false, alt: "2.5")[$2.5$] seconds after applying the brakes hard. The distance the car travels, in feet, #math.equation(block: false, alt: "t")[$t$] seconds after applying the brakes is #math.equation(block: false, alt: "d equals 50 t minus 10 t squared")[$d = 50 t − 10 t^(2)$]. How long does it take the car to travel #math.equation(block: false, alt: "40")[$40$] feet? #math.equation(block: false, alt: "1")[$1$] sec You have #math.equation(block: false, alt: "300")[$300$] feet of wire fence to mark off a rectangular Christmas tree lot with a center divider, using a brick wall as one side of the lot. If you would like to enclose a total area of #math.equation(block: false, alt: "7500")[$7500$] square feet, what should be the dimensions of the lot? The height, #math.equation(block: false, alt: "h")[$h$], of an object #math.equation(block: false, alt: "t")[$t$] seconds after being thrown from ground level is given by #math.equation(block: true, alt: "h equals v sub 0 t minus the fraction 1 over 2 g t squared")[$h = v_(0) t − display(frac(1, 2)) g t^(2)$] where #math.equation(block: false, alt: "v sub 0")[$v_(0)$] is its starting velocity and #math.equation(block: false, alt: "g")[$g$] is a constant that depends on gravity. On the Moon, the value of #math.equation(block: false, alt: "g")[$g$] is approximately #math.equation(block: false, alt: "5.6")[$5.6$]. Suppose you hit a golf ball on the Moon with an upward velocity of #math.equation(block: false, alt: "100")[$100$] feet per second. + Write an equation for the height of the golf ball #math.equation(block: false, alt: "t")[$t$] seconds after you hit it. + Graph your equation in the window #math.equation(block: true, alt: "Xmin, equals 0, Xmax equals 47; Ymin, equals 0, Ymax equals 1000")[$"Xmin" & = 0 & & "Xmax" = 47 \ "Ymin" & = 0 & & "Ymax" = 1000$] + Use the #strong[Trace] to estimate the maximum height the golf ball reaches. + Use your equation to calculate when the golf ball will reach a height of #math.equation(block: false, alt: "880")[$880$] feet. + #math.equation(block: false, alt: "h equals 100 t minus 2.8 t squared")[$h = 100 t − 2.8 t^(2)$] + #figure(figph[parabola], alt: "parabola", caption: none) + #math.equation(block: false, alt: "893")[$893$] ft + #math.equation(block: false, alt: "15 the fraction 5 over 7")[$15 frac(5, 7)$] sec on the way up and #math.equation(block: false, alt: "20")[$20$] sec on the way down An acrobat is catapulted into the air from a springboard at ground level. Her height, #math.equation(block: false, alt: "h")[$h$], in meters is given by the formula #math.equation(block: true, alt: "h equals minus 4.9 t squared plus 14.7 t")[$h = − 4.9 t^(2) + 14.7 t$] where #math.equation(block: false, alt: "t")[$t$] is the time in seconds from launch. Use your calculator to graph the acrobat’s height versus time. Use the window #math.equation(block: true, alt: "Xmin, equals 0, Xmax equals 4.7; Ymin, equals 0, Ymax equals 12")[$"Xmin" & = 0 & & "Xmax" = 4.7 \ "Ymin" & = 0 & & "Ymax" = 12$] + Use the #strong[Trace] to find the coordinates of the highest point on the graph. When does the acrobat reach her maximum height, and what is that height? + Use the formula to find the height of the acrobat after #math.equation(block: false, alt: "2.4")[$2.4$] seconds. + Use the #strong[Trace] to verify your answer to part (b). Find another time when the acrobat is at the same height. + Use the formula to find two times when the acrobat is at a height of #math.equation(block: false, alt: "6.125")[$6.125$] meters. Verify your answers on the graph. + What are the coordinates of the horizontal intercepts of your graph? What do these points have to do with the acrobat? For problems 35–36, show that the areas #math.equation(block: false, alt: "A sub 1")[$A_(1)$] and #math.equation(block: false, alt: "A sub 2")[$A_(2)$] of the shaded portions of the two figures are equal. #figure(figph[two shaded areas], alt: "two shaded areas", caption: none) #math.equation(block: false, alt: "A sub 1")[$A_(1)$] is the area of a square minus the area of two triangles: #math.equation(block: true, alt: "x squared minus 2 open parenthesis the fraction 1 over 2 y times y close parenthesis equals x squared minus y squared")[$x^(2) − 2 ( display(frac(1, 2)) y ⋅ y ) = x^(2) − y^(2)$] #figure(figph[two shaded areas], alt: "two shaded areas", caption: none) For problems 37-46, + Find the coordinates of the vertex and the intercepts. + Sketch the graph. #math.equation(block: true, alt: "y equals the fraction 1 over 2 x squared")[$y = display(frac(1, 2)) x^(2)$] + Vertex and intercepts are all #math.equation(block: false, alt: "open parenthesis 0 , 0 close parenthesis")[$( 0 , 0 )$]. + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals x squared minus 4")[$y = x^(2) − 4$] #math.equation(block: true, alt: "y equals x squared minus 9 x")[$y = x^(2) − 9 x$] + Vertex #math.equation(block: false, alt: "open parenthesis the fraction 9 over 2 , the fraction minus 81 over 4 close parenthesis")[$( display(frac(9, 2)) , display(frac(− 81, 4)) )$]; #math.equation(block: false, alt: "x")[$x$]-intercepts #math.equation(block: false, alt: "open parenthesis 9 , 0 close parenthesis")[$( 9 , 0 )$] and #math.equation(block: false, alt: "open parenthesis 0 , 0 close parenthesis")[$( 0 , 0 )$]; #math.equation(block: false, alt: "y")[$y$]-intercept #math.equation(block: false, alt: "open parenthesis 0 , 0 close parenthesis")[$( 0 , 0 )$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals minus 2 x squared minus 4 x")[$y = − 2 x^(2) − 4 x$] #math.equation(block: true, alt: "y equals x squared plus x minus 6")[$y = x^(2) + x − 6$] + Vertex #math.equation(block: false, alt: "open parenthesis the fraction minus 1 over 2 , the fraction minus 25 over 4 close parenthesis")[$( display(frac(− 1, 2)) , display(frac(− 25, 4)) )$]; #math.equation(block: false, alt: "x")[$x$]-intercepts #math.equation(block: false, alt: "open parenthesis minus 3 , 0 close parenthesis")[$( − 3 , 0 )$] and #math.equation(block: false, alt: "open parenthesis 2 , 0 close parenthesis")[$( 2 , 0 )$]; #math.equation(block: false, alt: "y")[$y$]-intercept #math.equation(block: false, alt: "open parenthesis 0 , minus 6 close parenthesis")[$( 0 , − 6 )$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals x squared minus 3 x plus 4")[$y = x^(2) − 3 x + 4$] #math.equation(block: true, alt: "y equals 8 minus x minus 2 x squared")[$y = 8 − x − 2 x^(2)$] + Vertex #math.equation(block: false, alt: "open parenthesis the fraction minus 1 over 4 , the fraction 65 over 8 close parenthesis")[$( display(frac(− 1, 4)) , display(frac(65, 8)) )$]; #math.equation(block: false, alt: "x")[$x$]-intercepts #math.equation(block: false, alt: "open parenthesis the fraction minus 1 plus or minus the square root of 65 over 4 , 0 close parenthesis")[$( display(frac(− 1 ± sqrt(65), 4)) , 0 )$]; #math.equation(block: false, alt: "y")[$y$]-intercept #math.equation(block: false, alt: "open parenthesis 0 , 8 close parenthesis")[$( 0 , 8 )$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals minus 2 x squared plus x minus 4")[$y = − 2 x^(2) + x − 4$] #math.equation(block: true, alt: "y equals x squared minus x minus 9")[$y = x^(2) − x − 9$] + Vertex #math.equation(block: false, alt: "open parenthesis the fraction 1 over 2 , the fraction minus 37 over 4 close parenthesis")[$( display(frac(1, 2)) , display(frac(− 37, 4)) )$]; #math.equation(block: false, alt: "x")[$x$]-intercepts #math.equation(block: false, alt: "open parenthesis the fraction 1 plus or minus the square root of 37 over 2 , 0 close parenthesis")[$( display(frac(1 ± sqrt(37), 2)) , 0 )$]; #math.equation(block: false, alt: "y")[$y$]-intercept #math.equation(block: false, alt: "open parenthesis 0 , minus 9 close parenthesis")[$( 0 , − 9 )$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals minus x squared plus 2 x plus 4")[$y = − x^(2) + 2 x + 4$] For problems 47-48, use the discriminant to determine how many #math.equation(block: false, alt: "x")[$x$]-intercepts the graph has. #math.equation(block: true, alt: "y equals minus 2 x squared plus 5 x minus 1")[$y = − 2 x^(2) + 5 x − 1$] Two #math.equation(block: true, alt: "y equals minus 12 minus 3 x plus 4 x squared")[$y = − 12 − 3 x + 4 x^(2)$] For Problems 49-52, use the discriminant to determine the nature of the solution of each equation. #math.equation(block: true, alt: "4 x squared minus 12 x plus 9 equals 0")[$4 x^(2) − 12 x + 9 = 0$] One rational solution #math.equation(block: true, alt: "2 t squared plus 6 t plus 5 equals 0")[$2 t^(2) + 6 t + 5 = 0$] #math.equation(block: true, alt: "2 y squared equals 3 y minus 4")[$2 y^(2) = 3 y − 4$] No real solutions #math.equation(block: true, alt: "the fraction x squared over 4 equals x plus the fraction 5 over 4")[$display(frac(x^(2), 4)) = x + display(frac(5, 4))$] The total profit Kiyoshi makes from producing and selling #math.equation(block: false, alt: "x")[$x$] floral arrangements is #math.equation(block: true, alt: "P open parenthesis x close parenthesis equals minus 0.4 x squared plus 36 x minus 400")[$P ( x ) = − 0.4 x^(2) + 36 x − 400$] + How many floral arrangements should Kiyoshi produce and sell to maximize his profit? What is his maximum profit? + Verify your answers on a graph. + #math.equation(block: false, alt: "45")[$45$]; \$#math.equation(block: false, alt: "410")[$410$] + #figure(figph[parabola], alt: "parabola", caption: none) Lightning does about one billion dollars damage annually in the United States and kills 85 people. To study lightning, meteorologists fire small rockets at passing thunderclouds to induce lightning bolts. The rocket trails a thin copper wire that is vaporized by the lightning, leaving a plasma channel that carries the current to the grounding point. The rocket boosts the wire to a height of #math.equation(block: false, alt: "250")[$250$] meters, and #math.equation(block: false, alt: "t")[$t$] seconds later, its height is given in meters by #math.equation(block: true, alt: "h open parenthesis t close parenthesis equals minus 4.9 t squared plus 32 t plus 250")[$h ( t ) = − 4.9 t^(2) + 32 t + 250$] . + When does the rocket reach its maximum height? What is the maximum height? + Verify your answers on a graph. A beekeeper has beehives distributed over #math.equation(block: false, alt: "60")[$60$] square miles of pastureland. When she places #math.equation(block: false, alt: "4")[$4$] hives per square mile, each hive produces about #math.equation(block: false, alt: "32")[$32$] pints of honey per year. For each additional hive per square mile, honey production drops by #math.equation(block: false, alt: "4")[$4$] pints per hive. + Write a function for the total production of honey, in pints, in terms of the number of additional hives per square mile. + How many additional hives per square mile should the beekeeper install in order to maximize honey production? + #math.equation(block: false, alt: "y equals 60 open parenthesis 4 plus x close parenthesis open parenthesis 32 minus 4 x close parenthesis")[$y = 60 ( 4 + x ) ( 32 − 4 x )$] + #math.equation(block: false, alt: "2")[$2$] A small company manufactures radios. When it charges \$#math.equation(block: false, alt: "20")[$20$] for a radio, it sells #math.equation(block: false, alt: "500")[$500$] radios per month. For each dollar the price is increased, #math.equation(block: false, alt: "10")[$10$] fewer radios are sold per month. + Write a function for the monthly revenue in terms of the price increase over \$#math.equation(block: false, alt: "20")[$20$]. + What should the company charge for a radio in order to maximize its monthly revenue? For Problems 57–60, + Find all values of #math.equation(block: false, alt: "x")[$x$] for which #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$]. + Find all values of #math.equation(block: false, alt: "x")[$x$] for which #math.equation(block: false, alt: "g open parenthesis x close parenthesis equals 0")[$g ( x ) = 0$]. + Find all values of #math.equation(block: false, alt: "x")[$x$] for which #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals g open parenthesis x close parenthesis")[$f ( x ) = g ( x )$]. + Graph each pair of functions in the same window, then sketch the graph on paper. Illustrate your answers to (a)–(c) as points on the graph. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 2 x squared plus 3 x")[$f ( x ) = 2 x^(2) + 3 x$], #math.equation(block: true, alt: "g open parenthesis x close parenthesis equals 5 minus 6 x")[$" " g ( x ) = 5 − 6 x$] + #math.equation(block: false, alt: "0 , the fraction minus 3 over 2")[$0 , " " display(frac(− 3, 2))$] + #math.equation(block: false, alt: "the fraction 5 over 6")[$display(frac(5, 6))$] + #math.equation(block: false, alt: "minus 5 , the fraction 1 over 2")[$− 5 , " " display(frac(1, 2))$] + #figure(figph[parabola and line], alt: "parabola and line", caption: none) #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 3 x squared minus 6 x")[$f ( x ) = 3 x^(2) − 6 x$], #math.equation(block: true, alt: "g open parenthesis x close parenthesis equals 8 plus 4 x")[$" " g ( x ) = 8 + 4 x$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 2 x")[$f ( x ) = 2 x^(2) − 2 x$], #math.equation(block: true, alt: "g open parenthesis x close parenthesis equals x squared plus 3")[$" " g ( x ) = x^(2) + 3$] + #math.equation(block: false, alt: "0 , 1")[$0 , " " 1$] + None + #math.equation(block: false, alt: "minus 1 , 3")[$− 1 , " " 3$] + #figure(figph[two parabolas], alt: "two parabolas", caption: none) #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 4 x plus 6")[$f ( x ) = x^(2) + 4 x + 6$], #math.equation(block: true, alt: "g open parenthesis x close parenthesis equals 4 minus x squared")[$" " g ( x ) = 4 − x^(2)$] For Problems 61–66, solve the inequality algebraically, and give your answers in interval notation. Verify your solutions by graphing. #math.equation(block: true, alt: "open parenthesis x minus 3 close parenthesis open parenthesis x plus 2 close parenthesis greater than 0")[$( x − 3 ) ( x + 2 ) > 0$] #math.equation(block: true, alt: "open parenthesis minus ∞ , minus 2 close parenthesis union open parenthesis 3 , ∞ close parenthesis")[$( − upright(∞) , − 2 ) ∪ ( 3 , upright(∞) )$] #figure(figph[quadratic inequality], alt: "quadratic inequality", caption: none) #math.equation(block: true, alt: "y squared minus y minus 12 less than or equal to 0")[$y^(2) − y − 12 ≤ 0$] #math.equation(block: true, alt: "2 y squared minus y less than or equal to 3")[$2 y^(2) − y ≤ 3$] #math.equation(block: true, alt: "open bracket minus 1 , the fraction 3 over 2 close bracket")[$[ − 1 , display(frac(3, 2)) ]$] #figure(figph[quadratic inequality], alt: "quadratic inequality", caption: none) #math.equation(block: true, alt: "3 z squared minus 5 z greater than 2")[$3 z^(2) − 5 z > 2$] #math.equation(block: true, alt: "s squared less than or equal to 4")[$s^(2) ≤ 4$] #math.equation(block: true, alt: "open bracket minus 2 , 2 close bracket")[$[ − 2 , 2 ]$] #figure(figph[quadratic inequality], alt: "quadratic inequality", caption: none) #math.equation(block: true, alt: "4 t squared greater than 12")[$4 t^(2) > 12$] The Sub Station sells #math.equation(block: false, alt: "220 minus the fraction 1 over 4 p")[$220 − display(frac(1, 4)) p$] submarine sandwiches at lunchtime if it sells them at #math.equation(block: false, alt: "p")[$p$] cents each. + Write a function for the Sub Station's daily revenue in terms of #math.equation(block: false, alt: "p")[$p$]. + What prices can the Sub Station charge if it wants to keep its daily revenue from subs over #math.equation(block: false, alt: "$ 480")[$\$ 480$]? (Remember to convert #math.equation(block: false, alt: "$ 480")[$\$ 480$] to cents.) + #math.equation(block: false, alt: "R equals p open parenthesis 220 minus the fraction 1 over 4 p close parenthesis")[$R = p ( 220 − display(frac(1, 4)) p )$] + Between \$#math.equation(block: false, alt: "4.00")[$4.00$] and \$#math.equation(block: false, alt: "4.80")[$4.80$] When it charges #math.equation(block: false, alt: "p")[$p$] dollars for an electric screwdriver, Handy Hardware will sell #math.equation(block: false, alt: "30 minus the fraction 1 over 2 p")[$30 − display(frac(1, 2)) p$] screwdrivers per month. + Write a function in terms of #math.equation(block: false, alt: "p")[$p$] for Handy Hardware's monthly revenue from electric screwdrivers. + How much should Handy charge per screwdriver if it wants the monthly revenue from the screwdrivers to be over \$#math.equation(block: false, alt: "400")[$400$]? For Problems 697–6, solve the system algebraically, and verify your solution with a graph. #math.equation(block: true, alt: "y plus x squared, equals 4; y, equals 3")[$y + x^(2) & = 4 \ y & = 3$] #math.equation(block: true, alt: "open parenthesis 1 , 3 close parenthesis")[$( 1 , 3 )$], #math.equation(block: true, alt: "open parenthesis minus 1 , 3 close parenthesis")[$" " ( − 1 , 3 )$] #figure(figph[parabola and horizontal line], alt: "parabola and horizontal line", caption: none) #math.equation(block: true, alt: "y, equals 3 minus x squared; 5 x plus y, equals 7")[$y & = 3 − x^(2) \ 5 x + y & = 7$] #math.equation(block: true, alt: "y, equals x squared minus 5; y, equals 4 x")[$y & = x^(2) − 5 \ y & = 4 x$] #math.equation(block: true, alt: "open parenthesis minus 1 , minus 4 close parenthesis")[$( − 1 , − 4 )$], #math.equation(block: true, alt: "open parenthesis 5 , 20 close parenthesis")[$" " ( 5 , 20 )$] #figure(figph[parabola and line], alt: "parabola and line", caption: none) #math.equation(block: true, alt: "y, equals x squared minus 2 x plus 1; y, equals 3 minus x")[$y & = x^(2) − 2 x + 1 \ y & = 3 − x$] #math.equation(block: true, alt: "y, equals x squared minus 6 x plus 20; y, equals 2 x squared minus 2 x minus 25")[$y & = x^(2) − 6 x + 20 \ y & = 2 x^(2) − 2 x − 25$] #math.equation(block: true, alt: "open parenthesis minus 9 , 155 close parenthesis")[$( − 9 , 155 )$], #math.equation(block: true, alt: "open parenthesis 5 , 15 close parenthesis")[$" " ( 5 , 15 )$] #figure(figph[two parabolas], alt: "two parabolas", caption: none) #math.equation(block: true, alt: "y, equals x squared minus 5 x minus 28; y, equals minus x squared plus 4 x plus 28")[$y & = x^(2) − 5 x − 28 \ y & = − x^(2) + 4 x + 28$] #math.equation(block: true, alt: "y, equals the fraction 1 over 2 x squared minus the fraction 3 over 2 x; y, equals minus the fraction 1 over 2 x squared plus the fraction 1 over 2 x plus 3")[$y & = frac(1, 2) x^(2) − frac(3, 2) x \ y & = − frac(1, 2) x^(2) + frac(1, 2) x + 3$] #math.equation(block: true, alt: "open parenthesis minus 1 , 2 close parenthesis")[$( − 1 , 2 )$], #math.equation(block: true, alt: "open parenthesis 3 , 0 close parenthesis")[$" " ( 3 , 0 )$] #figure(figph[two parabolas], alt: "two parabolas", caption: none) #math.equation(block: true, alt: "y, equals 2 x squared plus 5 x minus 3; y, equals x squared plus 4 x minus 1")[$y & = 2 x^(2) + 5 x − 3 \ y & = x^(2) + 4 x − 1$] Find values of #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$] contains the points #math.equation(block: false, alt: "open parenthesis minus 1 , minus 4 close parenthesis")[$( − 1 , − 4 )$], #math.equation(block: false, alt: "open parenthesis 0 , minus 6 close parenthesis")[$( 0 , − 6 )$], and #math.equation(block: false, alt: "open parenthesis 4 , 6 close parenthesis")[$( 4 , 6 )$]. #math.equation(block: true, alt: "a equals 1")[$a = 1$], #math.equation(block: true, alt: "b equals minus 1")[$" " b = − 1$], #math.equation(block: true, alt: "c equals minus 6")[$" " c = − 6$] + Find values of #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$] contains the points #math.equation(block: false, alt: "open parenthesis 0 , minus 2 close parenthesis")[$( 0 , − 2 )$], #math.equation(block: false, alt: "open parenthesis minus 6 , 1 close parenthesis")[$( − 6 , 1 )$], and #math.equation(block: false, alt: "open parenthesis 4 , 6 close parenthesis")[$( 4 , 6 )$]. + Plot the data points and sketch the graph on the grid. Find a parabola that fits the following data points. #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$x$]], [#math.equation(block: false, alt: "minus 8")[$− 8$]], [#math.equation(block: false, alt: "minus 4")[$− 4$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "4")[$4$]]), [#math.equation(block: false, alt: "y")[$y$]], [#math.equation(block: false, alt: "10")[$10$]], [#math.equation(block: false, alt: "18")[$18$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "minus 14")[$− 14$]], )) #math.equation(block: true, alt: "p open parenthesis x close parenthesis equals the fraction minus 1 over 2 x squared minus 4 x plus 10")[$p ( x ) = display(frac(− 1, 2)) x^(2) − 4 x + 10$] Find a parabola that fits the following data points. #figure(table( columns: 5, align: left, inset: 6pt, table.header([#math.equation(block: false, alt: "x")[$x$]], [#math.equation(block: false, alt: "minus 3")[$− 3$]], [#math.equation(block: false, alt: "0")[$0$]], [#math.equation(block: false, alt: "2")[$2$]], [#math.equation(block: false, alt: "4")[$4$]]), [#math.equation(block: false, alt: "y")[$y$]], [#math.equation(block: false, alt: "minus 46")[$− 46$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "minus 6")[$− 6$]], [#math.equation(block: false, alt: "minus 60")[$− 60$]], )) Find the equation for a parabola that has a vertex of #math.equation(block: false, alt: "open parenthesis 15 , minus 6 close parenthesis")[$( 15 , − 6 )$] and passes through the point #math.equation(block: false, alt: "open parenthesis 3 , 22.8 close parenthesis")[$( 3 , 22.8 )$]. #math.equation(block: true, alt: "y equals 0.2 open parenthesis x minus 15 close parenthesis squared minus 6")[$y = 0.2 ( x − 15 )^(2) − 6$] Find the equation for a parabola that has a vertex of #math.equation(block: false, alt: "open parenthesis minus 3 , minus 8 close parenthesis")[$( − 3 , − 8 )$] and passes through the point #math.equation(block: false, alt: "open parenthesis 6 , 12.25 close parenthesis")[$( 6 , 12.25 )$]. For Problems 83–86, + Write the equation in vertex form. + Use transformations to sketch the graph. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared minus 24 x plus 44")[$f ( x ) = x^(2) − 24 x + 44$] + #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals open parenthesis x minus 12 close parenthesis squared minus 100")[$f ( x ) = ( x − 12 )^(2) − 100$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "g open parenthesis x close parenthesis equals x squared plus 30 x plus 300")[$g ( x ) = x^(2) + 30 x + 300$] #math.equation(block: true, alt: "y equals the fraction 1 over 3 x squared plus 2 x plus 1")[$y = display(frac(1, 3)) x^(2) + 2 x + 1$] + #math.equation(block: false, alt: "y equals the fraction 1 over 3 open parenthesis x plus 3 close parenthesis squared minus 2")[$y = display(frac(1, 3)) ( x + 3 )^(2) − 2$] + #figure(figph[parabola], alt: "parabola", caption: none) #math.equation(block: true, alt: "y equals minus 2 x squared plus 4 x plus 3")[$y = − 2 x^(2) + 4 x + 3$] The height of a cannonball was observed at #math.equation(block: false, alt: "0.2")[$0.2$]-second intervals after the cannon was fired, and the data were recorded in the table. #figure(table( columns: 11, align: left, inset: 6pt, table.header([Time (seconds)], [#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$]], [#math.equation(block: false, alt: "1.4")[$1.4$]], [#math.equation(block: false, alt: "1.6")[$1.6$]], [#math.equation(block: false, alt: "1.8")[$1.8$]], [#math.equation(block: false, alt: "2.0")[$2.0$]]), [Height (meters)], [#math.equation(block: false, alt: "10.2")[$10.2$]], [#math.equation(block: false, alt: "19.2")[$19.2$]], [#math.equation(block: false, alt: "27.8")[$27.8$]], [#math.equation(block: false, alt: "35.9")[$35.9$]], [#math.equation(block: false, alt: "43.7")[$43.7$]], [#math.equation(block: false, alt: "51.1")[$51.1$]], [#math.equation(block: false, alt: "58.1")[$58.1$]], [#math.equation(block: false, alt: "64.7")[$64.7$]], [#math.equation(block: false, alt: "71.0")[$71.0$]], [#math.equation(block: false, alt: "76.8")[$76.8$]], )) + 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 cannonball at #math.equation(block: false, alt: "3")[$3$] seconds and at #math.equation(block: false, alt: "4")[$4$] 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 cannonball at #math.equation(block: false, alt: "3")[$3$] seconds and at #math.equation(block: false, alt: "4")[$4$] 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 cannonball, linear or quadratic? Why? + #math.equation(block: false, alt: "h equals 36.98 t plus 5.17")[$h = 36.98 t + 5.17$] + #math.equation(block: false, alt: "116.1")[$116.1$] m, #math.equation(block: false, alt: "153.1")[$" " 153.1$] m + #figure(figph[scatterplot and regression line], alt: "scatterplot and regression line", caption: none) + #math.equation(block: false, alt: "h equals minus 4.858 t squared plus 47.67 t plus 0.89")[$h = − 4.858 t^(2) + 47.67 t + 0.89$] + #math.equation(block: false, alt: "100.2")[$100.2$] m, #math.equation(block: false, alt: "113.9")[$" " 113.9$] m + #figure(figph[scatterplot and regression parabola], alt: "scatterplot and regression parabola", caption: none) + Quadratic: Gravity will slow the cannonball, giving the graph a concave down shape. Max took a sequence of photographs of an explosion spaced at equal time intervals. From the photographs, he was able to estimate the height and vertical velocity of some debris from the explosion, as shown in the table. (Negative velocities indicate that the debris is falling back to Earth.) #figure(table( columns: 7, align: left, inset: 6pt, table.header([Velocity #linebreak() (meters/second) #linebreak()], [#math.equation(block: false, alt: "67")[$67$]], [#math.equation(block: false, alt: "47")[$47$]], [#math.equation(block: false, alt: "27")[$27$]], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "minus 12")[$− 12$]], [#math.equation(block: false, alt: "minus 31")[$− 31$]]), [Height #linebreak() (meters) #linebreak()], [#math.equation(block: false, alt: "8")[$8$]], [#math.equation(block: false, alt: "122")[$122$]], [#math.equation(block: false, alt: "196")[$196$]], [#math.equation(block: false, alt: "232")[$232$]], [#math.equation(block: false, alt: "228")[$228$]], [#math.equation(block: false, alt: "185")[$185$]], )) + Enter the data into your calculator and create a scatterplot. Fit a quadratic regression equation to the data, then 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? What should the velocity of the debris be at the maximum height of the debris?