#set document(title: "2.4 Chapter 2 Summary and Review", author: "OpenStax / XYZ Homework") #set page(width: 8.5in, height: auto, margin: 1in) #import "@preview/cetz:0.5.2" #set text(font: ("STIX Two Text", "Libertinus Serif", "New Computer Modern"), size: 10.5pt, lang: "en") #show math.equation: set text(font: ("STIX Two Math", "New Computer Modern Math")) #set par(justify: true, leading: 0.62em, spacing: 0.9em) #set enum(spacing: 1.1em) // room between list items so tall inline fractions don't collide #set list(spacing: 1.1em) #set table(stroke: 0.5pt + rgb("#c7ccd3")) #let BLUE = rgb("#183B6F") // brand navy — section bars + example/solution labels (white on navy 11.09:1) #let ORANGE = rgb("#A94509") // brand primary-700 — AA-safe deep orange for TEXT (5.93:1 on white; raw brand #F37021 is 2.94:1 and must never carry text) #let RED = rgb("#DC2626") // brand error-600 #let GREEN = rgb("#059669") // brand success-600 (decoration only; small green text uses green-text #007942) #show heading.where(level: 1): it => block(width: 100%, above: 0pt, below: 16pt, fill: gradient.linear(BLUE, rgb("#2C5AA0")), inset: (x: 14pt, y: 12pt), radius: 3pt, text(fill: white, weight: "bold", size: 19pt, it.body)) #show heading.where(level: 2): it => block(width: 100%, above: 18pt, below: 10pt, fill: BLUE, inset: (x: 10pt, y: 6pt), radius: 2pt, text(fill: white, weight: "bold", size: 12pt, it.body)) #show heading.where(level: 3): it => text(fill: ORANGE, weight: "bold", size: 12.5pt, it.body) #show heading.where(level: 4): it => text(fill: BLUE, weight: "bold", size: 10.5pt, it.body) #let examplebox(label, title, body) = block(width: 100%, breakable: true, fill: rgb("#EFF1F5"), stroke: 0.5pt + rgb("#CFDDF0"), radius: 4pt, inset: 10pt, above: 12pt, below: 12pt)[ #block(below: 6pt)[#box(fill: BLUE, inset: (x: 6pt, y: 2pt), radius: 2pt, text(fill: white, weight: "bold", size: 8.5pt, label)) #h(0.4em) #strong[#title]] #body] // rail = decorative left rule (raw brand token); labelcolor = AA-safe label text shade #let notebox(label, rail, labelcolor, tint, body) = block(width: 100%, breakable: true, fill: tint, stroke: (left: 3pt + rail), inset: (left: 10pt, rest: 8pt), radius: (right: 4pt), above: 11pt, below: 11pt)[ #text(fill: labelcolor, weight: "bold", size: 7.5pt, tracking: 0.5pt)[#upper(label)] #linebreak() #body] #let solutionbox(body) = block(above: 4pt, below: 8pt)[ #text(fill: BLUE, weight: "bold", size: 8.5pt)[Solution] #linebreak() #body] #let figph(msg) = block(width: 100%, height: 60pt, fill: rgb("#f6f7f9"), stroke: (paint: rgb("#c7ccd3"), dash: "dashed"), radius: 4pt, inset: 10pt)[ #align(center + horizon, text(fill: rgb("#889"), style: "italic", size: 9pt, msg))] // Standardize inlined figure sizes: measure the natural CeTZ canvas, then scale to a // consistent envelope (aspect-aware; see build_typst.py FIG_* constants). Unlike the // print preamble, dimensions are FLOORED: in an editor a user can trim a figure to a // degenerate 1-D shape (a bare line), and w/h or tw/w would then divide by zero. #let _STD_W = 3.5 #let _WIDE_W = 5.6 #let _MAX_H = 3.4 #let _ASPECT_WIDE = 2.2 #let _UPSCALE_MAX = 1.15 #let stdfig(body) = context { let m = measure(body) let w = calc.max(m.width / 1in, 0.01) let h = calc.max(m.height / 1in, 0.01) let tw = if w / h > _ASPECT_WIDE { _WIDE_W } else { _STD_W } let s = calc.min(tw / w, _MAX_H / h, _UPSCALE_MAX) align(center, box(scale(x: s * 100%, y: s * 100%, reflow: true, body))) } #show figure: set block(breakable: false) #set figure(gap: 8pt) #show figure.caption: set text(size: 8.5pt, fill: rgb("#555")) == 2.4#h(0.6em)Chapter 2 Summary and Review === Key Concepts + The longest side in a triangle is opposite the largest angle, and the shortest side is opposite the smallest angle + #strong[Triangle Inequality]: In any triangle, the sum of the lengths of any two sides is greater than the length of the third side. + #strong[Pythagorean Theorem]: In a right triangle with hypotenuse #math.equation(block: false, alt: "c , a squared plus b squared equals c squared")[$c , " " " " a^(2) + b^(2) = c^(2)$]. + If the sides of a triangle satisfy the relationship #math.equation(block: false, alt: "a squared plus b squared equals c squared")[$a^(2) + b^(2) = c^(2)$], then the triangle is a right triangle. + By using similar triangles, we can find the unknown sides of a right triangle if we know only #emph[one] side and #emph[one] of the acute angles. + #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Trigonometric Ratios] If #math.equation(block: false, alt: "θ")[$θ$] is one of the angles in a right triangle, #math.equation(block: true, alt: "sin ⁡ open parenthesis θ close parenthesis, equals the fraction opposite over hypotenuse; cos ⁡ open parenthesis θ close parenthesis, equals the fraction adjacent over hypotenuse; tan ⁡ open parenthesis θ close parenthesis, equals the fraction opposite over adjacent")[$sin ( θ ) & = display(frac("opposite", "hypotenuse")) \ cos ( θ ) & = display(frac("adjacent", "hypotenuse")) \ tan ( θ ) & = display(frac("opposite", "adjacent"))$]#figure(figph[triangle], alt: "triangle", caption: none) ] + The trigonometric ratio of an angle #math.equation(block: false, alt: "θ")[$θ$] is the same for every right triangle containing the angle. + If we know one of the sides of a right triangle and any one of the other four parts, we can use trigonometry to find all the other unknown parts. + If we know one of the trigonometric ratios of an acute angle, we can find the angle using the inverse trig key on a calculator. + The exact values of trigonometric ratios of the special angles are useful benchmarks.#figure(table( columns: 4, align: left, inset: 6pt, [Trigonometric Ratios for the Special Angles], [], [], [], [Angle], [Sine], [Cosine], [Tangent], [#math.equation(block: false, alt: "30 degrees")[$30^(∘)$]], [#math.equation(block: false, alt: "the fraction 1 over 2")[$display(frac(1, 2))$]], [#math.equation(block: false, alt: "the fraction the square root of 3 over 2")[$display(frac(sqrt(3), 2))$]], [#math.equation(block: false, alt: "the fraction 1 over the square root of 3")[$display(frac(1, sqrt(3)))$]], [#math.equation(block: false, alt: "45 degrees")[$45^(∘)$]], [#math.equation(block: false, alt: "the fraction 1 over the square root of 2")[$display(frac(1, sqrt(2)))$]], [#math.equation(block: false, alt: "the fraction 1 over the square root of 2")[$display(frac(1, sqrt(2)))$]], [#math.equation(block: false, alt: "1")[$1$]], [#math.equation(block: false, alt: "60 degrees")[$60^(∘)$]], [#math.equation(block: false, alt: "the fraction the square root of 3 over 2")[$display(frac(sqrt(3), 2))$]], [#math.equation(block: false, alt: "the fraction 1 over 2")[$display(frac(1, 2))$]], [#math.equation(block: false, alt: "the square root of 3")[$sqrt(3)$]], )) + You can remember the trig values for the special angles if you memorize two triangles: #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) + For the trigonometric ratios of most angles, your calculator gives approximations, not exact values. === Chapter 2 Review Problems For Problems 1–6, explain why the description of #math.equation(block: false, alt: "△ A B C")[$upright(△) A B C$] is impossible. #math.equation(block: false, alt: "A less than B less than C")[$A < B < C$], and #math.equation(block: false, alt: "B equals 93 degrees")[$B = 93^(∘)$] If #math.equation(block: false, alt: "C greater than 93 degrees")[$C > 93^(∘)$], then #math.equation(block: false, alt: "A plus B plus C greater than 180 degrees")[$A + B + C > 180^(∘)$] #math.equation(block: false, alt: "A less than B less than C")[$A < B < C$], and #math.equation(block: false, alt: "C equals 58 degrees")[$C = 58^(∘)$] #math.equation(block: false, alt: "a less than b less than c ,")[$a < b < c ,$] and #math.equation(block: false, alt: "C equals 58 degrees")[$C = 58^(∘)$] If #math.equation(block: false, alt: "A less than B less than 58 degrees")[$A < B < 58^(∘)$], then #math.equation(block: false, alt: "A plus B plus C less than 180 degrees")[$A + B + C < 180^(∘)$] #math.equation(block: false, alt: "a less than b less than c ,")[$a < b < c ,$] and #math.equation(block: false, alt: "B equals 93 degrees")[$B = 93^(∘)$] #math.equation(block: false, alt: "A equals 80 degrees , B equals 50 degrees , b equals 4 ,")[$A = 80^(∘) , " " B = 50^(∘) , " " b = 4 ,$] and #math.equation(block: false, alt: "c equals 6")[$c = 6$] If #math.equation(block: false, alt: "C greater than 50 degrees")[$C > 50^(∘)$], then #math.equation(block: false, alt: "A plus B plus C greater than 180 degrees")[$A + B + C > 180^(∘)$] #math.equation(block: false, alt: "a equals 23 , b equals 28 , c equals 55 ,")[$a = 23 , " " b = 28 , " " c = 55 ,$] and #math.equation(block: false, alt: "A equals 30 degrees")[$A = 30^(∘)$] For Problems 7 and 8, sketch the triangle. The three angles of a triangle are #math.equation(block: false, alt: "20 degrees , 50 degrees , and 110 degrees ,")[$20^(∘) , 50^(∘) , "and" " " 110^(∘) ,$] and the three sides are 15 cm, 6.7 cm, and 18.4 cm. Sketch and label the triangle. #figure(figph[triangle], alt: "triangle", caption: none) Sketch and label an isosceles triangle with sides 5 in and 12 in, and one angle #math.equation(block: false, alt: "78 degrees")[$78^(∘)$]. For Problems 9–12, find the unknown side of the right triangle. #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "a equals 97")[$a = 97$] #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "c equals 52")[$c = 52$] #figure(figph[triangle], alt: "triangle", caption: none) A triangle has sides of length 33, 56, and 65. Is it a right triangle? Yes A triangle has sides of length 22.5, 27.2, and 35.3. Is it a right triangle? Find the angle between the diagonal of a cube and the diagonal of one of the sides. (See the figure at right.) #figure(figph[cube], alt: "cube", caption: none) #math.equation(block: true, alt: "θ equals 35.26 degrees")[$θ = 35.26^(∘)$] Find the angle between the diagonal of a cube and one edge. (See the figure at right.) #figure(figph[cube], alt: "cube", caption: none) In the triangle shown, #math.equation(block: false, alt: "cos ⁡ open parenthesis θ close parenthesis equals the fraction 3 over 5")[$cos ( θ ) = display(frac(3, 5))$]. Can we conclude that #math.equation(block: false, alt: "a equals 3")[$a = 3$] and #math.equation(block: false, alt: "c equals 5")[$c = 5$]? Give two other possibilities for the values of #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "c")[$c$]. #figure(figph[triangle], alt: "triangle", caption: none) No. #math.equation(block: false, alt: "a equals 6 , c equals 10")[$a = 6 , " " c = 10$] or #math.equation(block: false, alt: "a equals 9 , c equals 15")[$a = 9 , " " c = 15$] In the triangle shown, #math.equation(block: false, alt: "tan ⁡ open parenthesis θ close parenthesis equals the fraction 5 over 3")[$tan ( θ ) = display(frac(5, 3))$]. Can we conclude that #math.equation(block: false, alt: "a equals 5")[$a = 5$] and #math.equation(block: false, alt: "b equals 3")[$b = 3$]? Give two other possibilities for the values of #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "b")[$b$]. #figure(figph[triangle], alt: "triangle", caption: none) For Problems 19–22, + Find the unknown side. + Find the sine, cosine, and tangent of #math.equation(block: false, alt: "θ")[$θ$]. Round your answers to four decimal places. #figure(figph[triangle], alt: "triangle", caption: none) + #math.equation(block: false, alt: "w equals 86.05")[$w = 86.05$] + #math.equation(block: false, alt: "sin ⁡ open parenthesis θ close parenthesis equals 0.7786 , cos ⁡ open parenthesis θ close parenthesis equals 0.6275 , tan ⁡ open parenthesis θ close parenthesis equals 1.2407")[$sin ( θ ) = 0.7786 , " " cos ( θ ) = 0.6275 , " " tan ( θ ) = 1.2407$] #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) + #math.equation(block: false, alt: "y equals 16.52")[$y = 16.52$] + #math.equation(block: false, alt: "sin ⁡ open parenthesis θ close parenthesis equals 0.6957 , cos ⁡ open parenthesis θ close parenthesis equals 0.7184 , tan ⁡ open parenthesis θ close parenthesis equals 0.9684")[$sin ( θ ) = 0.6957 , " " cos ( θ ) = 0.7184 , " " tan ( θ ) = 0.9684$] #figure(figph[triangle], alt: "triangle", caption: none) For Problems 23–28,find the unknown side of the triangle. Round your answer to hundredths. #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "a equals 7.89")[$a = 7.89$] #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "x equals 3.57")[$x = 3.57$] #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "b equals 156.95")[$b = 156.95$] #figure(figph[triangle], alt: "triangle", caption: none) For Problems 29–32, solve the triangle. Give exact values. #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "A equals 30 degrees , a equals the fraction 23 the square root of 3 over 3 , c equals the fraction 46 the square root of 3 over 3")[$A = 30^(∘) , " " a = display(frac(23 sqrt(3), 3)) , " " c = display(frac(46 sqrt(3), 3))$] #figure(figph[triangle], alt: "triangle", caption: none) #figure(figph[triangle], alt: "triangle", caption: none) #math.equation(block: true, alt: "F equals 105 degrees , d equals 10 the square root of 2 , e equals 20 , f equals 10 plus 10 the square root of 3")[$F = 105^(∘) , " " d = 10 sqrt(2) , " " e = 20 , " " f = 10 + 10 sqrt(3)$] #figure(figph[triangle], alt: "triangle", caption: none) Find the diameter of a hex nut if one of the sides is 1.5 cm. #figure(figph[hexagon], alt: "hexagon", caption: none) #math.equation(block: false, alt: "3")[$3$] cm Find the long edge of the trapezoidal block of height 3 centimeters. #figure(figph[trapezoid], alt: "trapezoid", caption: none) If a stop sign is 80 centimeters across, what is the radius of a circle that circumscribes the stop sign? #figure(figph[octagon], alt: "octagon", caption: none) #math.equation(block: false, alt: "43.30")[$43.30$] cm The Pentagon, which houses the U.S. Department of Defense, is in the shape of a regular pentagon. Each of the five outer walls is 921.6 feet long. What is the shortest distance from one of the outer walls to the opposite vertex of the pentagon? #figure(figph[cube], alt: "cube", caption: none) A building casts a 12 meter shadow. At that moment, the sun is #math.equation(block: false, alt: "53 degrees")[$53^(∘)$] above the horizon. How tall is the building? #math.equation(block: false, alt: "15.92")[$15.92$] m A ramp is rising at an angle #math.equation(block: false, alt: "25 degrees")[$25^(∘)$] from horizontal. What is the distance (along the ramp) from the base of the ramp to the point on the ramp that is 1 meter higher than the base of the ramp? A baseball diamond is a square with sides 90 feet long. The corners are called (in clockwise order) first base, second base, third base, and home plate. The sides are called baselines. A runner is on the baseline between first and second base, 20 feet from second base. How far is the runner from home plate? What is the angle between the baseline from home plate to first base and the line from home plate to the runner? #math.equation(block: false, alt: "114.02")[$114.02$] ft, #math.equation(block: false, alt: "37.87 degrees")[$37.87^(∘)$] A runner is on the baseline between second and third base, 10 feet from second base. How far is the runner from home plate? What is the angle between the baseline from home plate to third base and the line from home plate to the runner? Let #math.equation(block: false, alt: "l")[$l$] be the line that passes through the origin and the point #math.equation(block: false, alt: "open parenthesis 4 , 7 close parenthesis")[$( 4 , 7 )$]. Let #math.equation(block: false, alt: "θ")[$θ$] be the angle that #math.equation(block: false, alt: "l")[$l$] makes with the positive #math.equation(block: false, alt: "x")[$x$]-axis. + Find the value of #math.equation(block: false, alt: "θ")[$θ$]. Hint: Draw the triangle with vertices at the origin, #math.equation(block: false, alt: "open parenthesis 4 , 7 close parenthesis")[$( 4 , 7 )$], and #math.equation(block: false, alt: "open parenthesis 4 , 0 close parenthesis")[$( 4 , 0 )$], labeling the angle at the origin #math.equation(block: false, alt: "θ")[$θ$]. What is #math.equation(block: false, alt: "tan ⁡ open parenthesis θ close parenthesis")[$tan ( θ )$] ?) + Let #math.equation(block: false, alt: "l prime")[$l^(′)$] be any line parallel to #math.equation(block: false, alt: "l")[$l$]. Find the measure of the acute angle that #math.equation(block: false, alt: "l prime")[$l^(′)$] makes with the positive #math.equation(block: false, alt: "x")[$x$]-axis. + What is the slope of the line #math.equation(block: false, alt: "l")[$l$] ? How is it related to #math.equation(block: false, alt: "tan ⁡ open parenthesis θ close parenthesis")[$tan ( θ )$] ? + #math.equation(block: false, alt: "60.26 degrees")[$60.26^(∘)$] + #math.equation(block: false, alt: "60.26 degrees")[$60.26^(∘)$] + #math.equation(block: false, alt: "m equals the fraction 7 over 4 equals tan ⁡ open parenthesis θ close parenthesis")[$m = display(frac(7, 4)) = tan ( θ )$] Let #math.equation(block: false, alt: "l")[$l$] be the line that passes through the origin and the point #math.equation(block: false, alt: "open parenthesis a , b close parenthesis")[$( a , b )$], where #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "b")[$b$] are positive numbers. Let #math.equation(block: false, alt: "θ")[$θ$] be the angle that #math.equation(block: false, alt: "l")[$l$] makes with the positive #math.equation(block: false, alt: "x")[$x$]-axis. + Find the value of #math.equation(block: false, alt: "θ")[$θ$]. Hint: Draw the triangle with vertices at the origin, #math.equation(block: false, alt: "open parenthesis a , b close parenthesis")[$( a , b )$], and #math.equation(block: false, alt: "open parenthesis a , 0 close parenthesis")[$( a , 0 )$], labeling the angle at the origin #math.equation(block: false, alt: "θ")[$θ$]. What is #math.equation(block: false, alt: "tan ⁡ open parenthesis θ close parenthesis")[$tan ( θ )$] ?) + What is the slope of the line #math.equation(block: false, alt: "l")[$l$] ? How is it related to #math.equation(block: false, alt: "tan ⁡ θ")[$tan θ$]? + Let #math.equation(block: false, alt: "l prime")[$l^(′)$] be any line parallel to #math.equation(block: false, alt: "l")[$l$]. How is the slope of the line #math.equation(block: false, alt: "l prime")[$l^(′)$] related to #math.equation(block: false, alt: "tan ⁡ open parenthesis θ close parenthesis")[$tan ( θ )$]? The figure illustrates the Pythagorean theorem. + What is the area of the whole square? + What is the side of the smaller interior square? What is its area? + What is the area of one of the right triangles? + Add the areas of the four triangles and the smaller square to obtain another expression for the area of the whole square. #figure(figph[square], alt: "square", caption: none) + #math.equation(block: false, alt: "c squared")[$c^(2)$] + #math.equation(block: false, alt: "b minus a , open parenthesis b minus a close parenthesis squared")[$b − a , " " ( b − a )^(2)$] + #math.equation(block: false, alt: "the fraction 1 over 2 a b")[$display(frac(1, 2)) a b$] + #math.equation(block: false, alt: "4 open parenthesis the fraction 1 over 2 a b close parenthesis plus open parenthesis a minus b close parenthesis squared equals 2 a b plus b squared minus 2 a b plus a squared equals a squared plus b squared")[$4 ( display(frac(1, 2)) a b ) + ( a − b )^(2) = 2 a b + b^(2) − 2 a b + a^(2) = a^(2) + b^(2)$] The figure illustrates a proof of the Pythagorean theorem given by Euclid. It shows that the area of the square on the hypotenuse #math.equation(block: false, alt: "A B bar")[$limits(A B)^(―)$] is the sum of the areas of the squares on legs #math.equation(block: false, alt: "B C bar")[$limits(B C)^(―)$] and #math.equation(block: false, alt: "A C bar")[$limits(A C)^(―)$]. We first draw a line segment from point #math.equation(block: false, alt: "C")[$C$] perpendicular to the hypotenuse #math.equation(block: false, alt: "A B bar")[$limits(A B)^(―)$] to meet the far side of the square on the hypotenuse. This segment meets #math.equation(block: false, alt: "A B bar")[$limits(A B)^(―)$] at #math.equation(block: false, alt: "G")[$G$] and the opposite side of the square at #math.equation(block: false, alt: "D")[$D$]. #figure(figph[Pythagorean theorem], alt: "Pythagorean theorem", caption: none) + How does the area of #math.equation(block: false, alt: "△ A C E")[$upright(△) A C E$] compare with the area of #math.equation(block: false, alt: "△ A B F")[$upright(△) A B F$] ? (Hint: Show that the triangles are congruent.) + How does the area of #math.equation(block: false, alt: "△ A B F")[$upright(△) A B F$] compare with the area of the square on #math.equation(block: false, alt: "A C bar")[$limits(A C)^(―)$]? (Hint: Consider #math.equation(block: false, alt: "A F bar")[$limits(A F)^(―)$] to be the base of the triangle. What is the height?) + How does the area of #math.equation(block: false, alt: "△ A C E")[$upright(△) A C E$] compare with the area of the rectangle #math.equation(block: false, alt: "A G D E")[$A G D E$] ? (Hint: Consider #math.equation(block: false, alt: "A E bar")[$limits(A E)^(―)$] to be the base of the triangle. What is the height?) + Explain why the area of the square on #math.equation(block: false, alt: "A C bar")[$limits(A C)^(―)$] equals the area of the rectangle #math.equation(block: false, alt: "A G D E")[$A G D E$]. + An argument similar to parts (a)–(d) will show that the area of the square on #math.equation(block: false, alt: "B C bar")[$limits(B C)^(―)$] equals the area of the rectangle #math.equation(block: false, alt: "B G D H")[$B G D H$]. Explain how writing the area of the square on #math.equation(block: false, alt: "A B bar")[$limits(A B)^(―)$] as the sum of the areas of two rectangles gives the Pythagorean theorem.