#set document(title: "9.5 Solve Applications of Quadratic Equations", 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.5#h(0.6em)Solve Applications of Quadratic Equations #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Before you get started, take this readiness quiz. The sum of two consecutive odd numbers is −100. Find the numbers. #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "minus 51 , minus 49")[$− 51 , #h(0.2em) − 49$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve: #math.equation(block: false, alt: "the fraction 2 over x plus 1 plus the fraction 1 over x minus 1 equals the fraction 1 over x squared minus 1 .")[$frac(2, x + 1) + frac(1, x − 1) = frac(1, x^(2) − 1) .$] #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "x equals the fraction 2 over 3")[$x = frac(2, 3)$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the length of the hypotenuse of a right triangle with legs 5 inches and 12 inches. #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "13 inches")[$13 #h(0.2em) "inches"$] ] ] === Solve Applications Modeled by Quadratic Equations We solved some applications that are modeled by quadratic equations earlier, when the only method we had to solve them was factoring. Now that we have more methods to solve quadratic equations, we will take another look at applications. Let’s first summarize the methods we now have to solve quadratic equations. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Methods to Solve Quadratic Equations] + Factoring + Square Root Property + Completing the Square + Quadratic Formula ] As you solve each equation, choose the method that is most convenient for you to work the problem. As a reminder, we will copy our usual Problem-Solving Strategy here so we can follow the steps. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Use a Problem-Solving Strategy.] + #strong[Read] the problem. Make sure all the words and ideas are understood. + #strong[Identify] what we are looking for. + #strong[Name] what we are looking for. Choose a variable to represent that quantity. + #strong[Translate] into an equation. It may be helpful to restate the problem in one sentence with all the important information. Then, translate the English sentence into an algebraic equation. + #strong[Solve] the equation using algebra techniques. + #strong[Check] the answer in the problem and make sure it makes sense. + #strong[Answer] the question with a complete sentence ] We have solved number applications that involved consecutive even and odd integers, by modeling the situation with linear equations. Remember, we noticed each even integer is 2 more than the number preceding it. If we call the first one #emph[n], then the next one is #emph[n] + 2. The next one would be #emph[n] + 2 + 2 or #emph[n] + 4. This is also true when we use odd integers. One set of even integers and one set of odd integers are shown below. #math.equation(block: true, alt: "Consecutive even integers, , Consecutive odd integers; 64 , 66 , 68, , 77 , 79 , 81; n, 1 to the power st even integer, n, 1 to the power st odd integer; n plus 2, 2 to the power nd consecutive even integer, n plus 2, 2 to the power nd consecutive odd integer; n plus 4, 3 to the power rd consecutive even integer, n plus 4, 3 to the power rd consecutive odd integer")[$& & & "Consecutive even integers" & #h(3em) & & & & & "Consecutive odd integers" \ & & & 64 , 66 , 68 & #h(3em) & & & & & 77 , 79 , 81 \ n & & & 1^("st") #h(0.2em) "even integer" & & & #h(3em) n & & & 1^("st") #h(0.2em) "odd integer" \ n + 2 & & & 2^("nd") #h(0.2em) "consecutive even integer" & & & #h(3em) n + 2 & & & 2^("nd") #h(0.2em) "consecutive odd integer" \ n + 4 & & & 3^("rd") #h(0.2em) "consecutive even integer" & & & #h(3em) n + 4 & & & 3^("rd") #h(0.2em) "consecutive odd integer"$]Some applications of odd or even consecutive integers are modeled by quadratic equations. The notation above will be helpful as you name the variables. #examplebox("Example 1")[][ The product of two consecutive odd integers is 195. Find the integers. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, [#strong[Step 1. Read] the problem.], [], [#strong[Step 2. Identify] what we are looking for.], [We are looking for two consecutive odd integers.], [#strong[Step 3. Name] what we are looking for.], [Let #math.equation(block: false, alt: "n equals")[$n =$] the first odd integer.], [], [#math.equation(block: false, alt: "n plus 2 equals")[$n + 2 =$] the next odd integer], [#strong[Step 4. Translate] into an equation. State the problem in one sentence.], [“The product of two consecutive odd integers is 195.”], [], [The product of the first odd integer and the second odd integer is 195.], [Translate into an equation.], [#math.equation(block: false, alt: "n open parenthesis n plus 2 close parenthesis, equals, 195; n squared plus 2 n, equals, 195")[$#h(3.5em) n ( n + 2 ) & = & 195 \ n^(2) + 2 n & = & 195$]], [#strong[Step 5. Solve] the equation. Distribute. #linebreak() Write the equation in standard form. #linebreak() Factor.], [#math.equation(block: false, alt: "n squared plus 2 n minus 195, equals, 0; open parenthesis n plus 15 close parenthesis open parenthesis n minus 13 close parenthesis, equals, 0")[$n^(2) + 2 n − 195 & = & 0 \ ( n + 15 ) ( n − 13 ) & = & 0$]], [Use the Zero Product Property. #linebreak() Solve each equation.], [#math.equation(block: false, alt: "n plus 15 equals 0 n minus 13 equals 0; n equals −15 , n equals 13")[$n + 15 = 0 #h(0.5em) n − 13 = 0 \ n = −15 , #h(0.5em) n = 13$]], [There are two values of #emph[n] that are solutions. This will give us two pairs of consecutive odd integers for our solution.], [], [#math.equation(block: false, alt: "First odd integer n equals 13, First odd integer n equals −15; next odd integer n plus 2, next odd integer n plus 2; 13 plus 2, minus 15 plus 2; 15, −13")[$#h(8em) "First odd integer" #h(0.2em) n = 13 & & & "First odd integer" #h(0.2em) n = −15 \ "next odd integer" #h(0.2em) n + 2 & & & "next odd integer" #h(0.2em) n + 2 \ #h(5.95em) 13 + 2 & & & #h(5.7em) − 15 + 2 \ #h(5.4em) 15 & & & #h(5em) −13$]], [], [#strong[Step 6. Check] the answer.], [], [Do these pairs work?], [], [Are they consecutive odd integers?], [], [#math.equation(block: false, alt: "13 , 15, yes; minus 13 , −15, yes")[$13 , 15 & & & "yes" \ − 13 , −15 & & & "yes"$]], [], [Is their product 195?], [], [#math.equation(block: false, alt: "13 times 15, equals, 195, yes; minus 13 open parenthesis −15 close parenthesis, equals, 195, yes")[$13 · 15 & = & 195 & & & "yes" \ − 13 ( −15 ) & = & 195 & & & "yes"$]], [], [#strong[Step 7. Answer] the question.], [Two consecutive odd integers whose product is 195 are 13, 15 and −13, −15.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The product of two consecutive odd integers is 99. Find the integers. #solutionbox[ The two consecutive odd integers whose product is 99 are 9, 11, and −9, −11 ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The product of two consecutive even integers is 168. Find the integers. #solutionbox[ The two consecutive even integers whose product is 128 are 12, 14 and −12, −14. ] ] We will use the formula for the area of a triangle to solve the next example. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Area of a Triangle] For a triangle with base, #emph[b], and height, #emph[h], the area, #emph[A], is given by the formula #math.equation(block: false, alt: "A equals the fraction 1 over 2 b h .")[$A = frac(1, 2) b h .$] #figure(figph[Image of a trangle. The horizontal base side is labeled b, and a line segment labeled h is perpendicular to the base, connecting it to the opposite vertex.], alt: "Image of a trangle. The horizontal base side is labeled b, and a line segment labeled h is perpendicular to the base, connecting it to the opposite vertex.", caption: none) ] Recall that when we solve geometric applications, it is helpful to draw the figure. #examplebox("Example 2")[][ An architect is designing the entryway of a restaurant. She wants to put a triangular window above the doorway. Due to energy restrictions, the window can only have an area of 120 square feet and the architect wants the base to be 4 feet more than twice the height. Find the base and height of the window. #solutionbox[ #figure(table( columns: 3, align: left, inset: 6pt, [#strong[Step 1. Read] the problem. #linebreak() Draw a picture.], [], [#figure(figph[A geometric diagram depicts a triangle with a height 'h' drawn from its apex to its base, dividing it into two right-angled triangles. The total length of the base is labeled '2h + 4'.], alt: "A geometric diagram depicts a triangle with a height 'h' drawn from its apex to its base, dividing it into two right-angled triangles. The total length of the base is labeled '2h + 4'.", caption: none)], [#strong[Step 2. Identify] what we are looking for.], [], [We are looking for the base and height.], [#strong[Step 3. Name] what we are looking for.], [], [Let #emph[h] = the height of the triangle. #linebreak() 2#emph[h] + 4 = the base of the triangle], [#strong[Step 4. Translate] into an equation. #linebreak() We know the area. Write the #linebreak() formula for the area of a triangle.], [], [#math.equation(block: false, alt: "A equals the fraction 1 over 2 b h")[$#h(7.35em) A = frac(1, 2) b h$]], [#strong[Step 5. Solve] the equation. #linebreak() Substitute in the values.], [], [#math.equation(block: false, alt: "120 equals the fraction 1 over 2 open parenthesis 2 h plus 4 close parenthesis h")[$#h(6.5em) 120 = frac(1, 2) ( 2 h + 4 ) h$]], [Distribute.], [], [#math.equation(block: false, alt: "120 equals h squared plus 2 h")[$#h(6.5em) 120 = h^(2) + 2 h$]], [This is a quadratic equation, rewrite it in standard form.], [], [#math.equation(block: false, alt: "h squared plus 2 h minus 120 equals 0")[$#h(2.3em) h^(2) + 2 h − 120 = 0$]], [Factor.], [], [#math.equation(block: false, alt: "open parenthesis h minus 10 close parenthesis open parenthesis h plus 12 close parenthesis equals 0")[$#h(1.4em) ( h − 10 ) ( h + 12 ) = 0$]], [Use the Zero Product Property.], [], [#math.equation(block: false, alt: "h minus 10 equals 0 h plus 12 equals 0")[$h − 10 = 0 #h(1em) h + 12 = 0$]], [Simplify.], [], [#math.equation(block: false, alt: "h equals 10 , h equals minus 12")[$#h(2.2em) h = 10 , #h(1.9em) cancel(h = − 12)$]], [Since #emph[h] is the height of a window, a value of #emph[h] = −12 does not make sense.], [], [], [The height of the triangle #math.equation(block: false, alt: "h equals 10 .")[$h = 10 .$]], [], [], [The base of the triangle #math.equation(block: false, alt: "2 h plus 4 .")[$2 h + 4 .$] #linebreak() #math.equation(block: false, alt: "2 times 10 plus 4")[$#h(9em) 2 · 10 + 4$] #linebreak() #math.equation(block: false, alt: "24")[$#h(9.4em) 24$]], [], [], [#strong[Step 6. Check] the answer. #linebreak() Does a triangle with height 10 and base 24 have area 120? Yes.], [], [], [#strong[Step 7. Answer] the question.], [], [The height of the triangular window is 10 feet and the base is 24 feet.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the base and height of a triangle whose base is four inches more than six times its height and has an area of 456 square inches. #solutionbox[ The height of the triangle is 12 inches and the base is 76 inches. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ If a triangle that has an area of 110 square feet has a base that is two feet less than twice the height, what is the length of its base and height? #solutionbox[ The height of the triangle is 11 feet and the base is 20 feet. ] ] In the two preceding examples, the number in the radical in the #strong[Quadratic Formula] was a perfect square and so the solutions were rational numbers. If we get an irrational number as a solution to an application problem, we will use a calculator to get an approximate value. We will use the formula for the area of a rectangle to solve the next example. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Area of a Rectangle] For a rectangle with length, #emph[L], and width, #emph[W], the area, #emph[A], is given by the formula #emph[A] = #emph[LW]. #figure(figph[Image shows a rectangle. All four angles are marked as right angles. The longer, horizontal side is labeled L and the shorter, vertical side is labeled w.], alt: "Image shows a rectangle. All four angles are marked as right angles. The longer, horizontal side is labeled L and the shorter, vertical side is labeled w.", caption: none) ] #examplebox("Example 3")[][ Mike wants to put 150 square feet of artificial turf in his front yard. This is the maximum area of artificial turf allowed by his homeowners association. He wants to have a rectangular area of turf with length one foot less than 3 times the width. Find the length and width. Round to the nearest tenth of a foot. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([Step 1. #strong[Read] the problem. #linebreak() Draw a picture.], [#figure(figph[A rectangle is shown with its width labeled as 'w' and its length labeled as '3w - 1'.], alt: "A rectangle is shown with its width labeled as 'w' and its length labeled as '3w - 1'.", caption: none)]), [Step 2. #strong[Identify] what we are looking for.], [We are looking for the length and width.], [Step 3. #strong[Name] what we are looking for.], [Let #math.equation(block: false, alt: "w equals")[$#h(0.5em) w =$] the width of the rectangle. #linebreak() #math.equation(block: false, alt: "3 w minus 1 equals")[$3 w − 1 =$] the length of the rectangle], [Step 4. #strong[Translate] into an equation. #linebreak() We know the area. Write the formula for the area of a rectangle.], [#figure(figph[Area equals length multiplied by width. A = L \* W.], alt: "Area equals length multiplied by width. A = L * W.", caption: none)], [Step 5. #strong[Solve] the equation. Substitute in the values.], [#figure(figph[A mathematical equation is displayed, reading 150 = (3w - 1)w. The numbers and variables are in a dark gray font against a white background.], alt: "A mathematical equation is displayed, reading 150 = (3w - 1)w. The numbers and variables are in a dark gray font against a white background.", caption: none)], [Distribute.], [#figure(figph[A mathematical equation is displayed on a white background: '150 = 3w^2 - W'.], alt: "A mathematical equation is displayed on a white background: '150 = 3w^2 - W'.", caption: none)], [This is a quadratic equation; rewrite it in standard form. #linebreak() Solve the equation using the Quadratic Formula.], [#figure(figph[Two quadratic equations are displayed: the general form ax^2 + bx + c = 0 in red, and a specific example 3w^2 - w - 150 = 0 in black, both set equal to zero.], alt: "Two quadratic equations are displayed: the general form ax^2 + bx + c = 0 in red, and a specific example 3w^2 - w - 150 = 0 in black, both set equal to zero.", caption: none)], [Identify the #math.equation(block: false, alt: "a , b , c")[$a , b , c$] values.], [#figure(figph[The image displays the values of three variables: a = 3, b = -1, and c = -150, written in a horizontal line with different colors for each assignment. The text is on a white background.], alt: "The image displays the values of three variables: a = 3, b = -1, and c = -150, written in a horizontal line with different colors for each assignment. The text is on a white background.", caption: none)], [Write the Quadratic Formula.], [#figure(figph[A mathematical formula for W, showing W equals negative b plus or minus the square root of b squared minus 4ac, all divided by 2q. This is a variation of the quadratic formula.], alt: "A mathematical formula for W, showing W equals negative b plus or minus the square root of b squared minus 4ac, all divided by 2q. This is a variation of the quadratic formula.", caption: none)], [Then substitute in the values of #math.equation(block: false, alt: "a , b , c")[$a , b , c$].], [#figure(figph[The quadratic formula is shown calculating W: W = \[-(-1) ± √((-1)² - 4·3·(-150))\] / (2·3), with 'a' = 3, 'b' = -1, and 'c' = -150 highlighted.], alt: "The quadratic formula is shown calculating W: W = [-(-1) ± √((-1)² - 4·3·(-150))] / (2·3), with 'a' = 3, 'b' = -1, and 'c' = -150 highlighted.", caption: none)], [Simplify.], [#figure(figph[A mathematical equation is displayed on a white background, reading 'W = (1 plus or minus the square root of 1 + 1800) divided by 6'.], alt: "A mathematical equation is displayed on a white background, reading 'W = (1 plus or minus the square root of 1 + 1800) divided by 6'.", caption: none) #linebreak() #figure(figph[A mathematical equation displaying W equals the fraction 1 plus or minus the square root of 1801, all divided by 6.], alt: "A mathematical equation displaying W equals the fraction 1 plus or minus the square root of 1801, all divided by 6.", caption: none)], [Rewrite to show two solutions.], [#figure(figph[Two mathematical expressions are shown for W: W = (1 + sqrt(1801))/6 and W = (1 - sqrt(1801))/6.], alt: "Two mathematical expressions are shown for W: W = (1 + sqrt(1801))/6 and W = (1 - sqrt(1801))/6.", caption: none)], [Approximate the answers using a calculator. #linebreak() We eliminate the negative solution for the width.], [#figure(figph[Mathematical calculations showing the length of an object. The width 'w' is approximately 7.2. The length is calculated as 3w - 1, substituting 7.2 for 'w' to get approximately 20.6. A crossed-out value of w ≈ 6.9 is also visible.], alt: "Mathematical calculations showing the length of an object. The width 'w' is approximately 7.2. The length is calculated as 3w - 1, substituting 7.2 for 'w' to get approximately 20.6. A crossed-out value of w ≈ 6.9 is also visible.", caption: none)], [Step 6. #strong[Check] the answer. #linebreak() Make sure that the answers make sense. Since the #linebreak() answers are approximate, the area will not come #linebreak() out exactly to 150.], [], [Step 7. #strong[Answer] the question.], [The width of the rectangle is #linebreak() approximately 7.2 feet and the #linebreak() length is approximately 20.6 feet.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The length of a 200 square foot rectangular vegetable garden is four feet less than twice the width. Find the length and width of the garden, to the nearest tenth of a foot. #solutionbox[ The length of the garden is approximately 18 feet and the width 11 feet. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ A rectangular tablecloth has an area of 80 square feet. The width is 5 feet shorter than the length.What are the length and width of the tablecloth to the nearest tenth of a foot.? #solutionbox[ The length of the tablecloth is approximatel 11.8 feet and the width 6.8 feet. ] ] The #strong[Pythagorean Theorem] gives the relation between the legs and hypotenuse of a right triangle. We will use the Pythagorean Theorem to solve the next example. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Pythagorean Theorem] In any right triangle, where #emph[a] and #emph[b] are the lengths of the legs, and #emph[c] is the length of the hypotenuse, #emph[a]#super[2] + #emph[b]#super[2] = #emph[c]#super[2]. #figure(figph[Image shows a right triangle with horizontal and vertical legs. The vertical leg is labeled a. The horizontal side is labeled b. The hypotenuse is labeled c.], alt: "Image shows a right triangle with horizontal and vertical legs. The vertical leg is labeled a. The horizontal side is labeled b. The hypotenuse is labeled c.", caption: none) ] #examplebox("Example 4")[][ Rene is setting up a holiday light display. He wants to make a ‘tree’ in the shape of two right triangles, as shown below, and has two 10-foot strings of lights to use for the sides. He will attach the lights to the top of a pole and to two stakes on the ground. He wants the height of the pole to be the same as the distance from the base of the pole to each stake. How tall should the pole be? #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([#strong[Step 1. Read] the problem. Draw a picture.], [#figure(figph[An isosceles triangle with an altitude drawn from the apex to the base. One slanted side is labeled '10', and downward arrows mark the base vertices.], alt: "An isosceles triangle with an altitude drawn from the apex to the base. One slanted side is labeled '10', and downward arrows mark the base vertices.", caption: none)]), [#strong[Step 2. Identify] what we are looking for.], [We are looking for the height of the pole.], [#strong[Step 3. Name] what we are looking for.], [The distance from the base of the pole to either stake is the same as the height of the pole. #linebreak() #linebreak() Let #math.equation(block: false, alt: "x equals")[$x =$] the height of the pole. #linebreak() #math.equation(block: false, alt: "x equals")[$#h(1.5em) x =$] the distance from pole to stake #linebreak() #linebreak() Each side is a right triangle. We draw a picture of one of them. #linebreak() #figure(figph[A right-angled triangle with two legs of length 'x' and a hypotenuse of length '10'.], alt: "A right-angled triangle with two legs of length 'x' and a hypotenuse of length '10'.", caption: none)], [#strong[Step 4. Translate] into an equation. #linebreak() We can use the Pythagorean Theorem to solve for #emph[x]. #linebreak() Write the Pythagorean Theorem.], [#math.equation(block: false, alt: "a squared plus b squared equals c squared")[$a^(2) + b^(2) = c^(2)$]], [#strong[Step 5. Solve] the equation. Substitute.], [#math.equation(block: false, alt: "x squared plus x squared equals 10 squared")[$#h(0.5em) x^(2) + x^(2) = 10^(2)$]], [Simplify.], [#math.equation(block: false, alt: "2 x squared equals 100")[$#h(2em) 2 x^(2) = 100$]], [Divide by 2 to isolate the variable.], [#math.equation(block: false, alt: "the fraction 2 x squared over 2 equals the fraction 100 over 2")[$#h(2em) frac(2 x^(2), 2) = frac(100, 2)$]], [Simplify.], [#math.equation(block: false, alt: "x squared equals 50")[$#h(2em) x^(2) = 50$]], [Use the Square Root Property.], [#math.equation(block: false, alt: "x equals plus or minus the square root of 50")[$#h(4.2em) x = ± sqrt(50)$]], [Simplify the radical.], [#math.equation(block: false, alt: "x equals plus or minus 5 the square root of 2")[$#h(4.2em) x = ± 5 sqrt(2)$]], [Rewrite to show two solutions.], [#math.equation(block: false, alt: "x equals 5 the square root of 2 , x equals −5 the square root of 2")[$x = 5 sqrt(2) , #h(0.5em) cancel(x = −5 sqrt(2))$]], [], [If we approximate this number to the #linebreak() nearest tenth with a calculator, we find #linebreak() #math.equation(block: false, alt: "x approximately equals 7.1")[$x ≈ 7.1$].], [#strong[Step 6. Check] the answer. #linebreak() Check on your own in the Pythagorean Theorem.], [], [#strong[Step 7. Answer] the question.], [The pole should be about 7.1 feet tall.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The sun casts a shadow from a flag pole. The height of the flag pole is three times the length of its shadow. The distance between the end of the shadow and the top of the flag pole is 20 feet. Find the length of the shadow and the length of the flag pole. Round to the nearest tenth. #solutionbox[ The length of the flag pole’s shadow is approximately 6.3 feet and the height of the flag pole is 18.9 feet. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The distance between opposite corners of a rectangular field is four more than the width of the field. The length of the field is twice its width. Find the distance between the opposite corners. Round to the nearest tenth. #solutionbox[ The distance between the opposite corners is approximately 7.2 feet. ] ] The height of a projectile shot upward from the ground is modeled by a quadratic equation. The initial velocity, #emph[v]#sub[0], propels the object up until gravity causes the object to fall back down. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Projectile motion] The height in feet, #emph[h] , of an object shot upwards into the air with initial velocity, #math.equation(block: false, alt: "v sub 0")[$v_(0)$], after #math.equation(block: false, alt: "t")[$t$] seconds is given by the formula #math.equation(block: true, alt: "h equals −16 t squared plus v sub 0 t")[$h = −16 t^(2) + v_(0) t$] ] We can use this formula to find how many seconds it will take for a firework to reach a specific height. #examplebox("Example 5")[][ A firework is shot upwards with initial velocity 130 feet per second. How many seconds will it take to reach a height of 260 feet? Round to the nearest tenth of a second. #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([#strong[Step 1. Read] the problem.], []), [#strong[Step 2. Identify] what we are looking for.], [We are looking for the number of #linebreak() seconds, which is time.], [#strong[Step 3. Name] what we are looking for.], [Let #math.equation(block: false, alt: "t equals")[$t =$] the number of seconds.], [#strong[Step 4. Translate] into an equation. Use the formula.], [#figure(figph[The mathematical formula h = -16t^2 + v₀t, commonly used to calculate the height (h) of a projectile at a given time (t), considering initial vertical velocity (v₀) and the effect of gravity.], alt: "The mathematical formula h = -16t^2 + v₀t, commonly used to calculate the height (h) of a projectile at a given time (t), considering initial vertical velocity (v₀) and the effect of gravity.", caption: none)], [#strong[Step 5. Solve] the equation. #linebreak() We know the velocity #math.equation(block: false, alt: "v sub 0")[$v_(0)$] is 130 feet per second. #linebreak() The height is 260 feet. Substitute the values.], [#figure(figph[A mathematical equation is displayed, reading 260 = -16t^2 + 130t, set against a plain white background.], alt: "A mathematical equation is displayed, reading 260 = -16t^2 + 130t, set against a plain white background.", caption: none)], [This is a quadratic equation, rewrite it in standard form. #linebreak() Solve the equation using the Quadratic Formula.], [#figure(figph[The general quadratic equation ax^2 + bx + c = 0 is shown alongside a specific example: 16t^2 - 130t + 260 = 0.], alt: "The general quadratic equation ax^2 + bx + c = 0 is shown alongside a specific example: 16t^2 - 130t + 260 = 0.", caption: none)], [Identify the values of #math.equation(block: false, alt: "a , b , c .")[$a , b , c .$]], [#figure(figph[The values a = 16, b = -130, and c = 260 are displayed in colorful text against a white background.], alt: "The values a = 16, b = -130, and c = 260 are displayed in colorful text against a white background.", caption: none)], [Write the Quadratic Formula.], [#figure(figph[The quadratic formula showing the solution for t equals negative b plus or minus the square root of b squared minus four a c all divided by two a. It is used to solve quadratic equations.], alt: "The quadratic formula showing the solution for t equals negative b plus or minus the square root of b squared minus four a c all divided by two a. It is used to solve quadratic equations.", caption: none)], [Then substitute in the values of #math.equation(block: false, alt: "a , b , c")[$a , b , c$].], [#figure(figph[A mathematical equation displays the quadratic formula with specific numerical values for a, b, and c, used to solve for 't'. The formula is t = \[-(-130) ×1 (sqrt((-130)^2 - 4\*16\*260))\] / (2\*16).], alt: "A mathematical equation displays the quadratic formula with specific numerical values for a, b, and c, used to solve for 't'. The formula is t = [-(-130) ×1 (sqrt((-130)^2 - 4*16*260))] / (2*16).", caption: none)], [Simplify.], [#figure(figph[A mathematical equation calculates 't' using a quadratic formula, involving the square root of 16,900 minus 16,640, added or subtracted from 130, all divided by 32.], alt: "A mathematical equation calculates 't' using a quadratic formula, involving the square root of 16,900 minus 16,640, added or subtracted from 130, all divided by 32.", caption: none) #linebreak() #figure(figph[A mathematical equation is displayed, showing 't = (130 ± √260) / 32' on a white background.], alt: "A mathematical equation is displayed, showing 't = (130 ± √260) / 32' on a white background.", caption: none)], [Rewrite to show two solutions.], [#figure(figph[Two mathematical expressions are displayed on a white background, showing the variable 't' defined by two different fractions: t = (130 + sqrt(260)) / 32 and t = (130 - sqrt(260)) / 32.], alt: "Two mathematical expressions are displayed on a white background, showing the variable 't' defined by two different fractions: t = (130 + sqrt(260)) / 32 and t = (130 - sqrt(260)) / 32.", caption: none)], [Approximate the answer with a calculator.], [#figure(figph[Text displays 't 4.6 seconds, t 3.6 seconds' on a white background.], alt: "Text displays 't 4.6 seconds, t 3.6 seconds' on a white background.", caption: none)], [#strong[Step 6. Check] the answer. #linebreak() The check is left to you.], [], [#strong[Step 7. Answer] the question.], [The firework will go up and then fall back #linebreak() down. As the firework goes up, it will #linebreak() reach 260 feet after approximately 3.6 #linebreak() seconds. It will also pass that height on #linebreak() the way down at 4.6 seconds.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ An arrow is shot from the ground into the air at an initial speed of 108 ft/s. Use the formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t] to determine when the arrow will be 180 feet from the ground. Round the nearest tenth. #solutionbox[ The arrow will reach 180 feet on its way up after 3 seconds and again on its way down after approximately 3.8 seconds. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ A man throws a ball into the air with a velocity of 96 ft/s. Use the formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t] to determine when the height of the ball will be 48 feet. Round to the nearest tenth. #solutionbox[ The ball will reach 48 feet on its way up after approximately .6 second and again on its way down after approximately 5.4 seconds. ] ] We have solved uniform motion problems using the formula #emph[D] = #emph[rt] in previous chapters. We used a table like the one below to organize the information and lead us to the equation. #figure(figph[Image shows the template for a table with three rows and four columns. The first column is empty. The second column is labeled “Rate.” The third column is labeled “Time.” The fourth column is labeled “Distance.” The labels are written in the equation Rate times Time equals Distance. There is one extra cell at the bottom of the fourth column.], alt: "Image shows the template for a table with three rows and four columns. The first column is empty. The second column is labeled “Rate.” The third column is labeled “Time.” The fourth column is labeled “Distance.” The labels are written in the equation Rate times Time equals Distance. There is one extra cell at the bottom of the fourth column.", caption: none) The formula #emph[D] = #emph[rt] assumes we know #emph[r] and #emph[t] and use them to find #emph[D]. If we know #emph[D] and #emph[r] and need to find #emph[t], we would solve the equation for #emph[t] and get the formula #math.equation(block: false, alt: "t equals the fraction D over r .")[$t = frac(D, r) .$] Some uniform motion problems are also modeled by quadratic equations. #examplebox("Example 6")[][ Professor Smith just returned from a conference that was 2,000 miles east of his home. His total time in the airplane for the round trip was 9 hours. If the plane was flying at a rate of 450 miles per hour, what was the speed of the jet stream? #solutionbox[ This is a uniform motion situation. A diagram will help us visualize the situation. #linebreak() #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, [#figure(figph[Diagram first shows motion of the plane at 450 miles per hour with an arrow to the right. The plane is traveling 2000 miles with the wind, represented by the expression 450 plus r. The jet stream motion is to the right. The round trip takes 9 hours. At the bottom of the diagram, an arrow to the left models the return motion of the plane. The plane’s velocity is 450 miles per hour, and the motion is 2000 miles against the wind modeled by the expression 450 – r.], alt: "Diagram first shows motion of the plane at 450 miles per hour with an arrow to the right. The plane is traveling 2000 miles with the wind, represented by the expression 450 plus r. The jet stream motion is to the right. The round trip takes 9 hours. At the bottom of the diagram, an arrow to the left models the return motion of the plane. The plane’s velocity is 450 miles per hour, and the motion is 2000 miles against the wind modeled by the expression 450 – r.", caption: none)], [], [We fill in the chart to organize the information.], [], [We are looking for the speed of the jet stream.], [Let #math.equation(block: false, alt: "r equals")[$r =$] the speed of the jet stream.], [When the plane flies with the wind, the wind increases its speed and so the rate is 450 + #emph[r].], [], [When the plane flies against the wind, the wind decreases its speed and the rate is 450 − #emph[r].], [], )) #figure(table( columns: 2, align: left, inset: 6pt, table.header([Write in the rates. #linebreak() Write in the distances. #linebreak() Since #math.equation(block: false, alt: "D equals r times t")[$D = r · t$], we solve for #linebreak() #math.equation(block: false, alt: "t")[$t$] and get #math.equation(block: false, alt: "t equals the fraction D over r")[$t = frac(D, r)$]. #linebreak() We divide the distance by #linebreak() the rate in each row, and #linebreak() place the expression in the #linebreak() time column.], [#figure(figph[A table illustrates a rate-time-distance problem for an aircraft with headwind and tailwind. Headwind: Rate (450-r), Time (2000/(450-r)), Distance (2000). Tailwind: Rate (450+r), Time (2000/(450+r)), Distance (2000). Total time is 9.], alt: "A table illustrates a rate-time-distance problem for an aircraft with headwind and tailwind. Headwind: Rate (450-r), Time (2000/(450-r)), Distance (2000). Tailwind: Rate (450+r), Time (2000/(450+r)), Distance (2000). Total time is 9.", caption: none)]), [We know the times add to 9 #linebreak() and so we write our equation.], [#math.equation(block: false, alt: "the fraction 2000 over 450 minus r plus the fraction 2000 over 450 plus r equals 9")[$frac(2000, 450 − r) + frac(2000, 450 + r) = 9 #h(4.6em)$]], [We multiply both sides by the LCD.], [#math.equation(block: false, alt: "open parenthesis 450 minus r close parenthesis open parenthesis 450 plus r close parenthesis open parenthesis the fraction 2000 over 450 minus r plus the fraction 2000 over 450 plus r close parenthesis equals 9 open parenthesis 450 minus r close parenthesis open parenthesis 450 plus r close parenthesis")[$( 450 − r ) ( 450 + r ) ( frac(2000, 450 − r) + frac(2000, 450 + r) ) = " " 9 ( 450 − r ) ( 450 + r ) #h(5.2em)$]], [Simplify.], [#math.equation(block: false, alt: "2000 open parenthesis 450 plus r close parenthesis plus 2000 open parenthesis 450 minus r close parenthesis equals 9 open parenthesis 450 minus r close parenthesis open parenthesis 450 plus r close parenthesis")[$#h(3em) 2000 ( 450 + r ) + 2000 ( 450 − r ) = " " 9 ( 450 − r ) ( 450 + r )$]], [Factor the 2,000.], [#math.equation(block: false, alt: "2000 open parenthesis 450 plus r plus 450 minus r close parenthesis equals 9 open parenthesis 450 squared minus r squared close parenthesis")[$#h(5.75em) 2000 ( 450 + r + 450 − r ) = " " 9 ( 450^(2) − r^(2) )$]], [Solve.], [#math.equation(block: false, alt: "2000 open parenthesis 900 close parenthesis equals 9 open parenthesis 450 squared minus r squared close parenthesis")[$#h(11.4em) 2000 ( 900 ) = " " 9 ( 450^(2) − r^(2) )$]], [Divide by 9.], [#math.equation(block: false, alt: "2000 open parenthesis 100 close parenthesis equals 450 squared minus r squared")[$#h(11.4em) 2000 ( 100 ) = " " 450^(2) − r^(2)$]], [Simplify.], [#math.equation(block: false, alt: "200000 equals 202500 minus r squared")[$#h(12.6em) 200000 = " " 202500 − r^(2)$] #linebreak() #math.equation(block: false, alt: "−2500 equals minus r squared")[$#h(12.95em) −2500 = − r^(2)$] #linebreak() #math.equation(block: false, alt: "50 equals r The speed of the jet stream.")[$#h(14.6em) 50 = r #h(0.5em) "The speed of the jet stream."$]], [Check: #linebreak() Is 50 mph a reasonable speed for the jet stream? Yes. #linebreak() If the plane is traveling 450 mph and the wind is 50 mph, #linebreak() Tailwind #math.equation(block: false, alt: "450 plus 50 equals 500 mph the fraction 2000 over 500 equals 4 hours")[$450 + 50 = 500 #h(0.2em) "mph" #h(1.5em) frac(2000, 500) = 4 #h(0.2em) "hours"$] #linebreak() Headwind #math.equation(block: false, alt: "450 minus 50 equals 400 mph the fraction 2000 over 400 equals 5 hours")[$450 − 50 = "400 mph" #h(1.5em) frac(2000, 400) = "5 hours"$] #linebreak() The times add to 9 hours, so it checks.], [], [], [The speed of the jet stream was 50 mph.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ MaryAnne just returned from a visit with her grandchildren back east . The trip was 2400 miles from her home and her total time in the airplane for the round trip was 10 hours. If the plane was flying at a rate of 500 miles per hour, what was the speed of the jet stream? #solutionbox[ The speed of the jet stream was 100 mph. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Gerry just returned from a cross country trip. The trip was 3000 miles from his home and his total time in the airplane for the round trip was 11 hours. If the plane was flying at a rate of 550 miles per hour, what was the speed of the jet stream? #solutionbox[ The speed of the jet stream was 50 mph. ] ] Work applications can also be modeled by quadratic equations. We will set them up using the same methods we used when we solved them with rational equations.We’ll use a similar scenario now. #examplebox("Example 7")[][ The weekly gossip magazine has a big story about the presidential election and the editor wants the magazine to be printed as soon as possible. She has asked the printer to run an extra printing press to get the printing done more quickly. Press \#1 takes 12 hours more than Press \#2 to do the job and when both presses are running they can print the job in 8 hours. How long does it take for each press to print the job alone? #solutionbox[ This is a work problem. A chart will help us organize the information. We are looking for how many hours it would take each press separately to complete the job. #figure(table( columns: 2, align: left, inset: 6pt, table.header([Let #math.equation(block: false, alt: "x equals")[$x =$] the number of hours for Press \#2 #linebreak() to complete the job. #linebreak() Enter the hours per job for Press \#1, #linebreak() Press \#2, and when they work together.], [#figure(figph[A table showing the number of hours needed to complete a job and the part of the job completed per hour for two presses (Press \#1, Press \#2) working individually and together.], alt: "A table showing the number of hours needed to complete a job and the part of the job completed per hour for two presses (Press #1, Press #2) working individually and together.", caption: none)]), [The part completed by Press \#1 plus the part #linebreak() completed by Press \#2 equals the #linebreak() amount completed together. #linebreak() Translate to an equation.], [#figure(figph[A mathematical equation illustrating a work-rate problem, showing 'Work completed by Press \#1 + Press \#2 = Together' with the formula 1/(x+12) + 1/x = 1/8.], alt: "A mathematical equation illustrating a work-rate problem, showing 'Work completed by Press #1 + Press #2 = Together' with the formula 1/(x+12) + 1/x = 1/8.", caption: none)], [Solve.], [#figure(figph[A mathematical equation is displayed on a white background. The equation is a fractional expression: 1 over (x + 12) plus 1 over x equals 1 over 8.], alt: "A mathematical equation is displayed on a white background. The equation is a fractional expression: 1 over (x + 12) plus 1 over x equals 1 over 8.", caption: none)], [Multiply by the LCD, #math.equation(block: false, alt: "8 x open parenthesis x plus 12 close parenthesis")[$8 x ( x + 12 )$].], [#figure(figph[A mathematical equation shown in red and black text on a white background. The equation is: 8x(x + 12)(1/(x + 12) + 1/x) = (1/8)8x(x + 12).], alt: "A mathematical equation shown in red and black text on a white background. The equation is: 8x(x + 12)(1/(x + 12) + 1/x) = (1/8)8x(x + 12).", caption: none)], [Simplify.], [#figure(figph[The image shows the algebraic equation 8x + 8(x + 12) = x(x + 12).], alt: "The image shows the algebraic equation 8x + 8(x + 12) = x(x + 12).", caption: none) #linebreak() #figure(figph[A mathematical equation is displayed, reading 8x + 8x + 96 = x^2 + 12x. The equation features variables, coefficients, constants, and an exponent.], alt: "A mathematical equation is displayed, reading 8x + 8x + 96 = x^2 + 12x. The equation features variables, coefficients, constants, and an exponent.", caption: none) #linebreak() #figure(figph[A quadratic equation is displayed: 0 = x^2 - 4x - 96, against a plain white background.], alt: "A quadratic equation is displayed: 0 = x^2 - 4x - 96, against a plain white background.", caption: none)], [Solve.], [#figure(figph[A mathematical equation shows '0 = (x - 12)(x + 8)' in a white font against a plain white background.], alt: "A mathematical equation shows '0 = (x - 12)(x + 8)' in a white font against a plain white background.", caption: none) #linebreak() #figure(figph[Two simple linear equations are displayed on a white background: 'x - 12 = 0' and 'x + 8 = 0', suggesting solutions for x.], alt: "Two simple linear equations are displayed on a white background: 'x - 12 = 0' and 'x + 8 = 0', suggesting solutions for x.", caption: none) #linebreak() #figure(figph[The image shows mathematical notation with text. It displays 'x = 12,' and then 'y = 8 hours' with the 'y = 8' part struck through, suggesting a correction or change to the value of y.], alt: "The image shows mathematical notation with text. It displays 'x = 12,' and then 'y = 8 hours' with the 'y = 8' part struck through, suggesting a correction or change to the value of y.", caption: none)], [Since the idea of negative hours does not make sense, we use the value #math.equation(block: false, alt: "x equals 12")[$x = 12$].], [#figure(figph[A mathematical expression displays '12 + 12' on a white background, with the '1' of each '12' in red and the '2's and plus sign in black. To the right, a fully red '12' stands alone.], alt: "A mathematical expression displays '12 + 12' on a white background, with the '1' of each '12' in red and the '2's and plus sign in black. To the right, a fully red '12' stands alone.", caption: none) #linebreak() #figure(figph[The image displays the text '24 hours' followed by '12 hours' on a white background, suggesting a comparison or timeline between the two durations.], alt: "The image displays the text '24 hours' followed by '12 hours' on a white background, suggesting a comparison or timeline between the two durations.", caption: none)], [Write our sentence answer.], [Press \#1 would take 24 hours and #linebreak() Press \#2 would take 12 hours to do the job alone.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ The weekly news magazine has a big story naming the Person of the Year and the editor wants the magazine to be printed as soon as possible. She has asked the printer to run an extra printing press to get the printing done more quickly. Press \#1 takes 6 hours more than Press \#2 to do the job and when both presses are running they can print the job in 4 hours. How long does it take for each press to print the job alone? #solutionbox[ Press \#1 would take 12 hours, and Press \#2 would take 6 hours to do the job alone. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Erlinda is having a party and wants to fill her hot tub. If she only uses the red hose it takes 3 hours more than if she only uses the green hose. If she uses both hoses together, the hot tub fills in 2 hours. How long does it take for each hose to fill the hot tub? #solutionbox[ The red hose take 6 hours and the green hose take 3 hours alone. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Access these online resources for additional instruction and practice with solving applications modeled by quadratic equations. - #link("https://openstax.org/l/37QuadForm6")[Quadratic Equation Word Problems] - #link("https://openstax.org/l/37QuadForm7")[Applying the Quadratic Formula] ] === Key Concepts - Methods to Solve Quadratic Equations - Factoring - Square Root Property - Completing the Square - Quadratic Formula - How to use a Problem-Solving Strategy. + #strong[Read] the problem. Make sure all the words and ideas are understood. + #strong[Identify] what we are looking for. + #strong[Name] what we are looking for. Choose a variable to represent that quantity. + #strong[Translate] into an equation. It may be helpful to restate the problem in one sentence with all the important information. Then, translate the English sentence into an algebra equation. + #strong[Solve] the equation using good algebra techniques. + #strong[Check] the answer in the problem and make sure it makes sense. + #strong[Answer] the question with a complete sentence. - Area of a Triangle - For a triangle with base, #emph[b], and height, #emph[h], the area, #emph[A], is given by the formula #math.equation(block: false, alt: "A equals the fraction 1 over 2 b h .")[$A = frac(1, 2) b h .$] #linebreak() #figure(figph[Image of a trangle. The horizontal base side is labeled b, and a line segment labeled h is perpendicular to the base, connecting it to the opposite vertex.], alt: "Image of a trangle. The horizontal base side is labeled b, and a line segment labeled h is perpendicular to the base, connecting it to the opposite vertex.", caption: none) - Area of a Rectangle - For a rectangle with length, #emph[L], and width, #emph[W], the area, #emph[A], is given by the formula #emph[A] = #emph[LW]. #linebreak() #figure(figph[Image shows a rectangle. All four angles are marked as right angles. The longer, horizontal side is labeled L and the shorter, vertical side is labeled w.], alt: "Image shows a rectangle. All four angles are marked as right angles. The longer, horizontal side is labeled L and the shorter, vertical side is labeled w.", caption: none) - Pythagorean Theorem - In any right triangle, where #emph[a] and #emph[b] are the lengths of the legs, and #emph[c] is the length of the hypotenuse, #emph[a]#super[2] + #emph[b]#super[2] = #emph[c]#super[2]. #linebreak() #figure(figph[Image shows a right triangle with horizontal and vertical legs. The vertical leg is labeled a. The horizontal side is labeled b. The hypotenuse is labeled c.], alt: "Image shows a right triangle with horizontal and vertical legs. The vertical leg is labeled a. The horizontal side is labeled b. The hypotenuse is labeled c.", caption: none) - Projectile motion - 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 is given by the formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t]. ==== Practice Makes Perfect #strong[Solve Applications Modeled by Quadratic Equations] In the following exercises, solve using any method. The product of two consecutive odd numbers is 255. Find the numbers. #solutionbox[ Two consecutive odd numbers whose product is 255 are 15 and 17, and −15 and −17. ] The product of two consecutive even numbers is 360. Find the numbers. The product of two consecutive even numbers is 624. Find the numbers. #solutionbox[ The first and second consecutive odd numbers are 24 and 26, and −26 and −24. ] The product of two consecutive odd numbers is 1,023. Find the numbers. The product of two consecutive odd numbers is 483. Find the numbers. #solutionbox[ Two consecutive odd numbers whose product is 483 are 21 and 23, and −21 and −23. ] The product of two consecutive even numbers is 528. Find the numbers. In the following exercises, solve using any method. Round your answers to the nearest tenth, if needed. A triangle with area 45 square inches has a height that is two less than four times the base Find the base and height of the triangle. #solutionbox[ The width of the triangle is 5 inches and the height is 18 inches. ] The base of a triangle is six more than twice the height. The area of the triangle is 88 square yards. Find the base and height of the triangle. The area of a triangular flower bed in the park has an area of 120 square feet. The base is 4 feet longer that twice the height. What are the base and height of the triangle? #solutionbox[ The base is 24 feet and the height of the triangle is 10 feet. ] A triangular banner for the basketball championship hangs in the gym. It has an area of 75 square feet. What is the length of the base and height , if the base is two-thirds of the height? The length of a rectangular driveway is five feet more than three times the width. The area is 50 square feet. Find the length and width of the driveway. #solutionbox[ The length of the driveway is 15.0 feet and the width is 3.3 feet. ] A rectangular lawn has area 140 square yards. Its width that is six less than twice the length. What are the length and width of the lawn? A rectangular table for the dining room has a surface area of 24 square feet. The length is two more feet than twice the width of the table. Find the length and width of the table. #solutionbox[ The length of table is 8 feet and the width is 3 feet. ] The new computer has a surface area of 168 square inches. If the the width is 5.5 inches less that the length, what are the dimensions of the computer? The hypotenuse of a right triangle is twice the length of one of its legs. The length of the other leg is three feet. Find the lengths of the three sides of the triangle. #solutionbox[ The lengths of the three sides of the triangle are 1.7, 3, and 3.5 ft. ] The hypotenuse of a right triangle is 10 cm long. One of the triangle’s legs is three times the length of the other leg. Find the lengths of the two legs of the triangle. Round to the nearest tenth. A rectangular garden will be divided into two plots by fencing it on the diagonal. The diagonal distance from one corner of the garden to the opposite corner is five yards longer than the width of the garden. The length of the garden is three times the width. Find the length of the diagonal of the garden. #figure(figph[Image shows a rectangular segment of grass with fence around 4 sides and across the diagonal. The vertical side of the rectangle is labeled w and the horizontal side is labeled 3 w. The diagonal fence is labeled w plus 5.], alt: "Image shows a rectangular segment of grass with fence around 4 sides and across the diagonal. The vertical side of the rectangle is labeled w and the horizontal side is labeled 3 w. The diagonal fence is labeled w plus 5.", caption: none) #solutionbox[ The length of the diagonal fencing is 7.3 yards. ] Nautical flags are used to represent letters of the alphabet. The flag for the letter, O consists of a yellow right triangle and a red right triangle which are sewn together along their hypotenuse to form a square. The hypotenuse of the two triangles is three inches longer than a side of the flag. Find the length of the side of the flag. #figure(figph[Image shows a square with side lengths s. The square is divided into two triangles with a diagonal. The top triangle is red and the lower triangle is yellow. The diagonal is labeled s plus 3.], alt: "Image shows a square with side lengths s. The square is divided into two triangles with a diagonal. The top triangle is red and the lower triangle is yellow. The diagonal is labeled s plus 3.", caption: none) Gerry plans to place a 25-foot ladder against the side of his house to clean his gutters. The bottom of the ladder will be 5 feet from the house.How far up the side of the house will the ladder reach? #solutionbox[ The ladder will reach 24.5 feet on the side of the house. ] John has a 10-foot piece of rope that he wants to use to support his 8-foot tree. How far from the base of the tree should he secure the rope? A firework rocket is shot upward at a rate of 640 ft/sec. Use the projectile formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t] to determine when the height of the firework rocket will be 1200 feet. #solutionbox[ The rocket will reach 1200 feet on its way up at 1.97 seconds and on its way down at 38.03 seconds. ] An arrow is shot vertically upward at a rate of 220 feet per second. Use the projectile formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t], to determine when height of the arrow will be 400 feet. A bullet is fired straight up from a BB gun with initial velocity 1120 feet per second at an initial height of 8 feet. Use the formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t] + 8 to determine how many seconds it will take for the bullet to hit the ground. (That is, when will #emph[h] = 0?) #solutionbox[ The bullet will take 70 seconds to hit the ground. ] A stone is dropped from a 196-foot platform. Use the formula #emph[h] = −16#emph[t]#super[2] + #emph[v]#sub[0]#emph[t] + 196 to determine how many seconds it will take for the stone to hit the ground. (Since the stone is dropped, #emph[v]#sub[0]= 0.) The businessman took a small airplane for a quick flight up the coast for a lunch meeting and then returned home. The plane flew a total of 4 hours and each way the trip was 200 miles. What was the speed of the wind that affected the plane which was flying at a speed of 120 mph? #solutionbox[ The speed of the wind was 49 mph. ] The couple took a small airplane for a quick flight up to the wine country for a romantic dinner and then returned home. The plane flew a total of 5 hours and each way the trip was 300 miles. If the plane was flying at 125 mph, what was the speed of the wind that affected the plane? Roy kayaked up the river and then back in a total time of 6 hours. The trip was 4 miles each way and the current was difficult. If Roy kayaked at a speed of 5 mph, what was the speed of the current? #solutionbox[ The speed of the current was 4.3 mph. ] Rick paddled up the river, spent the night camping, and then paddled back. He spent 10 hours paddling and the campground was 24 miles away. If Rick kayaked at a speed of 5 mph, what was the speed of the current? Two painters can paint a room in 2 hours if they work together. The less experienced painter takes 3 hours more than the more experienced painter to finish the job. How long does it take for each painter to paint the room individually? #solutionbox[ The less experienced painter takes 6 hours and the experienced painter takes 3 hours to do the job alone. ] Two gardeners can do the weekly yard maintenance in 8 minutes if they work together. The older gardener takes 12 minutes more than the younger gardener to finish the job by himself. How long does it take for each gardener to do the weekly yard maintainence individually? It takes two hours for two machines to manufacture 10,000 parts. If Machine \#1 can do the job alone in one hour less than Machine \#2 can do the job, how long does it take for each machine to manufacture 10,000 parts alone? #solutionbox[ Machine \#1 takes 3.6 hours and Machine \#2 takes 4.6 hours to do the job alone. ] Sully is having a party and wants to fill his swimming pool. If he only uses his hose it takes 2 hours more than if he only uses his neighbor’s hose. If he uses both hoses together, the pool fills in 4 hours. How long does it take for each hose to fill the pool? ==== Writing Exercises Make up a problem involving the product of two consecutive odd integers. ⓐ Start by choosing two consecutive odd integers. What are your integers? ⓑ What is the product of your integers? ⓒ Solve the equation #emph[n] (#emph[n] + 2) = #emph[p], where #emph[p] is the product you found in part (b). ⓓ Did you get the numbers you started with? #solutionbox[ Answers will vary. ] Make up a problem involving the product of two consecutive even integers. ⓐ Start by choosing two consecutive even integers. What are your integers? ⓑ What is the product of your integers? ⓒ Solve the equation #emph[n] (#emph[n] + 2) = #emph[p], where #emph[p] is the product you found in part (b). ⓓ Did you get the numbers you started with? ==== 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 solve applications of the quadratic formula.” “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 solve applications of the quadratic formula.” “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?