#set document(title: "9.6 Graph Quadratic Functions Using Properties", 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")) == 9.6#h(0.6em)Graph Quadratic Functions Using Properties #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Before you get started, take this readiness quiz. Graph the function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared")[$f ( x ) = x^(2)$] by plotting points. #linebreak() If you missed this problem, review . #solutionbox[ #figure(figph[An upward-opening parabola graphed on a Cartesian coordinate system, with its vertex at (0,0) and key points highlighted.], alt: "An upward-opening parabola graphed on a Cartesian coordinate system, with its vertex at (0,0) and key points highlighted.", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve: #math.equation(block: false, alt: "2 x squared plus 3 x minus 2 equals 0 .")[$2 x^(2) + 3 x − 2 = 0 .$] #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "x equals the fraction 1 over 2 , x equals minus 2")[$x = frac(1, 2) , #h(0.2em) x = − 2$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Evaluate #math.equation(block: false, alt: "minus the fraction b over 2 a")[$− frac(b, 2 a)$] when #emph[a] = 3 and #emph[b] = −6. #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "1")[$1$] ] ] === Recognize the Graph of a Quadratic Function Previously we very briefly looked at the function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared")[$f ( x ) = x^(2)$], which we called the square function. It was one of the first non-linear functions we looked at. Now we will graph functions of 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$] if #math.equation(block: false, alt: "a not equal to 0 .")[$a ≠ 0 .$] We call this kind of function a quadratic function. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Quadratic Function] A #strong[quadratic function], where #emph[a], #emph[b], and #emph[c] are real numbers and #math.equation(block: false, alt: "a not equal to 0 ,")[$a ≠ 0 ,$] is a function of the form #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals a x squared plus b x plus c")[$f ( x ) = a x^(2) + b x + c$] ] We graphed the quadratic function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared")[$f ( x ) = x^(2)$] by plotting points. #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 2 to 6. The parabola has a vertex at (0, 0) and also passes through the points (-2, 4), (-1, 1), (1, 1), and (2, 4). To the right of the graph is a table of values with 3 columns. The first row is a header row and labels each column, “x”, “f of x equals x squared”, and “the order pair x, f of x.” In row 2, x equals negative 3, f of x equals x squared is 9 and the ordered pair x, f of x is the ordered pair negative 3, 9. In row 3, x equals negative 2, f of x equals x squared is 4 and the ordered pair x, f of x is the ordered pair negative 2, 4. In row 4, x equals negative 1, f of x equals x squared is 1 and the ordered pair x, f of x is the ordered pair negative 1, 1. In row 5, x equals 0, f of x equals x squared is 0 and the ordered pair x, f of x is the ordered pair 0, 0. In row 6, x equals 1, f of x equals x squared is 1 and the ordered pair x, f of x is the ordered pair 1, 1. In row 7, x equals 2, f of x equals x squared is 4 and the ordered pair x, f of x is the ordered pair 2, 4. In row 8, x equals 3, f of x equals x squared is 9 and the ordered pair x, f of x is the ordered pair 3, 9.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 2 to 6. The parabola has a vertex at (0, 0) and also passes through the points (-2, 4), (-1, 1), (1, 1), and (2, 4). To the right of the graph is a table of values with 3 columns. The first row is a header row and labels each column, “x”, “f of x equals x squared”, and “the order pair x, f of x.” In row 2, x equals negative 3, f of x equals x squared is 9 and the ordered pair x, f of x is the ordered pair negative 3, 9. In row 3, x equals negative 2, f of x equals x squared is 4 and the ordered pair x, f of x is the ordered pair negative 2, 4. In row 4, x equals negative 1, f of x equals x squared is 1 and the ordered pair x, f of x is the ordered pair negative 1, 1. In row 5, x equals 0, f of x equals x squared is 0 and the ordered pair x, f of x is the ordered pair 0, 0. In row 6, x equals 1, f of x equals x squared is 1 and the ordered pair x, f of x is the ordered pair 1, 1. In row 7, x equals 2, f of x equals x squared is 4 and the ordered pair x, f of x is the ordered pair 2, 4. In row 8, x equals 3, f of x equals x squared is 9 and the ordered pair x, f of x is the ordered pair 3, 9.", caption: none) Every quadratic function has a graph that looks like this. We call this figure a #strong[parabola]. Let’s practice graphing a parabola by plotting a few points. #examplebox("Example 1")[][ Graph #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 1 .")[$f ( x ) = x^(2) − 1 .$] #solutionbox[ We will graph the function by plotting points. #figure(table( columns: 2, align: left, inset: 6pt, table.header([Choose integer values for #emph[x], #linebreak() substitute them into the equation #linebreak() and simplify to find #math.equation(block: false, alt: "f open parenthesis x close parenthesis")[$f ( x )$]. #linebreak() #linebreak() Record the values of the ordered pairs in the chart.], [#figure(figph[A table displays values for the function f(x) = x^2 - 1. For x=0, f(x)=-1. For x=1 and x=-1, f(x)=0. For x=2 and x=-2, f(x)=3.], alt: "A table displays values for the function f(x) = x^2 - 1. For x=0, f(x)=-1. For x=1 and x=-1, f(x)=0. For x=2 and x=-2, f(x)=3.", caption: none)]), [Plot the points, and then connect #linebreak() them with a smooth curve. The #linebreak() result will be the graph of the #linebreak() function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 1")[$f ( x ) = x^(2) − 1$].], [#figure(figph[A quadratic function graphed as an upward-opening parabola on a Cartesian plane, featuring highlighted points at (-2,3), (-1,0), (0,-1), (1,0), and (2,3).], alt: "A quadratic function graphed as an upward-opening parabola on a Cartesian plane, featuring highlighted points at (-2,3), (-1,0), (0,-1), (1,0), and (2,3).", caption: none)], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals − x squared .")[$f ( x ) = "−" x^(2) .$]. #solutionbox[ #figure(figph[This figure shows an downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 0).], alt: "This figure shows an downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 0).", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared plus 1 .")[$f ( x ) = x^(2) + 1 .$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, −1).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, −1).", caption: none) ] ] All graphs of quadratic functions of the form #emph[f] (#emph[x]) = #emph[ax]#super[2] + #emph[bx] + #emph[c] are parabolas that open upward or downward. #figure(figph[This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The general form for the equation of this graph is f of x equals a x squared plus b x plus c. The equation of this parabola is x squared plus 4 x plus 3. The leading coefficient, a, is greater than 0, so this parabola opens upward.The graph on the right shows an downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The general form for the equation of this graph is f of x equals a x squared plus b x plus c. The equation of this parabola is negative x squared plus 4 x plus 3. The leading coefficient, a, is less than 0, so this parabola opens downward.], alt: "This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The general form for the equation of this graph is f of x equals a x squared plus b x plus c. The equation of this parabola is x squared plus 4 x plus 3. The leading coefficient, a, is greater than 0, so this parabola opens upward.The graph on the right shows an downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The general form for the equation of this graph is f of x equals a x squared plus b x plus c. The equation of this parabola is negative x squared plus 4 x plus 3. The leading coefficient, a, is less than 0, so this parabola opens downward.", caption: none) Notice that the only difference in the two functions is the negative sign before the quadratic term (#emph[x]#super[2] in the equation of the graph in ). When the quadratic term, is positive, the parabola opens upward, and when the quadratic term is negative, the parabola opens downward. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Parabola Orientation] For the graph of the quadratic function #emph[f] (#emph[x]) = #emph[ax]#super[2] + #emph[bx] + #emph[c], if #figure(figph[This images shows a bulleted list. The first bullet notes that, if a is greater than 0, then the parabola opens upward and shows an image of an upward-opening parabola. The second bullet notes that, if a is less than 0, then the parabola opens downward and shows an image of a downward-opening parabola.], alt: "This images shows a bulleted list. The first bullet notes that, if a is greater than 0, then the parabola opens upward and shows an image of an upward-opening parabola. The second bullet notes that, if a is less than 0, then the parabola opens downward and shows an image of a downward-opening parabola.", caption: none) ] #examplebox("Example 2")[][ Determine whether each parabola opens upward or downward: ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −3 x squared plus 2 x minus 4")[$f ( x ) = −3 x^(2) + 2 x − 4$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 6 x squared plus 7 x minus 9 .")[$f ( x ) = 6 x^(2) + 7 x − 9 .$] #solutionbox[ ⓐ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Find the value of “#emph[a]”.], [#figure(figph[A mathematical image shows the general quadratic equation f(x) = ax^2 + bx + c, followed by a specific instance f(x) = -3x^2 + 2x - 4, and then explicitly states that a = -3.], alt: "A mathematical image shows the general quadratic equation f(x) = ax^2 + bx + c, followed by a specific instance f(x) = -3x^2 + 2x - 4, and then explicitly states that a = -3.", caption: none)]), [], [Since the “#emph[a]” is negative, the parabola will open downward.], )) ⓑ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Find the value of “#emph[a]”.], [#figure(figph[The image displays the general form of a quadratic function, f(x) = ax^2 + bx + c, followed by a specific example, f(x) = 6x^2 + 7x - 9, and identifies the value of 'a' as 6.], alt: "The image displays the general form of a quadratic function, f(x) = ax^2 + bx + c, followed by a specific example, f(x) = 6x^2 + 7x - 9, and identifies the value of 'a' as 6.", caption: none)]), [], [Since the “#emph[a]” is positive, the parabola will open upward.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Determine whether the graph of each function is a parabola that opens upward or downward: ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 2 x squared plus 5 x minus 2")[$f ( x ) = 2 x^(2) + 5 x − 2$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −3 x squared minus 4 x plus 7 .")[$f ( x ) = −3 x^(2) − 4 x + 7 .$] #solutionbox[ ⓐ up; ⓑ down ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Determine whether the graph of each function is a parabola that opens upward or downward: ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −2 x squared minus 2 x minus 3")[$f ( x ) = −2 x^(2) − 2 x − 3$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 5 x squared minus 2 x minus 1 .")[$f ( x ) = 5 x^(2) − 2 x − 1 .$] #solutionbox[ ⓐ down; ⓑ up ] ] === Find the Axis of Symmetry and Vertex of a Parabola Look again at . Do you see that we could fold each parabola in half and then one side would lie on top of the other? The ‘fold line’ is a line of symmetry. We call it the #strong[axis of symmetry] of the parabola. We show the same two graphs again with the axis of symmetry. #figure(figph[This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The equation of this parabola is x squared plus 4 x plus 3. The vertical line passes through the point (negative 2, 0) and has the equation x equals negative 2. The graph on the right shows an downward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The equation of this parabola is negative x squared plus 4 x plus 3. The vertical line passes through the point (2, 0) and has the equation x equals 2.], alt: "This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The equation of this parabola is x squared plus 4 x plus 3. The vertical line passes through the point (negative 2, 0) and has the equation x equals negative 2. The graph on the right shows an downward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The equation of this parabola is negative x squared plus 4 x plus 3. The vertical line passes through the point (2, 0) and has the equation x equals 2.", caption: none) The equation of the axis of symmetry can be derived by using the Quadratic Formula. We will omit the derivation here and proceed directly to using the result. The equation of the axis of symmetry of the graph of #emph[f] (#emph[x]) = #emph[ax]#super[2] + #emph[bx] + #emph[c] is #math.equation(block: false, alt: "x equals minus the fraction b over 2 a .")[$x = − frac(b, 2 a) .$] So to find the equation of symmetry of each of the parabolas we graphed above, we will substitute into the formula #math.equation(block: false, alt: "x equals minus the fraction b over 2 a .")[$x = − frac(b, 2 a) .$] #figure(figph[Compare the function f of x equals x squared plus 4 x plus 3 to the standard form of a quadratic function, f of x equals a x squared plus b x plus c. The axis of symmetry is the line x equals negative b divided by the product 2 a. Substituting for b and a yields x equals negative 4 divided by the product 2 times 1. The axis of symmetry equals negative 2. Next, compare the function f of x equals negative x squared plus 4 x plus 3 to the standard form of a quadratic function, f of x equals a x squared plus b x plus c. The axis of symmetry is the line x equals negative b divided by the product 2 a. Substituting for b and a yields x equals negative 4 divided by the product 2 times negative 1. The axis of symmetry equals 2.], alt: "Compare the function f of x equals x squared plus 4 x plus 3 to the standard form of a quadratic function, f of x equals a x squared plus b x plus c. The axis of symmetry is the line x equals negative b divided by the product 2 a. Substituting for b and a yields x equals negative 4 divided by the product 2 times 1. The axis of symmetry equals negative 2. Next, compare the function f of x equals negative x squared plus 4 x plus 3 to the standard form of a quadratic function, f of x equals a x squared plus b x plus c. The axis of symmetry is the line x equals negative b divided by the product 2 a. Substituting for b and a yields x equals negative 4 divided by the product 2 times negative 1. The axis of symmetry equals 2.", caption: none) Notice that these are the equations of the dashed blue lines on the graphs. The point on the parabola that is the lowest (parabola opens up), or the highest (parabola opens down), lies on the axis of symmetry. This point is called the #strong[vertex] of the parabola. We can easily find the coordinates of the vertex, because we know it is on the axis of symmetry. This means its #linebreak() #emph[x]-coordinate is #math.equation(block: false, alt: "minus the fraction b over 2 a .")[$− frac(b, 2 a) .$] To find the #emph[y]-coordinate of the vertex we substitute the value of the #emph[x]-coordinate into the quadratic function. #figure(figph[For the function f of x equals x squared plus 4 x plus 3, the axis of symmetry is x equals negative 2. The vertex is the point on the parabola with x-coordinate negative 2. Substitute x equals negative 2 into the function f of x equals x squared plus 4 x plus 3. F of x equals the square of negative 2 plus 4 times negative 2 plus 3, so f of x equals negative 1. The vertex is the point (negative 2, negative 1). For the function f of x equals negative x squared plus 4 x plus 3, the axis of symmetry is x equals 2. The vertex is the point on the parabola with x-coordinate 2. Substitute x equals 2 into the function f of x equals x squared plus 4 x plus 3. F of x equals 2 squared plus 4 times 2 plus 3, so f of x equals 7. The vertex is the point (2, 7).], alt: "For the function f of x equals x squared plus 4 x plus 3, the axis of symmetry is x equals negative 2. The vertex is the point on the parabola with x-coordinate negative 2. Substitute x equals negative 2 into the function f of x equals x squared plus 4 x plus 3. F of x equals the square of negative 2 plus 4 times negative 2 plus 3, so f of x equals negative 1. The vertex is the point (negative 2, negative 1). For the function f of x equals negative x squared plus 4 x plus 3, the axis of symmetry is x equals 2. The vertex is the point on the parabola with x-coordinate 2. Substitute x equals 2 into the function f of x equals x squared plus 4 x plus 3. F of x equals 2 squared plus 4 times 2 plus 3, so f of x equals 7. The vertex is the point (2, 7).", caption: none) #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Axis of Symmetry and Vertex of a Parabola] The graph of the function #emph[f] (#emph[x]) = #emph[ax]#super[2] + #emph[bx] + #emph[c] is a parabola where: - the axis of symmetry is the vertical line #math.equation(block: false, alt: "x equals minus the fraction b over 2 a .")[$x = − frac(b, 2 a) .$] - the vertex is a point on the axis of symmetry, so its #emph[x]-coordinate is #math.equation(block: false, alt: "minus the fraction b over 2 a .")[$− frac(b, 2 a) .$] - the #emph[y]-coordinate of the vertex is found by substituting #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$] into the quadratic equation. ] #examplebox("Example 3")[][ For the graph of #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 3 x squared minus 6 x plus 2")[$f ( x ) = 3 x^(2) − 6 x + 2$] find: ⓐ the axis of symmetry ⓑ the vertex. #solutionbox[ ⓐ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[The general quadratic equation f(x) = ax^2 + bx + c is shown above a specific example: f(x) = 3x^2 - 6x + 2.], alt: "The general quadratic equation f(x) = ax^2 + bx + c is shown above a specific example: f(x) = 3x^2 - 6x + 2.", caption: none)]), [The axis of symmetry is the vertical line #linebreak() #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$].], [], [Substitute the values of #math.equation(block: false, alt: "a , b")[$a , b$] into the #linebreak() equation.], [#figure(figph[An algebraic equation X = -(-6 / (2 \* 3)) is shown on a white background.], alt: "An algebraic equation X = -(-6 / (2 * 3)) is shown on a white background.", caption: none)], [Simplify.], [#figure(figph[The image displays the mathematical equation 'x = 1' in black text on a plain white background, indicating that the variable x has a value of one.], alt: "The image displays the mathematical equation 'x = 1' in black text on a plain white background, indicating that the variable x has a value of one.", caption: none)], [], [The axis of symmetry is the line #math.equation(block: false, alt: "x equals 1")[$x = 1$].], )) ⓑ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[A mathematical equation is presented, showing a quadratic function written in standard form: f(x) = 3x^2 - 6x + 2.], alt: "A mathematical equation is presented, showing a quadratic function written in standard form: f(x) = 3x^2 - 6x + 2.", caption: none)]), [The vertex is a point on the line of #linebreak() symmetry, so its #emph[x]-coordinate will be #linebreak() #math.equation(block: false, alt: "x equals 1")[$x = 1$]. #linebreak() Find #math.equation(block: false, alt: "f open parenthesis 1 close parenthesis")[$f ( 1 )$].], [#figure(figph[The image shows the evaluation of a quadratic function at x=1, represented as f(1) = 3(1)^2 - 6(1) + 2.], alt: "The image shows the evaluation of a quadratic function at x=1, represented as f(1) = 3(1)^2 - 6(1) + 2.", caption: none)], [Simplify.], [#figure(figph[A mathematical equation is displayed: f(1) = 3 \* 1 - 6 + 2, where the number '1' being multiplied by 3 is highlighted in red, indicating a substitution or specific value for calculation.], alt: "A mathematical equation is displayed: f(1) = 3 * 1 - 6 + 2, where the number '1' being multiplied by 3 is highlighted in red, indicating a substitution or specific value for calculation.", caption: none)], [The result is the #emph[y]-coordinate.], [#figure(figph[The mathematical equation f(1) = -1 is displayed in black text against a plain white background.], alt: "The mathematical equation f(1) = -1 is displayed in black text against a plain white background.", caption: none)], [], [The vertex is #math.equation(block: false, alt: "open parenthesis 1 , −1 close parenthesis")[$( 1 , −1 )$].], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ For the graph of #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 8 x plus 1")[$f ( x ) = 2 x^(2) − 8 x + 1$] find: ⓐ the axis of symmetry ⓑ the vertex. #solutionbox[ ⓐ #math.equation(block: false, alt: "x equals 2 ;")[$x = 2 ;$] ⓑ #math.equation(block: false, alt: "open parenthesis 2 , −7 close parenthesis")[$( 2 , −7 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ For the graph of #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 4 x minus 3")[$f ( x ) = 2 x^(2) − 4 x − 3$] find: ⓐ the axis of symmetry ⓑ the vertex. #solutionbox[ ⓐ #math.equation(block: false, alt: "x equals 1 ;")[$x = 1 ;$] ⓑ #math.equation(block: false, alt: "open parenthesis 1 , −5 close parenthesis")[$( 1 , −5 )$] ] ] === Find the Intercepts of a Parabola When we graphed linear equations, we often used the #emph[x]- and #emph[y]-intercepts to help us graph the lines. Finding the coordinates of the intercepts will help us to graph parabolas, too. Remember, at the #emph[y]-intercept the value of #emph[x] is zero. So to find the #emph[y]-intercept, we substitute #emph[x] = 0 into the function. Let’s find the #emph[y]-intercepts of the two parabolas shown. #figure(figph[This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The vertical line is an axis of symmetry for the parabola, and passes through the point (negative 2, 0). It has the equation x equals negative 2. The equation of this parabola is x squared plus 4 x plus 3. When x equals 0, f of 0 equals 0 squared plus 4 times 0 plus 3. F of 0 equals 3. The y-intercept of the graph is the point (0, 3). The graph on the right shows an downward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The vertical line is an axis of symmetry for the parabola and passes through the point (2, 0). It has the equation x equals 2. The equation of this parabola is negative x squared plus 4 x plus 3. When x equals 0, f of 0 equals negative 0 squared plus 4 times 0 plus 3. F of 0 equals 3. The y-intercept of the graph is the point (0, 3).], alt: "This image shows 2 graphs side-by-side. The graph on the left shows an upward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1) and passes through the points (negative 4, 3) and (0, 3). The vertical line is an axis of symmetry for the parabola, and passes through the point (negative 2, 0). It has the equation x equals negative 2. The equation of this parabola is x squared plus 4 x plus 3. When x equals 0, f of 0 equals 0 squared plus 4 times 0 plus 3. F of 0 equals 3. The y-intercept of the graph is the point (0, 3). The graph on the right shows an downward-opening parabola and a dashed vertical line graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7) and passes through the points (0, 3) and (4, 3). The vertical line is an axis of symmetry for the parabola and passes through the point (2, 0). It has the equation x equals 2. The equation of this parabola is negative x squared plus 4 x plus 3. When x equals 0, f of 0 equals negative 0 squared plus 4 times 0 plus 3. F of 0 equals 3. The y-intercept of the graph is the point (0, 3).", caption: none) An #emph[x]-intercept results when the value of #emph[f] (#emph[x]) is zero. To find an #emph[x]-intercept, we let #emph[f] (#emph[x]) = 0. In other words, we will need to solve the equation 0 = #emph[ax]#super[2] + #emph[bx] + #emph[c] for #emph[x]. #math.equation(block: true, alt: "f open parenthesis x close parenthesis, equals, a x squared plus b x plus c; 0, equals, a x squared plus b x plus c")[$f ( x ) & = & a x^(2) + b x + c \ 0 & = & a x^(2) + b x + c$]Solving quadratic equations like this is exactly what we have done earlier in this chapter! We can now find the #emph[x]-intercepts of the two parabolas we looked at. First we will find the #emph[x]-intercepts of the parabola whose function is #emph[f] (#emph[x]) = #emph[x]#super[2] + 4#emph[x] + 3. #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[The quadratic function f(x) = x^2 + 4x + 3 is displayed, representing a parabola in a mathematical context.], alt: "The quadratic function f(x) = x^2 + 4x + 3 is displayed, representing a parabola in a mathematical context.", caption: none)]), [Let #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[The image shows the quadratic equation 0 = x^2 + 4x + 3, presented in a clear and concise format. The number 0 is highlighted in red, emphasizing the equation's form.], alt: "The image shows the quadratic equation 0 = x^2 + 4x + 3, presented in a clear and concise format. The number 0 is highlighted in red, emphasizing the equation's form.", caption: none)], [Factor.], [#figure(figph[A mathematical equation shows 0 equals the product of (x + 1) and (x + 3), representing a quadratic equation in factored form.], alt: "A mathematical equation shows 0 equals the product of (x + 1) and (x + 3), representing a quadratic equation in factored form.", caption: none)], [Use the Zero Product Property.], [#figure(figph[Two linear equations are shown: x + 1 = 0 and x + 3 = 0.], alt: "Two linear equations are shown: x + 1 = 0 and x + 3 = 0.", caption: none)], [Solve.], [#figure(figph[Two mathematical expressions are displayed: x = -1 and x = -3.], alt: "Two mathematical expressions are displayed: x = -1 and x = -3.", caption: none)], [], [The #emph[x]-intercepts are #math.equation(block: false, alt: "open parenthesis −1 , 0 close parenthesis")[$( −1 , 0 )$] and #math.equation(block: false, alt: "open parenthesis −3 , 0 close parenthesis")[$( −3 , 0 )$].], )) Now we will find the #emph[x]-intercepts of the parabola whose function is #emph[f] (#emph[x]) = #emph[−x]#super[2] + 4#emph[x] + 3. #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[The image displays the quadratic function f(x) = -x^2 + 4x + 3 written in a standard mathematical notation on a white background.], alt: "The image displays the quadratic function f(x) = -x^2 + 4x + 3 written in a standard mathematical notation on a white background.", caption: none)]), [Let #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[A mathematical equation is displayed with a red zero, an equals sign, and the expression '-x^2 + 4x + 3' in black on a white background, representing a quadratic equation.], alt: "A mathematical equation is displayed with a red zero, an equals sign, and the expression '-x^2 + 4x + 3' in black on a white background, representing a quadratic equation.", caption: none)], [This quadratic does not factor, so #linebreak() we use the Quadratic Formula.], [#figure(figph[The quadratic formula, x equals negative b plus or minus the square root of b squared minus 4ac, all divided by 2a, for solving quadratic equations.], alt: "The quadratic formula, x equals negative b plus or minus the square root of b squared minus 4ac, all divided by 2a, for solving quadratic equations.", caption: none)], [#math.equation(block: false, alt: "a equals −1 , b equals 4 , c equals 3")[$a = −1 , b = 4 , c = 3$]], [#figure(figph[A step in solving a quadratic equation using the quadratic formula: x = (-4 plus or minus sqrt(4^2 - 4(-1)(3))) / (2(-1)).], alt: "A step in solving a quadratic equation using the quadratic formula: x = (-4 plus or minus sqrt(4^2 - 4(-1)(3))) / (2(-1)).", caption: none)], [Simplify.], [#figure(figph[A mathematical equation is displayed, showing 'x equals negative 4 plus or minus the square root of 28, all divided by negative 2' on a white background.], alt: "A mathematical equation is displayed, showing 'x equals negative 4 plus or minus the square root of 28, all divided by negative 2' on a white background.", caption: none)], [], [#figure(figph[A mathematical equation shows x = (-4 ± 2√7) / -2. This expression simplifies to x = 2 ± √7, representing two possible values for x from a quadratic formula solution.], alt: "A mathematical equation shows x = (-4 ± 2√7) / -2. This expression simplifies to x = 2 ± √7, representing two possible values for x from a quadratic formula solution.", caption: none)], [], [#figure(figph[A mathematical equation displays x equals a fraction where the numerator is -2 multiplied by the quantity 2 plus or minus the square root of 7, and the denominator is -2.], alt: "A mathematical equation displays x equals a fraction where the numerator is -2 multiplied by the quantity 2 plus or minus the square root of 7, and the denominator is -2.", caption: none)], [], [#figure(figph[A mathematical equation displaying x = 2 ± √7, showing the value of x as two plus or minus the square root of seven.], alt: "A mathematical equation displaying x = 2 ± √7, showing the value of x as two plus or minus the square root of seven.", caption: none)], [], [The #emph[x]-intercepts are #math.equation(block: false, alt: "open parenthesis 2 plus the square root of 7 , 0 close parenthesis")[$( 2 + sqrt(7) , 0 )$] and #linebreak() #math.equation(block: false, alt: "open parenthesis 2 minus the square root of 7 , 0 close parenthesis")[$( 2 − sqrt(7) , 0 )$].], )) We will use the decimal approximations of the #emph[x]-intercepts, so that we can locate these points on the graph, #math.equation(block: true, alt: "open parenthesis 2 plus the square root of 7 , 0 close parenthesis approximately equals open parenthesis 4.6 , 0 close parenthesis, open parenthesis 2 minus the square root of 7 , 0 close parenthesis approximately equals open parenthesis −0.6 , 0 close parenthesis")[$( 2 + sqrt(7) , 0 ) ≈ ( 4.6 , 0 ) & & & & & ( 2 − sqrt(7) , 0 ) ≈ ( −0.6 , 0 )$]Do these results agree with our graphs? #figure(figph[This image shows 2 graphs side-by-side. The graph on the left shows the upward-opening parabola defined by the function f of x equals x squared plus 4 x plus 3 and a dashed vertical line, x equals negative 2, graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1). The y-intercept is (0, 3) and the x-intercepts are (negative 1, 0) and (negative 3, 0). The graph on the right shows the downward-opening parabola defined by the function f of x equals negative x squared plus 4 x plus 3 and a dashed vertical line, x equals 2, graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7). The y-intercept is (0, 3) and the x-intercepts are (2 plus square root 7, 0), approximately (4.6, 0) and (2 minus square root, 0), approximately (negative 0.6, 0).], alt: "This image shows 2 graphs side-by-side. The graph on the left shows the upward-opening parabola defined by the function f of x equals x squared plus 4 x plus 3 and a dashed vertical line, x equals negative 2, graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1). The y-intercept is (0, 3) and the x-intercepts are (negative 1, 0) and (negative 3, 0). The graph on the right shows the downward-opening parabola defined by the function f of x equals negative x squared plus 4 x plus 3 and a dashed vertical line, x equals 2, graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (2, 7). The y-intercept is (0, 3) and the x-intercepts are (2 plus square root 7, 0), approximately (4.6, 0) and (2 minus square root, 0), approximately (negative 0.6, 0).", caption: none) #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Find the Intercepts of a Parabola] To find the intercepts of a parabola whose function is #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 :$] #math.equation(block: true, alt: "y -intercept, x -intercepts; Let x equals 0 and solve for f open parenthesis x close parenthesis ., Let f open parenthesis x close parenthesis equals 0 and solve for x .")[$"y" "-intercept" & & & & & "x" "-intercepts" \ "Let" #h(0.2em) x = 0 #h(0.2em) "and solve for" #h(0.2em) f ( x ) . & & & & & "Let" #h(0.2em) f ( x ) = 0 #h(0.2em) "and solve for" #h(0.2em) x .$] ] #examplebox("Example 4")[][ Find the intercepts of the parabola whose function is #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 2 x minus 8 .")[$f ( x ) = x^(2) − 2 x − 8 .$] #solutionbox[ #figure(table( columns: 3, align: left, inset: 6pt, [To find the #strong[#emph[y]-]intercept, let #math.equation(block: false, alt: "x equals 0")[$x = 0$] and #linebreak() solve for #math.equation(block: false, alt: "f open parenthesis x close parenthesis")[$f ( x )$].], [], [#figure(figph[The image shows the quadratic function f(x) = x^2 - 2x - 8.], alt: "The image shows the quadratic function f(x) = x^2 - 2x - 8.", caption: none)], [], [], [#figure(figph[A mathematical equation shows f(0) equals 0 squared minus 2 multiplied by 0, minus 8. The '0' values in 0^2 and 2\*0 are highlighted in red.], alt: "A mathematical equation shows f(0) equals 0 squared minus 2 multiplied by 0, minus 8. The '0' values in 0^2 and 2*0 are highlighted in red.", caption: none)], [], [], [#figure(figph[The mathematical equation f(0) = -8 is presented in a clear and concise format.], alt: "The mathematical equation f(0) = -8 is presented in a clear and concise format.", caption: none)], [], [When #math.equation(block: false, alt: "x equals 0")[$x = 0$], then #math.equation(block: false, alt: "f open parenthesis 0 close parenthesis equals −8")[$f ( 0 ) = −8$]. #linebreak() The #emph[y]#strong[-]intercept is the point #math.equation(block: false, alt: "open parenthesis 0 , −8 close parenthesis")[$( 0 , −8 )$].], [], [To find the #strong[#emph[x]-]intercept, let #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$] and #linebreak() solve for #math.equation(block: false, alt: "x")[$x$].], [#figure(figph[The mathematical equation f(x) = x^2 - 2x - 8 is displayed.], alt: "The mathematical equation f(x) = x^2 - 2x - 8 is displayed.", caption: none)], [], [], [], [#figure(figph[A mathematical equation shows '0 = x^2 - 2x - 8' against a white background.], alt: "A mathematical equation shows '0 = x^2 - 2x - 8' against a white background.", caption: none)], [Solve by factoring.], [], [#figure(figph[A mathematical equation is displayed with the number 0 on the left side, an equals sign in the middle, and the expression (x - 4)(x + 2) on the right side.], alt: "A mathematical equation is displayed with the number 0 on the left side, an equals sign in the middle, and the expression (x - 4)(x + 2) on the right side.", caption: none)], [], [#figure(figph[Two equations are shown side-by-side: 0 = x - 4 and 0 = x + 2. These represent two simple linear equations with variable x.], alt: "Two equations are shown side-by-side: 0 = x - 4 and 0 = x + 2. These represent two simple linear equations with variable x.", caption: none)], [], [], [#figure(figph[The mathematical expressions '4=X' and '-2=X' are shown, indicating a contradiction where the variable X is equated to two different values simultaneously.], alt: "The mathematical expressions '4=X' and '-2=X' are shown, indicating a contradiction where the variable X is equated to two different values simultaneously.", caption: none)], [], [], [When #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$], then #math.equation(block: false, alt: "x equals 4 or x equals −2")[$x = 4 #h(0.2em) "or" #h(0.2em) x = −2$]. #linebreak() The #emph[x]#strong[-]intercepts are the points #math.equation(block: false, alt: "open parenthesis 4 , 0 close parenthesis")[$( 4 , 0 )$] and #linebreak() #math.equation(block: false, alt: "open parenthesis −2 , 0 close parenthesis")[$( −2 , 0 )$].], [], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the intercepts of the parabola whose function is #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared plus 2 x minus 8 .")[$f ( x ) = x^(2) + 2 x − 8 .$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , −8 close parenthesis")[$( 0 , −8 )$] #emph[x]-intercepts #math.equation(block: false, alt: "open parenthesis −4 , 0 close parenthesis , open parenthesis 2 , 0 close parenthesis")[$( −4 , 0 ) , ( 2 , 0 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the intercepts of the parabola whose function is #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 4 x minus 12 .")[$f ( x ) = x^(2) − 4 x − 12 .$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , −12 close parenthesis")[$( 0 , −12 )$] #emph[x]-intercepts #math.equation(block: false, alt: "open parenthesis −2 , 0 close parenthesis , open parenthesis 6 , 0 close parenthesis")[$( −2 , 0 ) , ( 6 , 0 )$] ] ] In this chapter, we have been solving quadratic equations of the form #emph[ax]#super[2] + #emph[bx] + #emph[c] = 0. We solved for #emph[x] and the results were the solutions to the equation. We are now looking at quadratic functions of the form #emph[f] (#emph[x]) = #emph[ax]#super[2] + #emph[bx] + #emph[c]. The graphs of these functions are parabolas. The #emph[x]#strong[-]intercepts of the parabolas occur where #emph[f] (#emph[x]) = 0. For example: #math.equation(block: true, alt: "Quadratic equation, Quadratic function; x squared minus 2 x minus 15, equals, 0; open parenthesis x minus 5 close parenthesis open parenthesis x plus 3 close parenthesis, equals, 0; x minus 5 equals 0 x plus 3, equals, 0; x equals 5 x, equals, −3, Let f open parenthesis x close parenthesis equals 0 ., f open parenthesis x close parenthesis, equals, x squared minus 2 x minus 15; 0, equals, x squared minus 2 x minus 15; 0, equals, open parenthesis x minus 5 close parenthesis open parenthesis x plus 3 close parenthesis; x minus 5, equals, 0 x plus 3 equals 0; x, equals, 5 x equals −3; open parenthesis 5 , 0 close parenthesis and open parenthesis −3 , 0 close parenthesis; x -intercepts")[$"Quadratic equation" & & & & & & & & #h(4em) "Quadratic function" \ x^(2) − 2 x − 15 & = & 0 \ ( x − 5 ) ( x + 3 ) & = & 0 \ x − 5 = 0 #h(0.8em) x + 3 & = & 0 \ x = 5 #h(2.3em) x & = & −3 & & & & "Let" #h(0.2em) f ( x ) = 0 . & & & & #h(4em) f ( x ) & = & x^(2) − 2 x − 15 \ 0 & = & x^(2) − 2 x − 15 \ 0 & = & ( x − 5 ) ( x + 3 ) \ x − 5 & = & 0 #h(0.8em) x + 3 = 0 \ x & = & 5 #h(2.3em) x = −3 \ & & & & & & & & #h(4em) ( 5 , 0 ) #h(0.2em) "and" #h(0.2em) ( −3 , 0 ) \ & & & & & & & & #h(4em) x "-intercepts"$]The solutions of the quadratic function are the #emph[x] values of the #emph[x]#strong[-]intercepts. Earlier, we saw that quadratic equations have 2, 1, or 0 solutions. The graphs below show examples of parabolas for these three cases. Since the solutions of the functions give the #emph[x]#strong[-]intercepts of the graphs, the number of #emph[x]#strong[-]intercepts is the same as the number of solutions. Previously, we used the #strong[discriminant] to determine the number of solutions of a quadratic function of the form #math.equation(block: false, alt: "a x squared plus b x plus c equals 0 .")[$a x^(2) + b x + c = 0 .$] Now we can use the discriminant to tell us how many #emph[x]-intercepts there are on the graph. #figure(figph[This image shows three graphs side-by-side. The graph on the left shows an upward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies below the x-axis and the parabola crosses the x-axis at two different points. If b squared minus 4 a c is greater than 0, then the quadratic equation a x squared plus b x plus c equals 0 has two solutions, and the graph of the parabola has 2 x-intercepts. The graph in the middle shows a downward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies on the x-axis, the only point of intersection between the parabola and the x-axis. If b squared minus 4 a c equals 0, then the quadratic equation a x squared plus b x plus c equals 0 has one solution, and the graph of the parabola has 1 x-intercept. The graph on the right shows an upward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies above the x-axis and the parabola does not cross the x-axis. If b squared minus 4 a c is less than 0, then the quadratic equation a x squared plus b x plus c equals 0 has no solutions, and the graph of the parabola has no x-intercepts.], alt: "This image shows three graphs side-by-side. The graph on the left shows an upward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies below the x-axis and the parabola crosses the x-axis at two different points. If b squared minus 4 a c is greater than 0, then the quadratic equation a x squared plus b x plus c equals 0 has two solutions, and the graph of the parabola has 2 x-intercepts. The graph in the middle shows a downward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies on the x-axis, the only point of intersection between the parabola and the x-axis. If b squared minus 4 a c equals 0, then the quadratic equation a x squared plus b x plus c equals 0 has one solution, and the graph of the parabola has 1 x-intercept. The graph on the right shows an upward-opening parabola graphed on the x y-coordinate plane. The vertex of the parabola lies above the x-axis and the parabola does not cross the x-axis. If b squared minus 4 a c is less than 0, then the quadratic equation a x squared plus b x plus c equals 0 has no solutions, and the graph of the parabola has no x-intercepts.", caption: none) Before you to find the values of the #emph[x]-intercepts, you may want to evaluate the discriminant so you know how many solutions to expect. #examplebox("Example 5")[][ Find the intercepts of the parabola for the function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 5 x squared plus x plus 4 .")[$f ( x ) = 5 x^(2) + x + 4 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[The image displays the quadratic function f(x) = 5x^2 + x + 4.], alt: "The image displays the quadratic function f(x) = 5x^2 + x + 4.", caption: none)]), [To find the #emph[y]-intercept, let #math.equation(block: false, alt: "x equals 0")[$x = 0$] and #linebreak() solve for #math.equation(block: false, alt: "f open parenthesis x close parenthesis")[$f ( x )$].], [#figure(figph[A mathematical equation shows f(0) = 5 \* 0^2 + 0 + 4, illustrating the substitution of 0 into a function, with the substituted zeros highlighted in red.], alt: "A mathematical equation shows f(0) = 5 * 0^2 + 0 + 4, illustrating the substitution of 0 into a function, with the substituted zeros highlighted in red.", caption: none)], [], [#figure(figph[The mathematical equation f(0) = 4 is displayed in black text against a plain white background.], alt: "The mathematical equation f(0) = 4 is displayed in black text against a plain white background.", caption: none)], [], [When #math.equation(block: false, alt: "x equals 0")[$x = 0$], then #math.equation(block: false, alt: "f open parenthesis 0 close parenthesis equals 4")[$f ( 0 ) = 4$]. #linebreak() The #emph[y]-intercept is the point #math.equation(block: false, alt: "open parenthesis 0 , 4 close parenthesis")[$( 0 , 4 )$].], [To find the #emph[x]-intercept, let #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$] and #linebreak() solve for #math.equation(block: false, alt: "x")[$x$].], [#figure(figph[A mathematical equation is displayed, showing f(x) = 5x^2 + x + 4 on a white background. This is a quadratic function, representing a parabola when graphed.], alt: "A mathematical equation is displayed, showing f(x) = 5x^2 + x + 4 on a white background. This is a quadratic function, representing a parabola when graphed.", caption: none)], [], [#figure(figph[A mathematical equation is displayed: 0 = 5x^2 + x + 4.], alt: "A mathematical equation is displayed: 0 = 5x^2 + x + 4.", caption: none)], [Find the value of the discriminant to #linebreak() predict the number of solutions which is #linebreak() also the number of #emph[x]-intercepts.], [], [#math.equation(block: false, alt: "b squared minus 4 a c; 1 squared minus 4 times 5 times 4; 1 minus 80; −79")[$b^(2) − 4 a c \ 1^(2) − 4 · 5 · 4 \ 1 − 80 \ −79$]], [], [], [Since the value of the discriminant is #linebreak() negative, there is no real solution to the #linebreak() equation. #linebreak() There are no #emph[x]-intercepts.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the intercepts of the parabola whose function is #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 3 x squared plus 4 x plus 4 .")[$f ( x ) = 3 x^(2) + 4 x + 4 .$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 4 close parenthesis")[$( 0 , 4 )$] no #emph[x]-intercept ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the intercepts of the parabola whose function is #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 4 x minus 5 .")[$f ( x ) = x^(2) − 4 x − 5 .$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , −5 close parenthesis")[$( 0 , −5 )$] #emph[x]-intercepts #math.equation(block: false, alt: "open parenthesis −1 , 0 close parenthesis , open parenthesis 5 , 0 close parenthesis")[$( −1 , 0 ) , ( 5 , 0 )$] ] ] === Graph Quadratic Functions Using Properties Now we have all the pieces we need in order to graph a quadratic function. We just need to put them together. In the next example we will see how to do this. #examplebox("Example 6")[How to Graph a Quadratic Function Using Properties][ Graph #emph[f] (#emph[x]) = #emph[x]#super[2] −6#emph[x] + 8 by using its properties. #solutionbox[ #figure(figph[Step 1 is to determine whether the parabola opens upward or downward. Loot at the leading coefficient, a, in the equation. If f of x equals x squared minus 6 x plus 8, then a equals 1. Since a is positive, the parabola opens upward.], alt: "Step 1 is to determine whether the parabola opens upward or downward. Loot at the leading coefficient, a, in the equation. If f of x equals x squared minus 6 x plus 8, then a equals 1. Since a is positive, the parabola opens upward.", caption: none) #figure(figph[Step 2 is to find the axis of symmetry. The axis of symmetry is the line x equals negative b divided by the product 2 a. For the function f of x equals x squared minust 6 x plus 8, the axis of symmetry is negative b divided by the product 2 a. x equals the opposite of negative 6 divided by the product 2 times 1. X equals 3.], alt: "Step 2 is to find the axis of symmetry. The axis of symmetry is the line x equals negative b divided by the product 2 a. For the function f of x equals x squared minust 6 x plus 8, the axis of symmetry is negative b divided by the product 2 a. x equals the opposite of negative 6 divided by the product 2 times 1. X equals 3.", caption: none) #figure(figph[In step 3, find the vertex. The vertex is on the axis of symmetry. Substitute x equals 3 into the function. F of x equals x squared minus 6 x plus 8. F of 3 equals 3 squared minus 6 times 3 plus 8. F of 3 equals negative 1. The vertex is the point (3, negative 1).], alt: "In step 3, find the vertex. The vertex is on the axis of symmetry. Substitute x equals 3 into the function. F of x equals x squared minus 6 x plus 8. F of 3 equals 3 squared minus 6 times 3 plus 8. F of 3 equals negative 1. The vertex is the point (3, negative 1).", caption: none) #figure(figph[Step 4. Find the y-intercept. Find the point symmetric to the y-intercept across the axis of symmetry. We first find f of 0 to find the y-intercept. F of x equals x squared plus 6 x plus 8, so f of 0 equals 0 squared plus 6 times 0 plus 8. F of 0 equals 8. The y-intercept is the point (0, 8). We use the axis of symmetry to find a point symmetric to the y-intercept. The y-intercept is 3 units left of the axis of symmetry, x equals 3. A point 3 units to the right of the axis of symmetry has x-value 6. The point symmetric to the y-intercept is the point (6, 8).], alt: "Step 4. Find the y-intercept. Find the point symmetric to the y-intercept across the axis of symmetry. We first find f of 0 to find the y-intercept. F of x equals x squared plus 6 x plus 8, so f of 0 equals 0 squared plus 6 times 0 plus 8. F of 0 equals 8. The y-intercept is the point (0, 8). We use the axis of symmetry to find a point symmetric to the y-intercept. The y-intercept is 3 units left of the axis of symmetry, x equals 3. A point 3 units to the right of the axis of symmetry has x-value 6. The point symmetric to the y-intercept is the point (6, 8).", caption: none) #figure(figph[Step 5 is to find the x-intercepts. Find additional points if needed. We solve f of x equals 0. We can solve this quadratic equation by factoring. To find the x-intercepts, set f of x equal to 0. F of x equals x squared minus 6 x plus 8. 0 equals x squared minus 6 x plus 8. 0 equals the product of x minus 2 and x minus 4. So x equals 2 or x equals 4. The x-intercepts are the points (2, 0) and (4, 0).], alt: "Step 5 is to find the x-intercepts. Find additional points if needed. We solve f of x equals 0. We can solve this quadratic equation by factoring. To find the x-intercepts, set f of x equal to 0. F of x equals x squared minus 6 x plus 8. 0 equals x squared minus 6 x plus 8. 0 equals the product of x minus 2 and x minus 4. So x equals 2 or x equals 4. The x-intercepts are the points (2, 0) and (4, 0).", caption: none) #figure(figph[The final step, step 6, is to graph the parabola. We graph the vertex, intercepts, and the point symmetric to the y-intercept. We connect these 5 points to sketch the parabola. An image shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 2 to 10. The y-axis of the plane runs from negative 3 to 7. The parabola has a vertex at (3, negative 1). Other points plotted include the x-intercepts, (2, 0) and (4, 0), the y-intercept, (0, 8), and the point (6, 8) that is symmetric to the y-intercept across the axis of symmetry.], alt: "The final step, step 6, is to graph the parabola. We graph the vertex, intercepts, and the point symmetric to the y-intercept. We connect these 5 points to sketch the parabola. An image shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 2 to 10. The y-axis of the plane runs from negative 3 to 7. The parabola has a vertex at (3, negative 1). Other points plotted include the x-intercepts, (2, 0) and (4, 0), the y-intercept, (0, 8), and the point (6, 8) that is symmetric to the y-intercept across the axis of symmetry.", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = #emph[x]#super[2] + 2#emph[x] − 8 by using its properties. #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, negative 9). The y-intercept of the parabola is the point (0, negative 8). The x-intercepts of the parabola are the points (negative 4, 0) and (4, 0).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, negative 9). The y-intercept of the parabola is the point (0, negative 8). The x-intercepts of the parabola are the points (negative 4, 0) and (4, 0).", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = #emph[x]#super[2] − 8#emph[x] + 12 by using its properties. #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 15. The axis of symmetry, x equals 4, is graphed as a dashed line. The parabola has a vertex at (4, negative 4). The y-intercept of the parabola is the point (0, 12). The x-intercepts of the parabola are the points (2, 0) and (6, 0).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 15. The axis of symmetry, x equals 4, is graphed as a dashed line. The parabola has a vertex at (4, negative 4). The y-intercept of the parabola is the point (0, 12). The x-intercepts of the parabola are the points (2, 0) and (6, 0).", caption: none) ] ] We list the steps to take in order to graph a quadratic function here. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To graph a quadratic function using properties.] + Determine whether the parabola opens upward or downward. + Find the equation of the axis of symmetry. + Find the vertex. + Find the #emph[y]-intercept. Find the point symmetric to the #emph[y]-intercept across the axis of symmetry. + Find the #emph[x]-intercepts. Find additional points if needed. + Graph the parabola. ] We were able to find the #emph[x]-intercepts in the last example by factoring. We find the #emph[x]-intercepts in the next example by factoring, too. #examplebox("Example 7")[][ Graph #emph[f] (#emph[x]) = –#emph[x]#super[2] + 6#emph[x] − 9 by using its properties. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[Two mathematical equations are displayed: a general quadratic function f(x) = ax^2 + bx + c, and a specific instance f(x) = -x^2 + 6x - 9.], alt: "Two mathematical equations are displayed: a general quadratic function f(x) = ax^2 + bx + c, and a specific instance f(x) = -x^2 + 6x - 9.", caption: none)]), [Since #emph[a] is #math.equation(block: false, alt: "−1")[$−1$], the parabola opens downward.], [], [#figure(figph[A red, inverted U-shaped arrow with both ends pointing downwards, symbolizing a cycle, feedback loop, or a two-way process.], alt: "A red, inverted U-shaped arrow with both ends pointing downwards, symbolizing a cycle, feedback loop, or a two-way process.", caption: none)], [], [To find the equation of the axis of symmetry, use #linebreak() #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$].], [#figure(figph[The image displays a mathematical equation on a white background. The equation shown is x = -b / 2a, which represents the x-coordinate of the vertex of a parabola in standard form.], alt: "The image displays a mathematical equation on a white background. The equation shown is x = -b / 2a, which represents the x-coordinate of the vertex of a parabola in standard form.", caption: none)], [], [#figure(figph[A mathematical expression reads X = -6 / (2(-1)), showing a fraction with a negative sign, numerator 6, and denominator 2 multiplied by -1 in parentheses.], alt: "A mathematical expression reads X = -6 / (2(-1)), showing a fraction with a negative sign, numerator 6, and denominator 2 multiplied by -1 in parentheses.", caption: none)], [], [#figure(figph[The image displays the mathematical equation X=3 against a white background.], alt: "The image displays the mathematical equation X=3 against a white background.", caption: none)], [], [The axis of symmetry is #math.equation(block: false, alt: "x equals 3")[$x = 3$]. #linebreak() The vertex is on the line #math.equation(block: false, alt: "x equals 3")[$x = 3$].], [], [#figure(figph[A Cartesian coordinate system shows a vertical dashed line passing through x = 3. The x-axis ranges from -10 to 10, and the y-axis ranges from -10 to 10, with increments of 1 for both axes.], alt: "A Cartesian coordinate system shows a vertical dashed line passing through x = 3. The x-axis ranges from -10 to 10, and the y-axis ranges from -10 to 10, with increments of 1 for both axes.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis 3 close parenthesis")[$f ( 3 )$].], [#figure(figph[The quadratic function f(x) = -x^2 + 6x - 9 is displayed on a white background.], alt: "The quadratic function f(x) = -x^2 + 6x - 9 is displayed on a white background.", caption: none)], [], [#figure(figph[A mathematical equation is displayed on a white background: f(3) = -3^2 + 6 \* 3 - 9. The numbers '3' within the terms '-3^2' and '6' are highlighted in red, indicating a substitution or evaluation.], alt: "A mathematical equation is displayed on a white background: f(3) = -3^2 + 6 * 3 - 9. The numbers '3' within the terms '-3^2' and '6' are highlighted in red, indicating a substitution or evaluation.", caption: none)], [], [#figure(figph[A mathematical equation is displayed, showing 'f(3) = -9 + 18 - 9' in the center of a white background. This is a function evaluation, and the right side simplifies to 0.], alt: "A mathematical equation is displayed, showing 'f(3) = -9 + 18 - 9' in the center of a white background. This is a function evaluation, and the right side simplifies to 0.", caption: none)], [], [#figure(figph[The mathematical equation f(3) = 0 is displayed on a white background.], alt: "The mathematical equation f(3) = 0 is displayed on a white background.", caption: none)], [], [The vertex is #math.equation(block: false, alt: "open parenthesis 3 , 0 close parenthesis .")[$( 3 , 0 ) .$]], [], [#figure(figph[A graph displays a vertical dashed line passing through x=3 on a coordinate plane. The x and y axes range from -10 to 10, with a blue dot marking the line's intersection at (3,0).], alt: "A graph displays a vertical dashed line passing through x=3 on a coordinate plane. The x and y axes range from -10 to 10, with a blue dot marking the line's intersection at (3,0).", caption: none)], [The #emph[y]-intercept occurs when #math.equation(block: false, alt: "x equals 0")[$x = 0$]. Find #math.equation(block: false, alt: "f open parenthesis 0 close parenthesis")[$f ( 0 )$].], [#figure(figph[A mathematical equation for a quadratic function is displayed: f(x) = -x^2 + 6x - 9.], alt: "A mathematical equation for a quadratic function is displayed: f(x) = -x^2 + 6x - 9.", caption: none)], [Substitute #math.equation(block: false, alt: "x equals 0")[$x = 0$].], [#figure(figph[Substitution into a quadratic function: The equation f of x equals negative x squared plus six x minus nine is evaluated at x equals zero, demonstrating how to find the value of the function when zero is input.], alt: "Substitution into a quadratic function: The equation f of x equals negative x squared plus six x minus nine is evaluated at x equals zero, demonstrating how to find the value of the function when zero is input.", caption: none)], [Simplify.], [#figure(figph[The image displays the mathematical expression 'f(0) = -9' centered on a white background.], alt: "The image displays the mathematical expression 'f(0) = -9' centered on a white background.", caption: none)], [], [The #emph[y]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , −9 close parenthesis .")[$( 0 , −9 ) .$]], [The point #math.equation(block: false, alt: "open parenthesis 0 , −9 close parenthesis")[$( 0 , −9 )$] is three units to the left of the line of symmetry. The point three units to the right of the line of symmetry is #math.equation(block: false, alt: "open parenthesis 6 , −9 close parenthesis")[$( 6 , −9 )$].], [#figure(figph[A coordinate plane displays a dashed vertical line at x=3. Two blue points are plotted: one at (0, -9) and another at (6, -9).], alt: "A coordinate plane displays a dashed vertical line at x=3. Two blue points are plotted: one at (0, -9) and another at (6, -9).", caption: none)], [], [Point symmetric to the #emph[y]-intercept is #math.equation(block: false, alt: "open parenthesis 6 , −9 close parenthesis")[$( 6 , −9 )$]], [The #emph[x]-intercept occurs when #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[The image displays the quadratic function f(x) = -x^2 + 6x - 9 on a white background.], alt: "The image displays the quadratic function f(x) = -x^2 + 6x - 9 on a white background.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[A quadratic equation, 0 = -x^2 + 6x - 9, is displayed on a white background, representing a mathematical expression.], alt: "A quadratic equation, 0 = -x^2 + 6x - 9, is displayed on a white background, representing a mathematical expression.", caption: none)], [Factor the GCF.], [#figure(figph[The image shows the mathematical equation '0 = -(x^2 - 6x + 9)' centered on a white background, representing an algebraic expression likely for solving for x.], alt: "The image shows the mathematical equation '0 = -(x^2 - 6x + 9)' centered on a white background, representing an algebraic expression likely for solving for x.", caption: none)], [Factor the trinomial.], [#figure(figph[The image displays the mathematical equation 0 = -(x - 3)^2, presented against a plain white background.], alt: "The image displays the mathematical equation 0 = -(x - 3)^2, presented against a plain white background.", caption: none)], [Solve for #emph[x].], [#figure(figph[The number 0 equals 3, displayed as '0 = 3' in a simple, faded black font against a white background.], alt: "The number 0 equals 3, displayed as '0 = 3' in a simple, faded black font against a white background.", caption: none)], [Connect the points to graph the parabola.], [#figure(figph[Graph of a downward-opening parabola with vertex (3,0) and axis of symmetry x=3. The curve passes through (0,-9) and (6,-9).], alt: "Graph of a downward-opening parabola with vertex (3,0) and axis of symmetry x=3. The curve passes through (0,-9) and (6,-9).", caption: none)], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = −3#emph[x]#super[2] + 12#emph[x] − 12 by using its properties. #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 15 to 10. The parabola has a vertex at (2, 0). The y-intercept (0, negative 12) is plotted as well as the axis of symmetry, x equals 2.], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 15 to 10. The parabola has a vertex at (2, 0). The y-intercept (0, negative 12) is plotted as well as the axis of symmetry, x equals 2.", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = 4#emph[x]#super[2] + 24#emph[x] + 36 by using its properties. #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 30 to 20. The y-axis of the plane runs from negative 10 to 40. The parabola has a vertex at (negative 3, 0). The y-intercept (0, 36) is plotted as well as the axis of symmetry, x equals negative 3.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 30 to 20. The y-axis of the plane runs from negative 10 to 40. The parabola has a vertex at (negative 3, 0). The y-intercept (0, 36) is plotted as well as the axis of symmetry, x equals negative 3.", caption: none) ] ] For the graph of #emph[f] (#emph[x]) = −#emph[x]#super[2] + 6#emph[x] − 9, the vertex and the #emph[x]-intercept were the same point. Remember how the discriminant determines the number of solutions of a quadratic equation? The discriminant of the equation 0 = −#emph[x]#super[2] + 6#emph[x] − 9 is 0, so there is only one solution. That means there is only one #emph[x]-intercept, and it is the vertex of the parabola. How many #emph[x]-intercepts would you expect to see on the graph of #emph[f] (#emph[x]) = #emph[x]#super[2] + 4#emph[x] + 5? #examplebox("Example 8")[][ Graph #emph[f] (#emph[x]) = #emph[x]#super[2] + 4#emph[x] + 5 by using its properties. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[Two mathematical equations are displayed: the general form of a quadratic function, f(x) = ax^2 + bx + c, and a specific instance, f(x) = x^2 + 4x + 5.], alt: "Two mathematical equations are displayed: the general form of a quadratic function, f(x) = ax^2 + bx + c, and a specific instance, f(x) = x^2 + 4x + 5.", caption: none)]), [Since #emph[a] is 1, the parabola opens upward.], [], [#figure(figph[Two red arrows form a U-shape, pointing upwards, suggesting a connection or uplift.], alt: "Two red arrows form a U-shape, pointing upwards, suggesting a connection or uplift.", caption: none)], [], [To find the axis of symmetry, find #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$].], [#figure(figph[The mathematical formula for finding the x-coordinate of the vertex of a parabola, x = -b / 2a, is displayed on a white background.], alt: "The mathematical formula for finding the x-coordinate of the vertex of a parabola, x = -b / 2a, is displayed on a white background.", caption: none)], [], [#figure(figph[A mathematical equation is displayed on a white background, reading 'x = -4 / (2)1'.], alt: "A mathematical equation is displayed on a white background, reading 'x = -4 / (2)1'.", caption: none)], [], [#figure(figph[The image shows x=-2.], alt: "The image shows x=-2.", caption: none)], [], [The equation of the axis of symmetry is #math.equation(block: false, alt: "x equals −2")[$x = −2$].], [], [#figure(figph[A coordinate plane with an x-axis ranging from -9 to 9 and a y-axis ranging from -9 to 9. A dashed vertical line is graphed at x = -2, extending across the entire y-range.], alt: "A coordinate plane with an x-axis ranging from -9 to 9 and a y-axis ranging from -9 to 9. A dashed vertical line is graphed at x = -2, extending across the entire y-range.", caption: none)], [The vertex is on the line #math.equation(block: false, alt: "x equals −2 .")[$x = −2 .$]], [], [Find #math.equation(block: false, alt: "f open parenthesis x close parenthesis")[$f ( x )$] when #math.equation(block: false, alt: "x equals −2 .")[$x = −2 .$]], [#figure(figph[The image displays the quadratic function f(x) = x^2 + 4x + 5 written in black text against a white background.], alt: "The image displays the quadratic function f(x) = x^2 + 4x + 5 written in black text against a white background.", caption: none)], [], [#figure(figph[A mathematical equation is displayed, showing the function f evaluated at -2: f(-2) = (-2)^2 + 4(-2) + 5, which involves squaring, multiplication, and addition.], alt: "A mathematical equation is displayed, showing the function f evaluated at -2: f(-2) = (-2)^2 + 4(-2) + 5, which involves squaring, multiplication, and addition.", caption: none)], [], [#figure(figph[A mathematical equation is displayed on a white background, reading 'f(-2) = 4 - 8 + 5' in black text.], alt: "A mathematical equation is displayed on a white background, reading 'f(-2) = 4 - 8 + 5' in black text.", caption: none)], [], [#figure(figph[The image displays the mathematical equation f(-2) = 1 centered on a white background.], alt: "The image displays the mathematical equation f(-2) = 1 centered on a white background.", caption: none)], [], [The vertex is #math.equation(block: false, alt: "open parenthesis −2 , 1 close parenthesis")[$( −2 , 1 )$].], [], [#figure(figph[A coordinate plane shows a vertical dashed line passing through x = -2. A blue point is plotted on this line at (-2, 1). The x-axis and y-axis both range from -9 to 9.], alt: "A coordinate plane shows a vertical dashed line passing through x = -2. A blue point is plotted on this line at (-2, 1). The x-axis and y-axis both range from -9 to 9.", caption: none)], [The #emph[y]-intercept occurs when #math.equation(block: false, alt: "x equals 0")[$x = 0$].], [#figure(figph[A mathematical equation is displayed on a white background: f(x) = x^2 + 4x + 5.], alt: "A mathematical equation is displayed on a white background: f(x) = x^2 + 4x + 5.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis 0 close parenthesis .")[$f ( 0 ) .$]], [#figure(figph[The image displays the mathematical expression f(0) = 5 in black text against a plain white background, indicating that the function f evaluates to 5 when its input is 0.], alt: "The image displays the mathematical expression f(0) = 5 in black text against a plain white background, indicating that the function f evaluates to 5 when its input is 0.", caption: none)], [Simplify.], [#figure(figph[The image displays the mathematical expression f(0) = 5 in black text against a plain white background, indicating that the function f evaluates to 5 when its input is 0.], alt: "The image displays the mathematical expression f(0) = 5 in black text against a plain white background, indicating that the function f evaluates to 5 when its input is 0.", caption: none)], [], [The #emph[y]-intercept is #math.equation(block: false, alt: "open parenthesis 0 , 5 close parenthesis")[$( 0 , 5 )$].], [The point #math.equation(block: false, alt: "open parenthesis −4 , 5 close parenthesis")[$( −4 , 5 )$] is two units to the left of the line of #linebreak() symmetry. #linebreak() The point two units to the right of the line of #linebreak() symmetry is #math.equation(block: false, alt: "open parenthesis 0 , 5 close parenthesis")[$( 0 , 5 )$].], [#figure(figph[A graph on a coordinate plane shows a dashed vertical line at x = -2. Three points are plotted: (-4, 5), (-2, 1), and (0, 5).], alt: "A graph on a coordinate plane shows a dashed vertical line at x = -2. Three points are plotted: (-4, 5), (-2, 1), and (0, 5).", caption: none)], [], [Point symmetric to the #emph[y]-intercept is #math.equation(block: false, alt: "open parenthesis −4 , 5 close parenthesis")[$( −4 , 5 )$].], [The #emph[x]-intercept occurs when #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[A graph with three points: (-4, 5), (-2, 1), and (0, 5). A dashed vertical line is at x = -2, passing through the point (-2, 1) on the coordinate plane.], alt: "A graph with three points: (-4, 5), (-2, 1), and (0, 5). A dashed vertical line is at x = -2, passing through the point (-2, 1) on the coordinate plane.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[The image shows the quadratic equation 0 = x^2 + 4x + 5.], alt: "The image shows the quadratic equation 0 = x^2 + 4x + 5.", caption: none)], [Test the discriminant.], [], [], [#figure(figph[The mathematical expression b^2 - 4ac, which is the discriminant from the quadratic formula.], alt: "The mathematical expression b^2 - 4ac, which is the discriminant from the quadratic formula.", caption: none)], [], [#figure(figph[A mathematical expression displaying '4^2 - 4 \* 1 \* 5' against a white background.], alt: "A mathematical expression displaying '4^2 - 4 * 1 * 5' against a white background.", caption: none)], [], [#figure(figph[A vertical image displays the numbers '15-20' in black text against a plain white background, appearing as if on a vertical sign or banner.], alt: "A vertical image displays the numbers '15-20' in black text against a plain white background, appearing as if on a vertical sign or banner.", caption: none)], [], [#figure(figph[-4], alt: "-4", caption: none)], [Since the value of the discriminant is negative, there is #linebreak() no real solution and so no #emph[x]-intercept.], [], [Connect the points to graph the parabola. You may #linebreak() want to choose two more points for greater accuracy.], [#figure(figph[A parabola opens upwards with vertex at (-2, 1) and axis of symmetry at x = -2. The curve passes through points (-4, 5) and (0, 5).], alt: "A parabola opens upwards with vertex at (-2, 1) and axis of symmetry at x = -2. The curve passes through points (-4, 5) and (0, 5).", caption: none)], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = #emph[x]#super[2] − 2#emph[x] + 3 by using its properties. #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 2 to 4. The y-axis of the plane runs from negative 1 to 5. The parabola has a vertex at (1, 2). The y-intercept (0, 3) is plotted as is the line of symmetry, x equals 1.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 2 to 4. The y-axis of the plane runs from negative 1 to 5. The parabola has a vertex at (1, 2). The y-intercept (0, 3) is plotted as is the line of symmetry, x equals 1.", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = −3#emph[x]#super[2] − 6#emph[x] − 4 by using its properties. #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 2. The y-axis of the plane runs from negative 5 to 1. The parabola has a vertex at (negative 1, negative 2). The y-intercept (0, negative 4) is plotted as is the line of symmetry, x equals negative 1.], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 2. The y-axis of the plane runs from negative 5 to 1. The parabola has a vertex at (negative 1, negative 2). The y-intercept (0, negative 4) is plotted as is the line of symmetry, x equals negative 1.", caption: none) ] ] Finding the #emph[y]-intercept by finding #emph[f] (0) is easy, isn’t it? Sometimes we need to use the #strong[Quadratic Formula] to find the #emph[x]-intercepts. #examplebox("Example 9")[][ Graph #emph[f] (#emph[x]) = 2#emph[x]#super[2] − 4#emph[x] − 3 by using its properties. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[Two mathematical equations are displayed: a general form of a quadratic function, f(x) = ax^2 + bx + c, and a specific example, f(x) = 2x^2 - 4x - 3, on a white background.], alt: "Two mathematical equations are displayed: a general form of a quadratic function, f(x) = ax^2 + bx + c, and a specific example, f(x) = 2x^2 - 4x - 3, on a white background.", caption: none)]), [Since #emph[a] is 2, the parabola opens upward. #figure(figph[A vibrant red U-shaped graphic featuring two distinct arrowheads, both pointing directly upwards, signifying an upward trend, connection, or flow. A clear visual for growth or movement.], alt: "A vibrant red U-shaped graphic featuring two distinct arrowheads, both pointing directly upwards, signifying an upward trend, connection, or flow. A clear visual for growth or movement.", caption: none)], [], [To find the equation of the axis of symmetry, use #linebreak() #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$].], [#figure(figph[A mathematical formula is displayed as 'x = -b / 2a' against a white background.], alt: "A mathematical formula is displayed as 'x = -b / 2a' against a white background.", caption: none)], [], [#figure(figph[A mathematical equation is displayed on a white background: X = -4 / (2 \* 2). The formula simplifies to X = -4/4, which means X = -1.], alt: "A mathematical equation is displayed on a white background: X = -4 / (2 * 2). The formula simplifies to X = -4/4, which means X = -1.", caption: none)], [], [#figure(figph[The equation 'X = 1' is displayed on a plain white background.], alt: "The equation 'X = 1' is displayed on a plain white background.", caption: none)], [], [#strong[The equation of the axis of] #linebreak() #strong[symmetry is #math.equation(block: false, alt: "x equals 1 .")[$x = 1 .$]]], [The vertex is on the line #math.equation(block: false, alt: "x equals 1")[$x = 1$].], [#figure(figph[A mathematical expression displays the quadratic function f(x) = 2x^2 - 4x - 3, presented in a bold, sans-serif font on a white background.], alt: "A mathematical expression displays the quadratic function f(x) = 2x^2 - 4x - 3, presented in a bold, sans-serif font on a white background.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis 1 close parenthesis")[$f ( 1 )$].], [#figure(figph[The image shows the equation f(x) = 2(1)^2 - 4(1) - 3.], alt: "The image shows the equation f(x) = 2(1)^2 - 4(1) - 3.", caption: none)], [], [#figure(figph[The image shows the mathematical equation f(1) = 2 - 4 - 3 in black text on a white background.], alt: "The image shows the mathematical equation f(1) = 2 - 4 - 3 in black text on a white background.", caption: none)], [], [#figure(figph[A mathematical expression reads f(1) = -5, representing a function f evaluated at 1 resulting in a value of -5.], alt: "A mathematical expression reads f(1) = -5, representing a function f evaluated at 1 resulting in a value of -5.", caption: none)], [], [#strong[The vertex is] #math.equation(block: false, alt: "open parenthesis 1 , −5 close parenthesis .")[$( 1 , −5 ) .$]], [The #emph[y]-intercept occurs when #math.equation(block: false, alt: "x equals 0")[$x = 0$].], [#figure(figph[The image displays the quadratic function f(x) = 2x^2 - 4x - 3.], alt: "The image displays the quadratic function f(x) = 2x^2 - 4x - 3.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis 0 close parenthesis")[$f ( 0 )$].], [#figure(figph[The image shows the evaluation of a quadratic function at x=0, specifically f(0) = 2(0)^2 - 4(0) - 3, simplifying to -3.], alt: "The image shows the evaluation of a quadratic function at x=0, specifically f(0) = 2(0)^2 - 4(0) - 3, simplifying to -3.", caption: none)], [Simplify.], [#figure(figph[The mathematical equation 'f(0) = -3' is displayed on a plain white background.], alt: "The mathematical equation 'f(0) = -3' is displayed on a plain white background.", caption: none)], [], [#strong[The #emph[y]-intercept is] #math.equation(block: false, alt: "open parenthesis 0 , −3 close parenthesis .")[$( 0 , −3 ) .$]], [The point #math.equation(block: false, alt: "open parenthesis 0 , −3 close parenthesis")[$( 0 , −3 )$] is one unit to the left of the line of #linebreak() symmetry.], [#strong[Point symmetric to the] #linebreak() #strong[#emph[y]-intercept is] #math.equation(block: false, alt: "open parenthesis 2 , −3 close parenthesis")[$( 2 , −3 )$]], [The point one unit to the right of the line of #linebreak() symmetry is #math.equation(block: false, alt: "open parenthesis 2 , −3 close parenthesis")[$( 2 , −3 )$].], [], [The #emph[x]-intercept occurs when #math.equation(block: false, alt: "y equals 0")[$y = 0$].], [#figure(figph[A mathematical equation for a quadratic function, f(x) = 2x^2 - 4x - 3, displayed in black text on a white background.], alt: "A mathematical equation for a quadratic function, f(x) = 2x^2 - 4x - 3, displayed in black text on a white background.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 0")[$f ( x ) = 0$].], [#figure(figph[A mathematical equation is displayed, reading '0 = 2x^2 - 4x - 3' on a white background.], alt: "A mathematical equation is displayed, reading '0 = 2x^2 - 4x - 3' on a white background.", caption: none)], [Use the Quadratic Formula.], [#figure(figph[The quadratic formula, used to find the roots of a quadratic equation, displayed as x = (-b +/- sqrt(b^2 - 4ac)) / (2a).], alt: "The quadratic formula, used to find the roots of a quadratic equation, displayed as x = (-b +/- sqrt(b^2 - 4ac)) / (2a).", caption: none)], [Substitute in the values of #math.equation(block: false, alt: "a , b ,")[$a , b ,$] and #math.equation(block: false, alt: "c .")[$c .$]], [#figure(figph[An instance of the quadratic formula used to solve for x, showing the values -4, 2, and 3 substituted into the standard algebraic expression.], alt: "An instance of the quadratic formula used to solve for x, showing the values -4, 2, and 3 substituted into the standard algebraic expression.", caption: none)], [Simplify.], [#figure(figph[A quadratic formula step showing X equals negative 4 plus or minus the square root of 16 plus 24, all divided by 4.], alt: "A quadratic formula step showing X equals negative 4 plus or minus the square root of 16 plus 24, all divided by 4.", caption: none)], [Simplify inside the radical.], [#figure(figph[A mathematical equation is displayed on a white background: x = (4 ± √40) / 4. This represents the solution to a quadratic equation, showing the plus or minus operation for the square root of 40.], alt: "A mathematical equation is displayed on a white background: x = (4 ± √40) / 4. This represents the solution to a quadratic equation, showing the plus or minus operation for the square root of 40.", caption: none)], [Simplify the radical.], [#figure(figph[The image displays the mathematical equation for x: x = (4 plus or minus 2 times the square root of 10) / 4.], alt: "The image displays the mathematical equation for x: x = (4 plus or minus 2 times the square root of 10) / 4.", caption: none)], [Factor the GCF.], [#figure(figph[A mathematical equation showing x equals two times two plus or minus the square root of ten, all divided by four. This simplifies to x = (2 ± 10)/2.], alt: "A mathematical equation showing x equals two times two plus or minus the square root of ten, all divided by four. This simplifies to x = (2 ± 10)/2.", caption: none)], [Remove common factors.], [#figure(figph[A mathematical equation showing x equals 2 plus or minus the square root of 10, all divided by 2.], alt: "A mathematical equation showing x equals 2 plus or minus the square root of 10, all divided by 2.", caption: none)], [Write as two equations.], [#figure(figph[Two solutions for x are displayed: x equals (2 plus the square root of 10) all over 2, and x equals (2 minus the square root of 10) all over 2.], alt: "Two solutions for x are displayed: x equals (2 plus the square root of 10) all over 2, and x equals (2 minus the square root of 10) all over 2.", caption: none)], [Approximate the values.], [#figure(figph[Two mathematical approximations are displayed: x is approximately equal to 2.5, and x is approximately equal to -0.6. The text is clear and centrally placed on a plain white background.], alt: "Two mathematical approximations are displayed: x is approximately equal to 2.5, and x is approximately equal to -0.6. The text is clear and centrally placed on a plain white background.", caption: none)], [], [#strong[The approximate values of the] #linebreak() #strong[#emph[x]-intercepts are] #math.equation(block: false, alt: "open parenthesis 2.5 , 0 close parenthesis")[$( 2.5 , 0 )$] #strong[and] #linebreak() #math.equation(block: false, alt: "open parenthesis −0.6 , 0 close parenthesis .")[$( −0.6 , 0 ) .$]], [Graph the parabola using the points found.], [#figure(figph[A parabola is graphed on a coordinate plane, with x and y axes ranging from -9 to 9. The parabola opens upwards, with its vertex at (1, -5). A dashed line at x=1 represents the axis of symmetry.], alt: "A parabola is graphed on a coordinate plane, with x and y axes ranging from -9 to 9. The parabola opens upwards, with its vertex at (1, -5). A dashed line at x=1 represents the axis of symmetry.", caption: none)], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = 5#emph[x]#super[2] + 10#emph[x] + 3 by using its properties. #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 4 to 4. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, negative 2). The y-intercept of the parabola is the point (0, 3). The x-intercepts of the parabola are approximately (negative 1.6, 0) and (negative 0.4, 0).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 4 to 4. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, negative 2). The y-intercept of the parabola is the point (0, 3). The x-intercepts of the parabola are approximately (negative 1.6, 0) and (negative 0.4, 0).", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Graph #emph[f] (#emph[x]) = −3#emph[x]#super[2] − 6#emph[x] + 5 by using its properties. #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, 8). The y-intercept of the parabola is the point (0, 5). The x-intercepts of the parabola are approximately (negative 2.6, 0) and (0.6, 0).], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The axis of symmetry, x equals negative 1, is graphed as a dashed line. The parabola has a vertex at (negative 1, 8). The y-intercept of the parabola is the point (0, 5). The x-intercepts of the parabola are approximately (negative 2.6, 0) and (0.6, 0).", caption: none) ] ] === Solve Maximum and Minimum Applications Knowing that the #strong[vertex] of a parabola is the lowest or highest point of the parabola gives us an easy way to determine the minimum or maximum value of a quadratic function. The #emph[y]-coordinate of the vertex is the #strong[minimum] value of a parabola that opens upward. It is the #strong[maximum] value of a parabola that opens downward. #figure(figph[This figure shows 2 graphs side-by-side. The left graph shows a downward opening parabola plotted in the x y-plane. An arrow points to the vertex with the label maximum. The right graph shows an upward opening parabola plotted in the x y-plane. An arrow points to the vertex with the label minimum.], alt: "This figure shows 2 graphs side-by-side. The left graph shows a downward opening parabola plotted in the x y-plane. An arrow points to the vertex with the label maximum. The right graph shows an upward opening parabola plotted in the x y-plane. An arrow points to the vertex with the label minimum.", caption: none) #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Minimum or Maximum Values of a Quadratic Function] The #strong[#emph[y]-coordinate of the vertex] of the graph of a quadratic function is the - #emph[minimum] value of the quadratic equation if the parabola opens #emph[upward]. - #emph[maximum] value of the quadratic equation if the parabola opens #emph[downward]. ] #examplebox("Example 10")[][ Find the minimum or maximum value of the quadratic function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared plus 2 x minus 8 .")[$f ( x ) = x^(2) + 2 x − 8 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[A mathematical equation is displayed on a white background, reading 'f(x) = x^2 + 2x - 8'.], alt: "A mathematical equation is displayed on a white background, reading 'f(x) = x^2 + 2x - 8'.", caption: none)]), [Since #emph[a] is positive, the parabola opens upward. #linebreak() The quadratic equation has a minimum.], [], [Find the equation of the axis of symmetry.], [#figure(figph[Mathematical formula: x = -b/2a, representing the axis of symmetry or the x-coordinate of the vertex of a parabola.], alt: "Mathematical formula: x = -b/2a, representing the axis of symmetry or the x-coordinate of the vertex of a parabola.", caption: none)], [], [#figure(figph[The image displays a mathematical equation, x = -2 / (2 \* 1), indicating a step in solving for x where the numerator is -2 and the denominator is the product of 2 and 1.], alt: "The image displays a mathematical equation, x = -2 / (2 * 1), indicating a step in solving for x where the numerator is -2 and the denominator is the product of 2 and 1.", caption: none)], [], [#figure(figph[A white background with the equation 'X = -1' written in black in the upper left corner.], alt: "A white background with the equation 'X = -1' written in black in the upper left corner.", caption: none)], [], [The equation of the axis of #linebreak() symmetry is #math.equation(block: false, alt: "x equals −1")[$x = −1$].], [The vertex is on the line #math.equation(block: false, alt: "x equals −1")[$x = −1$].], [#figure(figph[A mathematical equation is displayed against a white background, showing the function f(x) = x^2 + 2x - 8. The text is in a dark grey or black font.], alt: "A mathematical equation is displayed against a white background, showing the function f(x) = x^2 + 2x - 8. The text is in a dark grey or black font.", caption: none)], [Find #math.equation(block: false, alt: "f open parenthesis −1 close parenthesis")[$f ( −1 )$].], [#figure(figph[A mathematical equation shows the evaluation of a function f(x) at x=-1, with the expression f(-1) = (-1)^2 + 2(-1) - 8. The number -1 is highlighted in red to emphasize the substitution.], alt: "A mathematical equation shows the evaluation of a function f(x) at x=-1, with the expression f(-1) = (-1)^2 + 2(-1) - 8. The number -1 is highlighted in red to emphasize the substitution.", caption: none)], [], [#figure(figph[A mathematical expression shows f(-1) equals 1 minus 2 minus 8, displayed in black text against a white background.], alt: "A mathematical expression shows f(-1) equals 1 minus 2 minus 8, displayed in black text against a white background.", caption: none)], [], [#figure(figph[The mathematical equation f(-1) = -9 is displayed on a white background.], alt: "The mathematical equation f(-1) = -9 is displayed on a white background.", caption: none)], [], [The vertex is #math.equation(block: false, alt: "open parenthesis −1 , −9 close parenthesis")[$( −1 , −9 )$].], [Since the parabola has a minimum, the #emph[y]-coordinate of #linebreak() the vertex is the minimum #emph[y]-value of the quadratic #linebreak() equation. #linebreak() The minimum value of the quadratic is #math.equation(block: false, alt: "−9")[$−9$] and it #linebreak() occurs when #math.equation(block: false, alt: "x equals −1")[$x = −1$].], [], [], [#figure(figph[A graph of a parabola opening upwards, with its vertex at (-1, -9). A dashed vertical line at x = -1 indicates the axis of symmetry. The x and y axes both range from -9 to 9.], alt: "A graph of a parabola opening upwards, with its vertex at (-1, -9). A dashed vertical line at x = -1 indicates the axis of symmetry. The x and y axes both range from -9 to 9.", caption: none)], [Show the graph to verify the result.], [], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the maximum or minimum value of the quadratic function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 8 x plus 12 .")[$f ( x ) = x^(2) − 8 x + 12 .$] #solutionbox[ The minimum value of the quadratic function is −4 and it occurs when #emph[x] = 4. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the maximum or minimum value of the quadratic function #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −4 x squared plus 16 x minus 11 .")[$f ( x ) = −4 x^(2) + 16 x − 11 .$] #solutionbox[ The maximum value of the quadratic function is 5 and it occurs when #emph[x] = 2. ] ] We have used the formula #math.equation(block: true, alt: "h open parenthesis t close parenthesis equals −16 t squared plus v sub 0 t plus h sub 0")[$h ( t ) = −16 t^(2) + v_(0) t + h_(0)$]to calculate the height in feet, #emph[h] , of an object shot upwards into the air with initial velocity, #emph[v]#sub[0], after #emph[t] seconds . This formula is a quadratic function, so its graph is a parabola. By solving for the coordinates of the vertex (#emph[t, h]), we can find how long it will take the object to reach its maximum height. Then we can calculate the maximum height. #examplebox("Example 11")[][ The quadratic equation #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 176#emph[t] + 4 models the height of a volleyball hit straight upwards with velocity 176 feet per second from a height of 4 feet. ⓐ How many seconds will it take the volleyball to reach its maximum height? ⓑ Find the maximum height of the volleyball. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#math.equation(block: false, alt: "h open parenthesis t close parenthesis equals −16 t squared plus 176 t plus 4")[$h ( t ) = −16 t^(2) + 176 t + 4$]]), [Since #emph[a] is negative, the parabola opens downward.], [], [The quadratic function has a maximum.], [], )) ⓐ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Find the equation of the axis of symmetry.], [#math.equation(block: false, alt: "t, equals, minus the fraction b over 2 a; t, equals, minus the fraction 176 over 2 open parenthesis −16 close parenthesis; t, equals, 5.5")[$t & = & − frac(b, 2 a) \ t & = & − frac(176, 2 ( −16 )) \ t & = & 5.5$]]), [], [The equation of the axis of symmetry is #math.equation(block: false, alt: "t equals 5.5 .")[$t = 5.5 .$]], [The vertex is on the line #math.equation(block: false, alt: "t equals 5.5 .")[$t = 5.5 .$]], [The maximum occurs when #math.equation(block: false, alt: "t equals 5.5")[$t = 5.5$] seconds.], )) ⓑ #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Find #math.equation(block: false, alt: "h open parenthesis 5.5 close parenthesis .")[$h ( 5.5 ) .$] #linebreak() #linebreak() #linebreak() #linebreak() Use a calculator to simplify.], [#math.equation(block: false, alt: "h open parenthesis t close parenthesis, equals, −16 t squared plus 176 t plus 4; h open parenthesis t close parenthesis, equals, −16 open parenthesis 5.5 close parenthesis squared plus 176 open parenthesis 5.5 close parenthesis plus 4; h open parenthesis t close parenthesis, equals, 488")[$h ( t ) & = & −16 t^(2) + 176 t + 4 \ h ( t ) & = & −16 attach(( 5.5 ), t: 2) + 176 ( 5.5 ) + 4 \ h ( t ) & = & 488$]]), [], [The vertex is #math.equation(block: false, alt: "open parenthesis 5.5 , 488 close parenthesis .")[$( 5.5 , 488 ) .$]], )) Since the parabola has a maximum, the #emph[h]-coordinate of the vertex is the maximum value of the quadratic function. The maximum value of the quadratic is 488 feet and it occurs when #emph[t] = 5.5 seconds. After 5.5 seconds, the volleyball will reach its maximum height of 488 feet. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve, rounding answers to the nearest tenth. The quadratic function #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 128#emph[t] + 32 is used to find the height of a stone thrown upward from a height of 32 feet at a rate of 128 ft/sec. How long will it take for the stone to reach its maximum height? What is the maximum height? #solutionbox[ It will take 4 seconds for the stone to reach its maximum height of 288 feet. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ A path of a toy rocket thrown upward from the ground at a rate of 208 ft/sec is modeled by the quadratic function of #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 208#emph[t]. When will the rocket reach its maximum height? What will be the maximum height? #solutionbox[ It will 6.5 seconds for the rocket to reach its maximum height of 676 feet. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Access these online resources for additional instruction and practice with graphing quadratic functions using properties. - #link("https://openstax.org/l/37QuadFunct1")[Quadratic Functions: Axis of Symmetry and Vertex] - #link("https://openstax.org/l/37QuadFunct2")[Finding x- and y-intercepts of a Quadratic Function] - #link("https://openstax.org/l/37QuadFunct3")[Graphing Quadratic Functions] - #link("https://openstax.org/l/37QuadFunct4")[Solve Maxiumum or Minimum Applications] - #link("https://openstax.org/l/37QuadFunct5")[Quadratic Applications: Minimum and Maximum] ] === Key Concepts - Parabola Orientation - For the graph of 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 ,$] if - #emph[a] \> 0, the parabola opens upward. - #emph[a] \< 0, the parabola opens downward. - Axis of Symmetry and Vertex of a Parabola The graph of the 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 a parabola where: - the axis of symmetry is the vertical line #math.equation(block: false, alt: "x equals minus the fraction b over 2 a .")[$x = − frac(b, 2 a) .$] - the vertex is a point on the axis of symmetry, so its #emph[x]-coordinate is #math.equation(block: false, alt: "minus the fraction b over 2 a .")[$− frac(b, 2 a) .$] - the #emph[y]-coordinate of the vertex is found by substituting #math.equation(block: false, alt: "x equals minus the fraction b over 2 a")[$x = − frac(b, 2 a)$] into the quadratic equation. - Find the Intercepts of a Parabola - To find the intercepts of a parabola whose function is #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 :$] #linebreak() #math.equation(block: true, alt: "y -intercept, x -intercepts; Let x equals 0 and solve for f open parenthesis x close parenthesis ., Let f open parenthesis x close parenthesis equals 0 and solve for x .")[$"y" "-intercept" & & & & & "x" "-intercepts" \ "Let" #h(0.2em) x = 0 #h(0.2em) "and solve for" #h(0.2em) f ( x ) . & & & & & "Let" #h(0.2em) f ( x ) = 0 #h(0.2em) "and solve for" #h(0.2em) x .$] - How to graph a quadratic function using properties. + Determine whether the parabola opens upward or downward. + Find the equation of the axis of symmetry. + Find the vertex. + Find the #emph[y]-intercept. Find the point symmetric to the #emph[y]-intercept across the axis of symmetry. + Find the #emph[x]-intercepts. Find additional points if needed. + Graph the parabola. - Minimum or Maximum Values of a Quadratic Equation - The #emph[y]-coordinate of the vertex of the graph of a quadratic equation is the - #emph[minimum] value of the quadratic equation if the parabola opens #emph[upward]. - #emph[maximum] value of the quadratic equation if the parabola opens #emph[downward]. ==== Practice Makes Perfect #strong[Recognize the Graph of a Quadratic Function] In the following exercises, graph the functions by plotting points. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 3")[$f ( x ) = x^(2) + 3$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 3).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 3).", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared minus 3")[$f ( x ) = x^(2) − 3$] #math.equation(block: true, alt: "y equals − x squared plus 1")[$y = "−" x^(2) + 1$] #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 1).], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (0, 1).", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared minus 1")[$f ( x ) = "−" x^(2) − 1$] For each of the following exercises, determine if the parabola opens up or down. ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −2 x squared minus 6 x minus 7")[$f ( x ) = −2 x^(2) − 6 x − 7$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 6 x squared plus 2 x plus 3")[$f ( x ) = 6 x^(2) + 2 x + 3$] #solutionbox[ ⓐ down ⓑ up ] ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 4 x squared plus x minus 4")[$f ( x ) = 4 x^(2) + x − 4$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −9 x squared minus 24 x minus 16")[$f ( x ) = −9 x^(2) − 24 x − 16$] ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −3 x squared plus 5 x minus 1")[$f ( x ) = −3 x^(2) + 5 x − 1$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 4 x plus 5")[$f ( x ) = 2 x^(2) − 4 x + 5$] #solutionbox[ ⓐ down ⓑ up ] ⓐ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared plus 3 x minus 4")[$f ( x ) = x^(2) + 3 x − 4$] ⓑ #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals −4 x squared minus 12 x minus 9")[$f ( x ) = −4 x^(2) − 12 x − 9$] #strong[Find the Axis of Symmetry and Vertex of a Parabola] In the following functions, find ⓐ the equation of the axis of symmetry and ⓑ the vertex of its graph. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 8 x minus 1")[$f ( x ) = x^(2) + 8 x − 1$] #solutionbox[ ⓐ #math.equation(block: false, alt: "x equals −4")[$x = −4$]; ⓑ #math.equation(block: false, alt: "open parenthesis −4 , −17 close parenthesis")[$( −4 , −17 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 10 x plus 25")[$f ( x ) = x^(2) + 10 x + 25$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared plus 2 x plus 5")[$f ( x ) = "−" x^(2) + 2 x + 5$] #solutionbox[ ⓐ #math.equation(block: false, alt: "x equals 1")[$x = 1$]; ⓑ #math.equation(block: false, alt: "open parenthesis 1 , 6 close parenthesis")[$( 1 , 6 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals −2 x squared minus 8 x minus 3")[$f ( x ) = −2 x^(2) − 8 x − 3$] #strong[Find the Intercepts of a Parabola] In the following exercises, find the intercepts of the parabola whose function is given. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 7 x plus 6")[$f ( x ) = x^(2) + 7 x + 6$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 6 close parenthesis ;")[$( 0 , 6 ) ;$] #emph[x]-intercept #math.equation(block: false, alt: "open parenthesis −1 , 0 close parenthesis , open parenthesis −6 , 0 close parenthesis")[$( −1 , 0 ) , ( −6 , 0 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 10 x minus 11")[$f ( x ) = x^(2) + 10 x − 11$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 8 x plus 12")[$f ( x ) = x^(2) + 8 x + 12$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 12 close parenthesis ;")[$( 0 , 12 ) ;$] #emph[x]-intercept #math.equation(block: false, alt: "open parenthesis −2 , 0 close parenthesis , open parenthesis −6 , 0 close parenthesis")[$( −2 , 0 ) , ( −6 , 0 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 5 x plus 6")[$f ( x ) = x^(2) + 5 x + 6$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared plus 8 x minus 19")[$f ( x ) = "−" x^(2) + 8 x − 19$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , −19 close parenthesis ;")[$( 0 , −19 ) ;$] #emph[x]-intercept: none ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals −3 x squared plus x minus 1")[$f ( x ) = −3 x^(2) + x − 1$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 6 x plus 13")[$f ( x ) = x^(2) + 6 x + 13$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 13 close parenthesis ;")[$( 0 , 13 ) ;$] #emph[x]-intercept: none ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 8 x plus 12")[$f ( x ) = x^(2) + 8 x + 12$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 4 x squared minus 20 x plus 25")[$f ( x ) = 4 x^(2) − 20 x + 25$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , 25 close parenthesis ;")[$( 0 , 25 ) ;$] #emph[x]-intercept #math.equation(block: false, alt: "open parenthesis the fraction 5 over 2 , 0 close parenthesis")[$( frac(5, 2) , 0 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared minus 14 x minus 49")[$f ( x ) = "−" x^(2) − 14 x − 49$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared minus 6 x minus 9")[$f ( x ) = "−" x^(2) − 6 x − 9$] #solutionbox[ #emph[y]-intercept: #math.equation(block: false, alt: "open parenthesis 0 , −9 close parenthesis ;")[$( 0 , −9 ) ;$] #emph[x]-intercept #math.equation(block: false, alt: "open parenthesis −3 , 0 close parenthesis")[$( −3 , 0 )$] ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 4 x squared plus 4 x plus 1")[$f ( x ) = 4 x^(2) + 4 x + 1$] #strong[Graph Quadratic Functions Using Properties] In the following exercises, graph the function by using its properties. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 6 x plus 5")[$f ( x ) = x^(2) + 6 x + 5$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 3, negative 4). The y-intercept, point (0, 5), is plotted as are the x-intercepts, (negative 5, 0) and (negative 1, 0).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 3, negative 4). The y-intercept, point (0, 5), is plotted as are the x-intercepts, (negative 5, 0) and (negative 1, 0).", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 4 x minus 12")[$f ( x ) = x^(2) + 4 x − 12$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 4 x plus 3")[$f ( x ) = x^(2) + 4 x + 3$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1). The y-intercept, point (0, 3), is plotted as are the x-intercepts, (negative 3, 0) and (negative 1, 0).], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, negative 1). The y-intercept, point (0, 3), is plotted as are the x-intercepts, (negative 3, 0) and (negative 1, 0).", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared minus 6 x plus 8")[$f ( x ) = x^(2) − 6 x + 8$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 9 x squared plus 12 x plus 4")[$f ( x ) = 9 x^(2) + 12 x + 4$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 4 to 4. The parabola has a vertex at (negative 2 thirds, 0). The y-intercept, point (0, 4), is plotted. The axis of symmetry, x equals negative 2 thirds, is plotted as a dashed vertical line.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 4 to 4. The y-axis of the plane runs from negative 4 to 4. The parabola has a vertex at (negative 2 thirds, 0). The y-intercept, point (0, 4), is plotted. The axis of symmetry, x equals negative 2 thirds, is plotted as a dashed vertical line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared plus 8 x minus 16")[$f ( x ) = "−" x^(2) + 8 x − 16$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared plus 2 x minus 7")[$f ( x ) = "−" x^(2) + 2 x − 7$] #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 15 to 10. The parabola has a vertex at (1, negative 6). The y-intercept, point (0, negative 7), is plotted. The axis of symmetry, x equals 1, is plotted as a dashed vertical line.], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 15 to 10. The parabola has a vertex at (1, negative 6). The y-intercept, point (0, negative 7), is plotted. The axis of symmetry, x equals 1, is plotted as a dashed vertical line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 5 x squared plus 2")[$f ( x ) = 5 x^(2) + 2$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 4 x plus 1")[$f ( x ) = 2 x^(2) − 4 x + 1$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, negative 1). The y-intercept, point (0, 1), is plotted as are the x-intercepts, approximately (0.3, 0) and (1.7, 0). The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, negative 1). The y-intercept, point (0, 1), is plotted as are the x-intercepts, approximately (0.3, 0) and (1.7, 0). The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 3 x squared minus 6 x minus 1")[$f ( x ) = 3 x^(2) − 6 x − 1$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 2 x squared minus 4 x plus 2")[$f ( x ) = 2 x^(2) − 4 x + 2$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, 0). This point is the only x-intercept. The y-intercept, point (0, 2), is plotted. The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, 0). This point is the only x-intercept. The y-intercept, point (0, 2), is plotted. The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals −4 x squared minus 6 x minus 2")[$f ( x ) = −4 x^(2) − 6 x − 2$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals − x squared minus 4 x plus 2")[$f ( x ) = "−" x^(2) − 4 x + 2$] #solutionbox[ #figure(figph[This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, 6). The y-intercept, point (0, 2), is plotted as are the x-intercepts, approximately (negative 4.4, 0) and (0.4, 0). The axis of symmetry is the vertical line x equals 2, plotted as a dashed line.], alt: "This figure shows a downward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 2, 6). The y-intercept, point (0, 2), is plotted as are the x-intercepts, approximately (negative 4.4, 0) and (0.4, 0). The axis of symmetry is the vertical line x equals 2, plotted as a dashed line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals x squared plus 6 x plus 8")[$f ( x ) = x^(2) + 6 x + 8$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 5 x squared minus 10 x plus 8")[$f ( x ) = 5 x^(2) − 10 x + 8$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, 3). The y-intercept, point (0, 8), is plotted; there are no x-intercepts. The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (1, 3). The y-intercept, point (0, 8), is plotted; there are no x-intercepts. The axis of symmetry is the vertical line x equals 1, plotted as a dashed line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals −16 x squared plus 24 x minus 9")[$f ( x ) = −16 x^(2) + 24 x − 9$] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 3 x squared plus 18 x plus 20")[$f ( x ) = 3 x^(2) + 18 x + 20$] #solutionbox[ #figure(figph[This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 3, negative 7). The x-intercepts are plotted at the approximate points (negative 4.5, 0) and (negative 1.5, 0). The axis of symmetry is the vertical line x equals negative 3, plotted as a dashed line.], alt: "This figure shows an upward-opening parabola graphed on the x y-coordinate plane. The x-axis of the plane runs from negative 10 to 10. The y-axis of the plane runs from negative 10 to 10. The parabola has a vertex at (negative 3, negative 7). The x-intercepts are plotted at the approximate points (negative 4.5, 0) and (negative 1.5, 0). The axis of symmetry is the vertical line x equals negative 3, plotted as a dashed line.", caption: none) ] #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals −2 x squared plus 8 x minus 10")[$f ( x ) = −2 x^(2) + 8 x − 10$] #strong[Solve Maximum and Minimum Applications] In the following exercises, find the maximum or minimum value of each function. #math.equation(block: true, alt: "f open parenthesis x close parenthesis equals 2 x squared plus x minus 1")[$f ( x ) = 2 x^(2) + x − 1$] #solutionbox[ The minimum value is #math.equation(block: false, alt: "minus the fraction 9 over 8")[$− frac(9, 8)$] when #math.equation(block: false, alt: "x equals minus the fraction 1 over 4 .")[$x = − frac(1, 4) .$] ] #math.equation(block: true, alt: "y equals −4 x squared plus 12 x minus 5")[$y = −4 x^(2) + 12 x − 5$] #math.equation(block: true, alt: "y equals x squared minus 6 x plus 15")[$y = x^(2) − 6 x + 15$] #solutionbox[ The minimum value is 6 when #emph[x] = 3. ] #math.equation(block: true, alt: "y equals − x squared plus 4 x minus 5")[$y = "−" x^(2) + 4 x − 5$] #math.equation(block: true, alt: "y equals −9 x squared plus 16")[$y = −9 x^(2) + 16$] #solutionbox[ The maximum value is 16 when #emph[x] = 0. ] #math.equation(block: true, alt: "y equals 4 x squared minus 49")[$y = 4 x^(2) − 49$] In the following exercises, solve. Round answers to the nearest tenth. An arrow is shot vertically upward from a platform 45 feet high at a rate of 168 ft/sec. Use the quadratic function #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 168#emph[t] + 45 find how long it will take the arrow to reach its maximum height, and then find the maximum height. #solutionbox[ In 5.3 sec the arrow will reach maximum height of 486 ft. ] A stone is thrown vertically upward from a platform that is 20 feet height at a rate of 160 ft/sec. Use the quadratic function #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 160#emph[t] + 20 to find how long it will take the stone to reach its maximum height, and then find the maximum height. A ball is thrown vertically upward from the ground with an initial velocity of 109 ft/sec. Use the quadratic function #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 109#emph[t] + 0 to find how long it will take for the ball to reach its maximum height, and then find the maximum height. #solutionbox[ In 3.4 seconds the ball will reach its maximum height of 185.6 feet. ] A ball is thrown vertically upward from the ground with an initial velocity of 122 ft/sec. Use the quadratic function #emph[h] (#emph[t]) = −16#emph[t]#super[2] + 122#emph[t] + 0 to find how long it will take for the ball to reach its maximum height, and then find the maximum height. A computer store owner estimates that by charging #emph[x] dollars each for a certain computer, he can sell 40 − #emph[x] computers each week. The quadratic function #emph[R] (#emph[x]) = −#emph[x]#super[2] +40#emph[x] is used to find the revenue, #emph[R], received when the selling price of a computer is #emph[x], Find the selling price that will give him the maximum revenue, and then find the amount of the maximum revenue. #solutionbox[ A selling price of \$20 per computer will give the maximum revenue of \$400. ] A retailer who sells backpacks estimates that by selling them for #emph[x] dollars each, he will be able to sell 100 − #emph[x] backpacks a month. The quadratic function #emph[R] (#emph[x]) = −#emph[x]#super[2] +100#emph[x] is used to find the #emph[R], received when the selling price of a backpack is #emph[x]. Find the selling price that will give him the maximum revenue, and then find the amount of the maximum revenue. A retailer who sells fashion boots estimates that by selling them for #emph[x] dollars each, he will be able to sell 70 − #emph[x] boots a week. Use the quadratic function #emph[R] (#emph[x]) = −#emph[x]#super[2] +70#emph[x] to find the revenue received when the average selling price of a pair of fashion boots is #emph[x]. Find the selling price that will give him the maximum revenue, and then find the amount of the maximum revenue per day. #solutionbox[ A selling price of \$35 per pair of boots will give a maximum revenue of \$1,225. ] A cell phone company estimates that by charging #emph[x] dollars each for a certain cell phone, they can sell 8 − #emph[x] cell phones per day. Use the quadratic function #emph[R] (#emph[x]) = −#emph[x]#super[2] +8#emph[x] to find the revenue received per day when the selling price of a cell phone is #emph[x]. Find the selling price that will give them the maximum revenue per day, and then find the amount of the maximum revenue. A rancher is going to fence three sides of a corral next to a river. He needs to maximize the corral area using 240 feet of fencing. The quadratic equation #math.equation(block: false, alt: "A open parenthesis x close parenthesis equals x 120 minus the fraction x over 2")[$A ( x ) = x 120 − frac(x, 2)$] gives the area of the corral, #emph[A], for the length, #emph[x], of the corral along the river. Find the length of the corral along the river that will give the maximum area, and then find the maximum area of the corral. #solutionbox[ The length of one side along the river is 120 feet and the maximum are is 7,200 square feet. ] A veterinarian is enclosing a rectangular outdoor running area against his building for the dogs he cares for. He needs to maximize the area using 100 feet of fencing. The quadratic function #math.equation(block: false, alt: "A open parenthesis x close parenthesis equals x 50 minus the fraction x over 2")[$A ( x ) = x 50 − frac(x, 2)$] gives the area, #emph[A], of the dog run for the length, #emph[x], of the building that will border the dog run. Find the length of the building that should border the dog run to give the maximum area, and then find the maximum area of the dog run. A land owner is planning to build a fenced in rectangular patio behind his garage, using his garage as one of the “walls.” He wants to maximize the area using 80 feet of fencing. The quadratic function #emph[A] (#emph[x]) = #emph[x] (80 − 2#emph[x]) gives the area of the patio, where #emph[x] is the width of one side. Find the maximum area of the patio. #solutionbox[ The maximum area of the patio is 800 feet. ] A family of three young children just moved into a house with a yard that is not fenced in. The previous owner gave them 300 feet of fencing to use to enclose part of their backyard. Use the quadratic function #math.equation(block: false, alt: "A open parenthesis x close parenthesis equals x 150 minus the fraction x over 2")[$A ( x ) = x 150 − frac(x, 2)$] determine the maximum area of the fenced in yard. ==== Writing Exercise How do the graphs of the functions #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared")[$f ( x ) = x^(2)$] and #math.equation(block: false, alt: "f open parenthesis x close parenthesis equals x squared minus 1")[$f ( x ) = x^(2) − 1$] differ? We graphed them at the start of this section. What is the difference between their graphs? How are their graphs the same? #solutionbox[ Answers will vary. ] Explain the process of finding the vertex of a parabola. Explain how to find the intercepts of a parabola. #solutionbox[ Answers will vary. ] How can you use the discriminant when you are graphing a quadratic function? ==== Self Check ⓐ After completing the exercises, use this checklist to evaluate your mastery of the objectives of this section. #figure(figph[This table provides a checklist to evaluate mastery of the objectives of this section. Choose how would you respond to the statement “I can recognize the graph of a quadratic equation.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can find the axis of symmetry and vertex of a parabola.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can find the intercepts of a parabola.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can graph quadratic equations in two variables.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can solve maximum and minimum applications.” “Confidently,” “with some help,” or “No, I don’t get it.”], alt: "This table provides a checklist to evaluate mastery of the objectives of this section. Choose how would you respond to the statement “I can recognize the graph of a quadratic equation.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can find the axis of symmetry and vertex of a parabola.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can find the intercepts of a parabola.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can graph quadratic equations in two variables.” “Confidently,” “with some help,” or “No, I don’t get it.” Choose how would you respond to the statement “I can solve maximum and minimum applications.” “Confidently,” “with some help,” or “No, I don’t get it.”", caption: none) ⓑ After looking at the checklist, do you think you are well-prepared for the next section? Why or why not?