#set document(title: "10.11 Facts from Geometry", 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")) == 10.11#h(0.6em)Facts from Geometry In this section, we review some information you will need from geometry. You are already familiar with the formulas for the area and perimeter of common geometric figures; you can find these formulas in the reference section Geometry formulas. === Right Triangles and the Pythagorean Theorem A #strong[right triangle] is a triangle in which one of the angles is a right angle, or #math.equation(block: false, alt: "90 degrees")[$90^(∘)$]. Because the sum of the three angles in any triangle is #math.equation(block: false, alt: "180 degrees")[$180^(∘)$], this means that the other two angles in a right triangle must have a sum of #math.equation(block: false, alt: "180 degrees minus 90 degrees")[$180^(∘) − 90^(∘)$], or #math.equation(block: false, alt: "90 degrees")[$90^(∘)$]. For instance, if we know that one of the angles in a right triangle is #math.equation(block: false, alt: "37 degrees")[$37^(∘)$], then the remaining angle must be #math.equation(block: false, alt: "90 degrees minus 37 degrees")[$90^(∘) − 37^(∘)$], or #math.equation(block: false, alt: "53 degrees")[$53^(∘)$], as shown at right. #figure(figph[right triangle with a 37 deg and a 53 deg angle], alt: "right triangle with a 37 deg and a 53 deg angle", caption: none) #examplebox("Example 1")[][ In the right triangle shown at right, the medium-sized angle is #math.equation(block: false, alt: "15 degrees")[$15^(∘)$] less than twice the smallest angle. Find the sizes of the three angles. #figure(figph[right triangle], alt: "right triangle", caption: none) #solutionbox[ - #strong[Step 1] #linebreak() Let #math.equation(block: false, alt: "x")[$x$] stand for the size of the smallest angle. Then the medium-sized angle must be #math.equation(block: false, alt: "2 x minus 15")[$2 x − 15$]. - #strong[Step 2] #linebreak() Because the right angle is the largest angle, the sum of the smallest and medium-sized angles must be the remaining #math.equation(block: false, alt: "90 degrees")[$90^(∘)$]. Thus, #math.equation(block: true, alt: "x plus open parenthesis 2 x minus 15 close parenthesis equals 90")[$x + ( 2 x − 15 ) = 90$] - #strong[Step 3] #linebreak() Solve the equation. Begin by simplifying the left side. #math.equation(block: true, alt: "3 x minus 15, equals 90, Add 15 to both sides.; 3 x, equals 105, Divide both sides by 3.; x, equals 35")[$3 x − 15 & = 90 & & "Add 15 to both sides." \ 3 x & = 105 & & "Divide both sides by 3." \ x & = 35$] - #strong[Step 4] #linebreak() The smallest angle is #math.equation(block: false, alt: "35 degrees")[$35^(∘)$], and the medium-sized angle is #math.equation(block: false, alt: "2 open parenthesis 35 degrees close parenthesis minus 15 degrees")[$2 ( 35^(∘) ) − 15^(∘)$], or #math.equation(block: false, alt: "55 degrees")[$55^(∘)$]. ] ] In a right triangle, the longest side is opposite the right angle and is called the #strong[hypotenuse]. Ordinarily, even if we know the lengths of two sides of a triangle, it is not easy to find the length of the third side (to solve this problem we need trigonometry), but for the special case of a right triangle, there is an equation that relates the lengths of the three sides. This property of right triangles was known to many ancient cultures, and we know it today by the name of a Greek mathematician, Pythagoras, who provided a proof of the result. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Pythagorean Theorem] In a right triangle, if #math.equation(block: false, alt: "c")[$c$] stands for the length of the hypotenuse and #math.equation(block: false, alt: "a")[$a$] and #math.equation(block: false, alt: "b")[$b$] stand for the lengths of the two sides, then #math.equation(block: true, alt: "a squared plus b squared equals c squared")[$a^(2) + b^(2) = c^(2)$] #figure(figph[right triangle], alt: "right triangle", caption: none) ] #examplebox("Example 2")[][ The hypotenuse of a right triangle is #math.equation(block: false, alt: "15")[$15$] feet long. The third side is twice the length of the shortest side. Find the lengths of the other 2 sides. #figure(figph[right triangle], alt: "right triangle", caption: none) #solutionbox[ - #strong[Step 1] #linebreak() Let #math.equation(block: false, alt: "x")[$x$] represent the length of the shortest side, so that the third side has length #math.equation(block: false, alt: "2 x")[$2 x$]. - #strong[Step 2] #linebreak() Substituting these expressions into the Pythagorean theorem, we find #math.equation(block: true, alt: "x squared plus open parenthesis 2 x close parenthesis squared equals 15 squared")[$x^(2) + ( 2 x )^(2) = 15^(2)$] - #strong[Step 3] #linebreak() This is a quadratic equation with no linear term, so we simplify and then isolate #math.equation(block: false, alt: "x squared")[$x^(2)$]. #math.equation(block: true, alt: "x squared plus 4 x squared, equals 225, Combine like terms.; 5 x squared, equals 225, Divide both sides by 5.; x squared, equals 45")[$x^(2) + 4 x^(2) & = 225 & & "Combine like terms." \ 5 x^(2) & = 225 & & "Divide both sides by 5." \ x^(2) & = 45$] Taking square roots of both sides yields #math.equation(block: true, alt: "x equals plus or minus the square root of 45 approximately equals plus or minus 6.708203932")[$x = ± sqrt(45) ≈ ± 6.708203932$] - #strong[Step 4] #linebreak() Because a length must be a positive number, the shortest side has length approximately #math.equation(block: false, alt: "6.71")[$6.71$] feet, and the third side has length #math.equation(block: false, alt: "2 open parenthesis 6.71 close parenthesis")[$2 ( 6.71 )$], or approximately #math.equation(block: false, alt: "13.42")[$13.42$] feet. ] ] === Isosceles and Equilateral Triangles Recall also that an #strong[isosceles] triangle is one that has at least two sides of equal length. In an isosceles triangle, the angles opposite the equal sides, called the #strong[base] angles, are equal in measure. In an equilateral triangle, all three sides have equal length, and all three angles have equal measure. #figure(figph[isoscles and equilateral triangles], alt: "isoscles and equilateral triangles", caption: none) === The Triangle Inequality The longest side in a triangle is always opposite the largest angle, and the shortest side is opposite the smallest angle. It is also true that the sum of the lengths of any two sides of a triangle must be greater than the third side, or else the two sides will not meet to form a triangle! This fact is called the #strong[triangle inequality]. In the triangle at right, we must have that #math.equation(block: false, alt: "p plus q greater than r")[$p + q > r$], where #math.equation(block: false, alt: "p")[$p$], #math.equation(block: false, alt: "q")[$q$], and #math.equation(block: false, alt: "r")[$r$] are the lengths of the sides of the triangle. #figure(figph[triangle of sides p, q, and r], alt: "triangle of sides p, q, and r", caption: none) Now we can use the triangle inequality to discover information about the sides of a triangle. #examplebox("Example 3")[][ Two sides of a triangle have lengths #math.equation(block: false, alt: "7")[$7$] inches and #math.equation(block: false, alt: "10")[$10$] inches. What can you say about the length of the third side? #solutionbox[ Let #math.equation(block: false, alt: "x")[$x$] represent the length of the third side of the triangle. By the triangle inequality, we must have that #math.equation(block: true, alt: "x less than 7 plus 10 , or x less than 17")[$x < 7 + 10 , " " " " " " " or " " " " " " " x < 17$] Looking at another pair of sides, we must also have that #math.equation(block: true, alt: "10 less than x plus 7 , or x greater than 3")[$10 < x + 7 , " " " " " " " or " " " " " " " x > 3$] #figure(figph[triangle with two sides of length 7 and 10 inches], alt: "triangle with two sides of length 7 and 10 inches", caption: none) Thus the third side must be greater than #math.equation(block: false, alt: "3")[$3$] inches but less than #math.equation(block: false, alt: "17")[$17$] inches long. ] ] === Similar Triangles Two triangles are said to be #strong[similar] if their corresponding angles are equal. This means that the two triangles will have the same shape but not necessarily the same size. One of the triangles will be an enlargement or a reduction of the other; so their corresponding sides are proportional. In other words, #emph[for similar triangles, the ratios of the corresponding sides are equal]. #figure(figph[similar triangle], alt: "similar triangle", caption: none) If any two pairs of corresponding angles of two triangles are equal, then the third pair must also be equal, because in both triangles the sum of the angles is #math.equation(block: false, alt: "180 degrees")[$180^(∘)$]. Thus, to show that two triangles are similar, we need only show that two pairs of angles are equal. #examplebox("Example 4")[][ The roof of an A-frame ski chalet forms an isosceles triangle with the floor. The floor of the chalet is #math.equation(block: false, alt: "24")[$24$] feet wide, and the ceiling is #math.equation(block: false, alt: "20")[$20$] feet tall at the center. If a loft is built at a height of #math.equation(block: false, alt: "8")[$8$] feet from the floor, how wide will the loft be? #figure(figph[dimensions of A-frame roof], alt: "dimensions of A-frame roof", caption: none) #solutionbox[ Look at the diagram of the chalet at right. We can show that #math.equation(block: false, alt: "Δ A B C")[$upright(Δ) A B C$] is similar to #math.equation(block: false, alt: "Δ A D E")[$upright(Δ) A D E$]. Both triangles include #math.equation(block: false, alt: "∠ A")[$upright(∠) A$], and because #math.equation(block: false, alt: "D E bar")[$limits(D E)^(―)$] is parallel to #math.equation(block: false, alt: "B C bar")[$limits(B C)^(―)$], #math.equation(block: false, alt: "∠ A D E")[$upright(∠) A D E$] is equal to #math.equation(block: false, alt: "∠ A B C")[$upright(∠) A B C$]. Thus, the triangles have two pairs of equal angles and are therefore similar triangles. #figure(figph[dimensions of A-frame roof], alt: "dimensions of A-frame roof", caption: none) + Let #math.equation(block: false, alt: "w")[$w$] stand for the width of the loft. + First note that if #math.equation(block: false, alt: "F G equals 8")[$F G = 8$], then #math.equation(block: false, alt: "A F equals 12")[$A F = 12$]. Because #math.equation(block: false, alt: "Δ A B C")[$upright(Δ) A B C$] is similar to #math.equation(block: false, alt: "Δ A D E")[$upright(Δ) A D E$], the ratios of their corresponding sides (or corresponding altitudes) are equal. In particular, #math.equation(block: true, alt: "the fraction w over 24 equals the fraction 12 over 20")[$frac(w, 24) = frac(12, 20)$] + Solve the proportion for #math.equation(block: false, alt: "w")[$w$]. Begin by cross-multiplying. #math.equation(block: true, alt: "20 w, equals open parenthesis 12 close parenthesis open parenthesis 24 close parenthesis, Apply the fundamental principle.; w, equals the fraction 288 over 20 equals 14.4, Divide by 20.")[$20 w & = ( 12 ) ( 24 ) & & "Apply the fundamental principle." \ w & = frac(288, 20) = 14.4 & & "Divide by 20."$] + The floor of the loft will be #math.equation(block: false, alt: "14.4")[$14.4$] feet wide. ] ] === Volume and Surface Area The #strong[volume] of a three-dimensional object measures its capacity, or how much space it encloses. Volume is measured in cubic units, such as cubic inches or cubic meters. The volume of a rectangular prism, or box, is given by the product of its length, width, and height. For example, the volume of the box of length #math.equation(block: false, alt: "4")[$4$] inches, width #math.equation(block: false, alt: "3")[$3$] inches, and height #math.equation(block: false, alt: "2")[$2$] inches shown at right is #math.equation(block: true, alt: "V equals l w h equals 4 open parenthesis 3 close parenthesis open parenthesis 2 close parenthesis equals 24 cubic inches")[$V = l w h = 4 ( 3 ) ( 2 ) = 24 " cubic inches"$] #figure(figph[box], alt: "box", caption: none) Formulas for the volumes of other common objects can be found inside the front cover of the book. #examplebox("Example 5")[][ A cylindrical can must have a height of #math.equation(block: false, alt: "6")[$6$] inches, but it can have any reasonable radius. + Write an algebraic expression for the volume of the can in terms of its radius. + If the volume of the can should be approximately #math.equation(block: false, alt: "170")[$170$] cubic inches, what should its radius be? #solutionbox[ + The formula for the volume of a right circular cylinder is #math.equation(block: false, alt: "V equals π r squared h")[$V = π r^(2) h$]. If the height of the cylinder is #math.equation(block: false, alt: "6")[$6$] inches, then #math.equation(block: false, alt: "V equals π r squared open parenthesis 6 close parenthesis")[$V = π r^(2) ( 6 )$], or #math.equation(block: false, alt: "V equals 6 π r squared")[$V = 6 π r^(2)$]. #figure(figph[cylinder], alt: "cylinder", caption: none) + Substitute #math.equation(block: false, alt: "170")[$170$] for #math.equation(block: false, alt: "V")[$V$] and solve for #math.equation(block: false, alt: "r")[$r$]. #math.equation(block: true, alt: "170, equals 6 π r squared, Divide both sides by 6 π .; r squared, equals the fraction 170 over 6 π, Take square roots.; r, equals the square root of the fraction 170 over 6 π approximately equals 3.00312")[$170 & = 6 π r^(2) & & "Divide both sides by " 6 bold(italic(π)) . \ r^(2) & = frac(170, 6 π) & & "Take square roots." \ r & = sqrt(frac(170, 6 π)) ≈ 3.00312$] Thus, the radius of the can should be approximately #math.equation(block: false, alt: "3")[$3$] inches. A calculator keying sequence for the expression above is #linebreak() $#h(2em) #h(2em)$ 2nd #math.equation(block: false, alt: "170")[$170$] #math.equation(block: false, alt: "6")[$6$] ENTER ] ] The #strong[surface area] of a solid object is the sum of the areas of all the exterior faces of the object. It measures the amount of paper that would be needed to cover the object entirely. Since it is an area, it is measured in square units. #examplebox("Example 6")[][ Write a formula for the surface area of a closed box in terms of its length, width, and height. #figure(figph[box], alt: "box", caption: none) #solutionbox[ The box has six sides; we must find the area of each side and add them. - The top and bottom of the box each have area #math.equation(block: false, alt: "l w")[$l w$], so together they contribute #math.equation(block: false, alt: "2 l w")[$2 l w$] to the surface area. - The back and front of the box each have area #math.equation(block: false, alt: "l h")[$l h$], so they contribute #math.equation(block: false, alt: "2 l h")[$2 l h$] to the surface area. - Finally, the left and right sides of the box each have area #math.equation(block: false, alt: "w h")[$w h$], so they add #math.equation(block: false, alt: "2 w h")[$2 w h$] to the surface area. Thus, the total surface area is #math.equation(block: true, alt: "S equals 2 l w plus 2 l h plus 2 w h")[$S = 2 l w + 2 l h + 2 w h$] ] ] === The Distance Formula By using the Pythagorean theorem, we can derive a formula for the distance between two points, #math.equation(block: false, alt: "P sub 1")[$P_(1)$] and #math.equation(block: false, alt: "P sub 2")[$P_(2)$], in terms of their coordinates. We first label a right triangle, as we did in the example above. Draw a horizontal line through #math.equation(block: false, alt: "P sub 1")[$P_(1)$] and a vertical line through #math.equation(block: false, alt: "P sub 2")[$P_(2)$]. These lines meet at a point #math.equation(block: false, alt: "P sub 3")[$P_(3)$], as shown below. The #math.equation(block: false, alt: "x")[$x$]-coordinate of #math.equation(block: false, alt: "P sub 3")[$P_(3)$] is the same as the #math.equation(block: false, alt: "x")[$x$]-coordinate of #math.equation(block: false, alt: "P sub 2")[$P_(2)$], and the #math.equation(block: false, alt: "y")[$y$]-coordinate of #math.equation(block: false, alt: "P sub 3")[$P_(3)$] is the same as the #math.equation(block: false, alt: "y")[$y$]-coordinate of #math.equation(block: false, alt: "P sub 1")[$P_(1)$]. Thus, the coordinates of #math.equation(block: false, alt: "P sub 3")[$P_(3)$] are #math.equation(block: false, alt: "open parenthesis x sub 2 , y sub 1 close parenthesis")[$( x_(2) , y_(1) )$]. #figure(figph[box], alt: "box", caption: none) The distance between #math.equation(block: false, alt: "P sub 1")[$P_(1)$] and #math.equation(block: false, alt: "P sub 3")[$P_(3)$] is #math.equation(block: false, alt: "vertical bar x sub 2 minus x sub 1 vertical bar")[$| x_(2) − x_(1) |$] , and the distance between #math.equation(block: false, alt: "P sub 2")[$P_(2)$] and #math.equation(block: false, alt: "P sub 3")[$P_(3)$] is #math.equation(block: false, alt: "vertical bar y sub 2 minus y sub 1 vertical bar")[$| y_(2) − y_(1) |$]. (See The Absolute Value Function to review distance and absolute value.) These two numbers are the lengths of the legs of the right triangle. The length of the hypotenuse is the distance between #math.equation(block: false, alt: "P sub 1")[$P_(1)$] and #math.equation(block: false, alt: "P sub 2")[$P_(2)$], which we will call #math.equation(block: false, alt: "d")[$d$]. By the Pythagorean theorem, #math.equation(block: true, alt: "d squared equals open parenthesis x sub 2 minus x sub 1 close parenthesis squared plus open parenthesis y sub 2 minus y sub 1 close parenthesis squared")[$d^(2) = ( x_(2) − x_(1) )^(2) + ( y_(2) − y_(1) )^(2)$] Taking the (positive) square root of each side of this equation gives us the #strong[distance formula]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Distance Formula] The #strong[distance] #math.equation(block: false, alt: "d")[$d$] between points #math.equation(block: false, alt: "P sub 1 open parenthesis x sub 1 , y sub 1 close parenthesis")[$P_(1) ( x_(1) , y_(1) )$] and #math.equation(block: false, alt: "P sub 2 open parenthesis x sub 2 , y sub 2 close parenthesis")[$P_(2) ( x_(2) , y_(2) )$] is #math.equation(block: true, alt: "d equals the square root of open parenthesis x sub 2 minus x sub 1 close parenthesis squared plus open parenthesis y sub 2 minus y sub 1 close parenthesis squared")[$d = sqrt(( x_(2) − x_(1) )^(2) + ( y_(2) − y_(1) )^(2))$] ] #examplebox("Example 7")[][ Find the distance between #math.equation(block: false, alt: "open parenthesis 2 , minus 1 close parenthesis")[$( 2 , − 1 )$] and #math.equation(block: false, alt: "open parenthesis 4 , 3 close parenthesis")[$( 4 , 3 )$] #solutionbox[ Substitute #math.equation(block: false, alt: "open parenthesis 2 , minus 1 close parenthesis")[$( 2 , − 1 )$] for #math.equation(block: false, alt: "open parenthesis x sub 1 , y sub 1 close parenthesis")[$( x_(1) , y_(1) )$] and substitute #math.equation(block: false, alt: "open parenthesis 4 , 3 close parenthesis")[$( 4 , 3 )$] for #math.equation(block: false, alt: "open parenthesis x sub 2 , y sub 2 close parenthesis")[$( x_(2) , y_(2) )$] in the distance formula to obtain #math.equation(block: true, alt: "d, equals the square root of open parenthesis x sub 2 minus x sub 1 close parenthesis squared plus open parenthesis y sub 2 minus y sub 1 close parenthesis squared; equals the square root of open parenthesis 4 minus 2 close parenthesis squared plus open bracket 3 minus open parenthesis minus 1 close parenthesis close bracket squared; equals the square root of 4 plus 16 equals the square root of 20 approximately equals 4.47")[$d & = sqrt(( x_(2) − x_(1) )^(2) + ( y_(2) − y_(1) )^(2)) \ & = sqrt(( 4 − 2 )^(2) + attach([ 3 − ( − 1 ) ], t: 2)) \ & = sqrt(4 + 16) = sqrt(20) ≈ 4.47$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ In Example, we obtain the same answer if we use #math.equation(block: false, alt: "open parenthesis 4 , 3 close parenthesis")[$( 4 , 3 )$] for #math.equation(block: false, alt: "P sub 1")[$P_(1)$] and use #math.equation(block: false, alt: "open parenthesis 2 , minus 1 close parenthesis")[$( 2 , − 1 )$] for #math.equation(block: false, alt: "P sub 2")[$P_(2)$]: #math.equation(block: true, alt: "d, equals the square root of open parenthesis 2 minus 4 close parenthesis squared plus open bracket open parenthesis minus 1 close parenthesis minus 3 close bracket squared; equals the square root of 4 plus 16 equals the square root of 20")[$d & = sqrt(( 2 − 4 )^(2) + attach([ ( − 1 ) − 3 ], t: 2)) \ & = sqrt(4 + 16) = sqrt(20)$] ] === The Midpoint Formula If we know the coordinates of two points, we can calculate the coordinates of the point halfway between them using the #strong[midpoint] formula. Each coordinate of the midpoint is the average of the corresponding coordinates of the two points. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Midpoint Formula] The #strong[midpoint] of the line segment joining the points #math.equation(block: false, alt: "P sub 1 open parenthesis x sub 1 , y sub 1 close parenthesis")[$P_(1) ( x_(1) , y_(1) )$] and #math.equation(block: false, alt: "P sub 2 open parenthesis x sub 2 , y sub 2 close parenthesis")[$P_(2) ( x_(2) , y_(2) )$] is the point #math.equation(block: false, alt: "M open parenthesis x bar , y bar close parenthesis")[$M ( limits(x)^(―) , limits(y)^(―) )$], where #math.equation(block: true, alt: "x bar equals the fraction x sub 1 plus x sub 2 over 2 and y bar equals the fraction y sub 1 plus y sub 2 over 2")[$limits(x)^(―) = frac(x_(1) + x_(2), 2) " " " " " " " and " " " " " " " limits(y)^(―) = frac(y_(1) + y_(2), 2)$] ] #examplebox("Example 8")[][ Find the midpoint of the line segment joining the points #math.equation(block: false, alt: "open parenthesis minus 2 , 1 close parenthesis")[$( − 2 , 1 )$] and #math.equation(block: false, alt: "open parenthesis 4 , 3 close parenthesis")[$( 4 , 3 )$]. #solutionbox[ Substitute #math.equation(block: false, alt: "open parenthesis minus 2 , 1 close parenthesis")[$( − 2 , 1 )$] for #math.equation(block: false, alt: "open parenthesis x sub 1 , y sub 1 close parenthesis")[$( x_(1) , y_(1) )$] and #math.equation(block: false, alt: "open parenthesis 4 , 3 close parenthesis")[$( 4 , 3 )$] for #math.equation(block: false, alt: "open parenthesis x sub 2 , y sub 2 close parenthesis")[$( x_(2) , y_(2) )$] in the midpoint formula to obtain #math.equation(block: true, alt: "x bar, equals the fraction x sub 1 plus x sub 2 over 2 equals the fraction minus 2 plus 4 over 2 equals 1, and; y bar, equals the fraction y sub 1 plus y sub 2 over 2 equals the fraction 1 plus 3 over 2 equals 2")[$limits(x)^(―) & = frac(x_(1) + x_(2), 2) = frac(− 2 + 4, 2) = 1 & & "and" \ limits(y)^(―) & = frac(y_(1) + y_(2), 2) = frac(1 + 3, 2) = 2$] The midpoint of the segment is the point #math.equation(block: false, alt: "open parenthesis x bar , y bar close parenthesis equals open parenthesis 1 , 2 close parenthesis")[$( limits(x)^(―) , limits(y)^(―) ) = ( 1 , 2 )$]. ] ] === Circles A #strong[circle] is the set of all points in a plane that lie at a given distance, called the #strong[radius], from a fixed point called the #strong[center]. We can use the distance formula to find an equation for a circle. First consider the circle (a) below, whose center is the origin, #math.equation(block: false, alt: "open parenthesis 0 , 0 close parenthesis")[$( 0 , 0 )$]. #figure(figph[a circle centered at origin and a circle centered at (h,k)], alt: "a circle centered at origin and a circle centered at (h,k)", caption: none) The distance from the origin to any point #math.equation(block: false, alt: "P open parenthesis x , y close parenthesis")[$P ( x , y )$] on the circle is #math.equation(block: false, alt: "r")[$r$]. Therefore, #math.equation(block: true, alt: "the square root of open parenthesis x minus 0 close parenthesis squared plus open parenthesis y minus 0 close parenthesis squared equals r")[$sqrt(( x − 0 )^(2) + ( y − 0 )^(2)) = r$] Or, squaring both sides, #math.equation(block: true, alt: "open parenthesis x minus 0 close parenthesis squared plus open parenthesis y minus 0 close parenthesis squared equals r squared")[$( x − 0 )^(2) + ( y − 0 )^(2) = r^(2)$] Thus, the equation for a circle of radius #math.equation(block: false, alt: "r")[$r$] centered at the origin is #math.equation(block: true, alt: "x squared plus y squared equals r squared")[$x^(2) + y^(2) = r^(2)$] Now consider the circle (b) above, whose center is the point #math.equation(block: false, alt: "open parenthesis h , k close parenthesis")[$( h , k )$]. Every point #math.equation(block: false, alt: "P open parenthesis x , y close parenthesis")[$P ( x , y )$] on the circle lies a distance #math.equation(block: false, alt: "r")[$r$] from #math.equation(block: false, alt: "open parenthesis h , k close parenthesis")[$( h , k )$], so the equation of the circle is given by the following formula. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Standard Form for a Circle] The equation for a #strong[circle] of #strong[radius] #math.equation(block: false, alt: "r")[$r$] centered at the point #math.equation(block: false, alt: "open parenthesis h , k close parenthesis")[$( h , k )$] is #math.equation(block: true, alt: "open parenthesis x minus h close parenthesis squared plus open parenthesis y minus k close parenthesis squared equals r squared")[$( x − h )^(2) + ( y − k )^(2) = r^(2)$] ] This equation is the #strong[standard form] for a circle of radius #math.equation(block: false, alt: "r")[$r$] with center at #math.equation(block: false, alt: "open parenthesis h , k close parenthesis")[$( h , k )$]. It is easy to graph a circle if its equation is given in standard form. #examplebox("Example 9")[][ Graph the circles. + #math.equation(block: false, alt: "open parenthesis x minus 2 close parenthesis squared plus open parenthesis y plus 3 close parenthesis squared equals 16")[$( x − 2 )^(2) + ( y + 3 )^(2) = 16$] + #math.equation(block: false, alt: "x squared plus open parenthesis y minus 4 close parenthesis squared equals 7")[$x^(2) + ( y − 4 )^(2) = 7$] #solutionbox[ + The graph of #math.equation(block: false, alt: "open parenthesis x minus 2 close parenthesis squared plus open parenthesis y plus 3 close parenthesis squared equals 16")[$( x − 2 )^(2) + ( y + 3 )^(2) = 16$] is a circle with radius #math.equation(block: false, alt: "4")[$4$] and center at #math.equation(block: false, alt: "open parenthesis 2 , minus 3 close parenthesis")[$( 2 , − 3 )$]. To sketch the graph, first locate the center of the circle. (The center is not part of the graph of the circle.) #linebreak() From the center, move a distance of #math.equation(block: false, alt: "4")[$4$] units (the radius of the circle) in each of four directions: up, down, left, and right. This locates four points that lie on the circle: #math.equation(block: false, alt: "open parenthesis 2 , 1 close parenthesis")[$( 2 , 1 )$], #math.equation(block: false, alt: "open parenthesis 2 , minus 7 close parenthesis")[$( 2 , − 7 )$], #math.equation(block: false, alt: "open parenthesis minus 2 , minus 3 close parenthesis")[$( − 2 , − 3 )$], and #math.equation(block: false, alt: "open parenthesis 6 , minus 3 close parenthesis")[$( 6 , − 3 )$]. Sketch the circle through these four points.#figure(figph[two circles], alt: "two circles", caption: none) + The graph of #math.equation(block: false, alt: "x squared plus open parenthesis y minus 4 close parenthesis squared equals 7")[$x^(2) + ( y − 4 )^(2) = 7$] is a circle with radius #math.equation(block: false, alt: "the square root of 7")[$sqrt(7)$] and center at #math.equation(block: false, alt: "open parenthesis 0 , 4 close parenthesis")[$( 0 , 4 )$]. From the center, move #math.equation(block: false, alt: "the square root of 7")[$sqrt(7)$], or approximately #math.equation(block: false, alt: "2.6")[$2.6$], units in each of the four coordinate directions to obtain the points #math.equation(block: false, alt: "open parenthesis 0 , 6.6 close parenthesis")[$( 0 , 6.6 )$], #math.equation(block: false, alt: "open parenthesis 0 , 1.4 close parenthesis")[$( 0 , 1.4 )$], #math.equation(block: false, alt: "open parenthesis minus 2.6 , 4 close parenthesis")[$( − 2.6 , 4 )$], and #math.equation(block: false, alt: "open parenthesis 2.6 , 4 close parenthesis")[$( 2.6 , 4 )$]. Sketch the circle through these four points. ] ] We can write an equation for any circle if we can find its center and radius. #examplebox("Example 10")[][ Find an equation for the circle whose diameter has endpoints #math.equation(block: false, alt: "open parenthesis 7 , 5 close parenthesis")[$( 7 , 5 )$] and #math.equation(block: false, alt: "open parenthesis 1 , minus 1 close parenthesis")[$( 1 , − 1 )$]. #solutionbox[ The center of the circle is the midpoint of its diameter. Use the midpoint formula to find the center: #figure(figph[circle with given endpoints of a diameter], alt: "circle with given endpoints of a diameter", caption: none) #math.equation(block: true, alt: "h equals x bar equals the fraction 7 plus 1 over 2 equals 4; k equals y bar equals the fraction 5 minus 1 over 2 equals 2")[$h = limits(x)^(―) = frac(7 + 1, 2) = 4 \ k = limits(y)^(―) = frac(5 − 1, 2) = 2$] Thus, the center is the point #math.equation(block: false, alt: "open parenthesis h , k close parenthesis equals open parenthesis 4 , 2 close parenthesis")[$( h , k ) = ( 4 , 2 )$]. The radius is the distance from the center to either of the endpoints of the diameter, say the point #math.equation(block: false, alt: "open parenthesis 7 , 5 close parenthesis")[$( 7 , 5 )$]. Use the distance formula with the points #math.equation(block: false, alt: "open parenthesis 7 , 5 close parenthesis")[$( 7 , 5 )$] and #math.equation(block: false, alt: "open parenthesis 4 , 2 close parenthesis")[$( 4 , 2 )$] to find the radius. #math.equation(block: true, alt: "r, equals the square root of open parenthesis 7 minus 4 close parenthesis squared plus open parenthesis 5 minus 2 close parenthesis squared; equals the square root of 3 squared plus 3 squared equals the square root of 18")[$r & = sqrt(( 7 − 4 )^(2) + ( 5 − 2 )^(2)) \ & = sqrt(3^(2) + 3^(2)) = sqrt(18)$] Finally, substitute #math.equation(block: false, alt: "4")[$4$] for #math.equation(block: false, alt: "h")[$h$] and #math.equation(block: false, alt: "2")[$2$] for #math.equation(block: false, alt: "k")[$k$] (the coordinates of the center) and #math.equation(block: false, alt: "the square root of 18")[$sqrt(18)$] for #math.equation(block: false, alt: "4")[$4$] (the radius) into the standard form to obtain #math.equation(block: true, alt: "open parenthesis x minus h close parenthesis squared plus open parenthesis y minus k close parenthesis squared, equals r squared; open parenthesis x minus 4 close parenthesis squared plus open parenthesis y minus 2 close parenthesis squared, equals 18")[$( x − h )^(2) + ( y − k )^(2) & = r^(2) \ ( x − 4 )^(2) + ( y − 2 )^(2) & = 18$] ] ] === Section Summary ==== Vocabulary Look up the definitions of new terms in the Glossary. - Right triangle - Circle - Surface area - Isosceles - Hypotenuse - Center - Volume - Triangle inequality - Equilateral ==== SKILLS Practice each skill in the exercises listed. + Use properties of triangles: \#1–10 + Use similar triangles to solve problems: \#11–16 + Calculate volumes and surface areas: \#17–20 + Use the distance and midpoint formulas: \#21–32 + Sketch a circle: \#33–40 + Find the equation for a circle: \#41–46 === Exercises A.11 For Problems 1-10, use properties of triangles to answer the questions. One angle of a triangle is #math.equation(block: false, alt: "10 degrees")[$10^(∘)$] larger than another, and the third angle is #math.equation(block: false, alt: "29 degrees")[$29^(∘)$] larger than the smallest. How large is each angle? #math.equation(block: true, alt: "47 degrees , 57 degrees , 76 degrees")[$47^(∘) , " " 57^(∘) , " " 76^(∘)$] One angle of a triangle is twice as large as the second angle, and the third angle is #math.equation(block: false, alt: "10 degrees")[$10^(∘)$] less than the larger of the other two. How large is each angle? One acute angle of a right triangle is twice the other acute angle. How large is each acute angle? #math.equation(block: true, alt: "30 degrees , 60 degrees")[$30^(∘) , " " 60^(∘)$] One acute angle of a right triangle is #math.equation(block: false, alt: "10 degrees")[$10^(∘)$] less than three times the other acute angle. How large is each acute angle? The vertex angle of an isosceles triangle is #math.equation(block: false, alt: "20 degrees")[$20^(∘)$] less than the sum of the equal angles. How large is each angle? #math.equation(block: true, alt: "50 degrees , 50 degrees , 80 degrees")[$50^(∘) , " " 50^(∘) , " " 80^(∘)$] The vertex angle of an isosceles triangle is #math.equation(block: false, alt: "30 degrees")[$30^(∘)$] less than one of the equal angles. How large is each angle? The perimeter of an isosceles triangle is 42 centimeters and its base is 12 centimeters long. How long are the equal sides? #math.equation(block: false, alt: "15")[$15 " "$] cm The altitude of an equilateral triangle is #math.equation(block: false, alt: "the fraction the square root of 3 over 2")[$display(frac(sqrt(3), 2))$] times its base. If the perimeter of an equilateral triangle is 18 inches, what is its area? If two sides of a triangle are 6 feet and 10 feet long, what can you say about the length of the third side? It is more than 4 and less than 16 feet long. If one of the equal sides of an isosceles triangle is 8 millimeters long, what can you say about the length of the base? For Problems 11-16, use properties of similar triangles to answer the questions. A 6-foot man stands 12 feet from a lamppost. His shadow is 9 feet long. How tall is the lamppost? #figure(figph[lamppost and man], alt: "lamppost and man", caption: none) 14 ft A rock climber estimates the height of a cliff she plans to scale as follows: She places a mirror on the ground so that she can just see the top of the cliff in the mirror while she stands straight. (The angles 1 and 2 formed by the light rays are equal.) She then measures the distance to the mirror (2 feet) and the distance from the mirror to the base of the cliff. If she is 5 feet 6 inches tall, how high is the cliff? #figure(figph[rock climber, mirror, and cliff], alt: "rock climber, mirror, and cliff", caption: none) A conical tank is 12 feet deep and the diameter of the top is 8 feet. If the tank is filled with water to a depth of 7 feet, what is the area of the exposed surface of the water? #figure(figph[conical tank], alt: "conical tank", caption: none) 17.1 sq ft A florist fits a cylindrical piece of foam into a conical vase that is 10 inches high and measures 8 inches across the top. If the radius of the foam cylinder is 212 inches, how tall should it be just to reach the top of the vase? #figure(figph[cylinder in cone], alt: "cylinder in cone", caption: none) To measure the distance across a river, stand at point #math.equation(block: false, alt: "A")[$A$] and sight across the river to a convenient landmark at #math.equation(block: false, alt: "B")[$B$]. Then measure the distances #math.equation(block: false, alt: "A C")[$A C$], #math.equation(block: false, alt: "C D")[$C D$], and #math.equation(block: false, alt: "D E")[$D E$]. If #math.equation(block: false, alt: "A C equals 20")[$A C = 20$] feet, #math.equation(block: false, alt: "C D equals 13")[$C D = 13$] feet, and #math.equation(block: false, alt: "D E equals 58")[$D E = 58$] feet, how wide is the river? #figure(figph[river], alt: "river", caption: none) 89.23 ft To measure the distance #math.equation(block: false, alt: "E C")[$E C$] across a lake, stand at point #math.equation(block: false, alt: "A")[$A$] and sight point #math.equation(block: false, alt: "C")[$C$] across the lake, then mark point #math.equation(block: false, alt: "B")[$B$]. Then sight to point #math.equation(block: false, alt: "E")[$E$] and mark point #math.equation(block: false, alt: "D")[$D$] so that #math.equation(block: false, alt: "D B")[$D B$] is parallel to #math.equation(block: false, alt: "C E")[$C E$]. If #math.equation(block: false, alt: "A D equals 25")[$A D = 25$] yards, #math.equation(block: false, alt: "A E equals 60")[$A E = 60$] yards, and #math.equation(block: false, alt: "B D equals 30")[$B D = 30$] yards, how wide is the lake? #figure(figph[lake], alt: "lake", caption: none) For Problems 17-20, use formulas to find volumes and surface areas. + How much helium (in cubic meters) is needed to inflate a spherical balloon to a radius of 1.2 meters? + How much gelatin (in square centimeters) is needed to coat a spherical pill whose radius is 0.7 centimeter? + 7.24 cu m + 6.16 sq cm + How much storage space is there in a rectangular box whose length is 12.3 inches, whose width is 4 inches, and whose height is 7.3 inches? + How much marine sealer will be needed to paint a rectangular wooden storage locker with length 6.2 feet, width 5.8 feet, and height 2.6 feet? + How much grain can be stored in a cylindrical silo whose radius is 6 meters and whose height is 23.2 meters? + How much paint is needed to cover a cylindrical storage drum whose radius is 15.3 inches and whose height is 4.5 inches? + 2623.86 cu m + 1903.43 sq in + A conical pile of sand is 8.1 feet high and has a radius of 4.6 feet. How much sand is in the pile? + How much plastic is needed to line a conical funnel with a radius of 16 centimeters and a slant height of 42 centimeters? For Problems 21-26, find the distance between the given pairs of points, and find the midpoint of the segment joining them. #math.equation(block: true, alt: "open parenthesis 1 , 1 close parenthesis , open parenthesis 4 , 5 close parenthesis")[$( 1 , 1 ) , " " ( 4 , 5 )$] #math.equation(block: true, alt: "5")[$5$]; #math.equation(block: true, alt: "open parenthesis the fraction 5 over 2 , 3 close parenthesis")[$( display(frac(5, 2)) , 3 )$] #math.equation(block: true, alt: "open parenthesis minus 1 , 1 close parenthesis , open parenthesis 5 , 9 close parenthesis")[$( − 1 , 1 ) , " " ( 5 , 9 )$] #math.equation(block: true, alt: "open parenthesis 2 , minus 3 close parenthesis , open parenthesis minus 2 , minus 1 close parenthesis")[$( 2 , − 3 ) , " " ( − 2 , − 1 )$] #math.equation(block: true, alt: "the square root of 20")[$sqrt(20)$]; #math.equation(block: true, alt: "open parenthesis 0 , minus 2 close parenthesis")[$( 0 , − 2 )$] #math.equation(block: true, alt: "open parenthesis 5 , minus 4 close parenthesis , open parenthesis minus 1 , 1 close parenthesis")[$( 5 , − 4 ) , " " ( − 1 , 1 )$] #math.equation(block: true, alt: "open parenthesis 3 , 5 close parenthesis , open parenthesis minus 2 , 5 close parenthesis")[$( 3 , 5 ) , " " ( − 2 , 5 )$] #math.equation(block: true, alt: "5")[$5$]; #math.equation(block: true, alt: "open parenthesis the fraction 1 over 2 , 5 close parenthesis")[$( display(frac(1, 2)) , 5 )$] #math.equation(block: true, alt: "open parenthesis minus 2 , minus 5 close parenthesis , open parenthesis minus 2 , 3 close parenthesis")[$( − 2 , − 5 ) , " " ( − 2 , 3 )$] Leanne is sailing 3 miles west and 5 miles south of the harbor. She heads directly toward an island that is 8 miles west and 7 miles north of the harbor. + How far is Leanne from the island? + How far will Leanne be from the harbor when she is halfway to the island? + 13 miles + #math.equation(block: false, alt: "the fraction the square root of 125 over 2 approximately equals 5.6")[$display(frac(sqrt(125), 2)) ≈ 5.6$] miles Dominic is 100 meters east and 250 meters north of Kristy. He is walking directly toward a tree that is 220 meters east and 90 meters north of Kristy. + How far is Dominic from the tree? + How far will Dominic be from the Kristy when he is halfway to the tree? For Problems 29-32, sketch a diagram on graph paper, then solve the problem. Find the perimeter of the triangle with vertices #math.equation(block: false, alt: "open parenthesis 10 , 1 close parenthesis , open parenthesis 3 , 1 close parenthesis , open parenthesis 5 , 9 close parenthesis .")[$( 10 , 1 ) , " " ( 3 , 1 ) , " " ( 5 , 9 ) .$] #math.equation(block: true, alt: "7 plus the square root of 89 plus the square root of 67 approximately equals 24.7")[$7 + sqrt(89) + sqrt(67) ≈ 24.7$] Find the perimeter of the triangle with vertices #math.equation(block: false, alt: "open parenthesis minus 1 , 5 close parenthesis")[$( − 1 , 5 )$], #math.equation(block: false, alt: "open parenthesis 8 , minus 7 close parenthesis")[$" " ( 8 , − 7 )$], #math.equation(block: false, alt: "open parenthesis 4 , 1 close parenthesis .")[$" " ( 4 , 1 ) .$] Show that the point #math.equation(block: false, alt: "C open parenthesis the square root of 5 , 2 plus the square root of 5 close parenthesis")[$C ( sqrt(5) , 2 + sqrt(5) )$] is the same distance from #math.equation(block: false, alt: "A open parenthesis 2 , 0 close parenthesis")[$A ( 2 , 0 )$] and #math.equation(block: false, alt: "B open parenthesis minus 2 , 4 close parenthesis")[$B ( − 2 , 4 )$]. #math.equation(block: true, alt: "A C equals B C equals the square root of 18")[$A C = B C = sqrt(18)$] Show that the points #math.equation(block: false, alt: "open parenthesis minus 2 , 1 close parenthesis , open parenthesis 0 , minus 1 close parenthesis")[$( − 2 , 1 ) , " " ( 0 , − 1 )$], and #math.equation(block: false, alt: "open parenthesis the square root of 3 minus 1 , the square root of 3 close parenthesis")[$( sqrt(3) − 1 , sqrt(3) )$] are the vertices of an equilateral triangle. For Problems 33-40, graph the equation. #math.equation(block: true, alt: "x squared plus y squared equals 25")[$x^(2) + y^(2) = 25$] #figure(figph[circle], alt: "circle", caption: none) #math.equation(block: true, alt: "x squared plus y squared equals 16")[$x^(2) + y^(2) = 16$] #math.equation(block: true, alt: "4 x squared plus 4 y squared equals 16")[$4 x^(2) + 4 y^(2) = 16$] #figure(figph[circle], alt: "circle", caption: none) #math.equation(block: true, alt: "2 x squared plus 2 y squared equals 18")[$2 x^(2) + 2 y^(2) = 18$] #math.equation(block: true, alt: "open parenthesis x minus 4 close parenthesis squared plus open parenthesis y plus 2 close parenthesis squared equals 9")[$( x − 4 )^(2) + ( y + 2 )^(2) = 9$] #figure(figph[circle], alt: "circle", caption: none) #math.equation(block: true, alt: "open parenthesis x minus 1 close parenthesis squared plus open parenthesis y minus 3 close parenthesis squared equals 16")[$( x − 1 )^(2) + ( y − 3 )^(2) = 16$] #math.equation(block: true, alt: "open parenthesis x plus 3 close parenthesis squared plus y squared equals 10")[$( x + 3 )^(2) + y^(2) = 10$] #figure(figph[circle], alt: "circle", caption: none) #math.equation(block: true, alt: "x squared plus open parenthesis y plus 4 close parenthesis squared equals 12")[$x^(2) + ( y + 4 )^(2) = 12$] For Problems 41-46, write an equation for the circle with the given properties. Center at #math.equation(block: false, alt: "open parenthesis minus 2 , 5 close parenthesis")[$( − 2 , 5 )$], radius #math.equation(block: false, alt: "2 the square root of 3")[$2 sqrt(3)$]. #math.equation(block: true, alt: "open parenthesis x plus 2 close parenthesis squared plus open parenthesis y minus 5 close parenthesis squared equals 12")[$( x + 2 )^(2) + ( y − 5 )^(2) = 12$] Center at #math.equation(block: false, alt: "open parenthesis 4 , minus 3 close parenthesis")[$( 4 , − 3 )$], radius #math.equation(block: false, alt: "2 the square root of 6")[$2 sqrt(6)$]. Center at #math.equation(block: false, alt: "open parenthesis the fraction 3 over 2 , minus 4 close parenthesis")[$( display(frac(3, 2)) , − 4 )$], one point on the cirlce #math.equation(block: false, alt: "open parenthesis 4 , minus 3 close parenthesis")[$( 4 , − 3 )$]. #math.equation(block: true, alt: "open parenthesis x minus the fraction 3 over 2 close parenthesis squared plus open parenthesis y plus 4 close parenthesis squared equals the fraction 29 over 4")[$attach(( x − display(frac(3, 2)) ), t: 2) + ( y + 4 )^(2) = display(frac(29, 4))$] Center at #math.equation(block: false, alt: "open parenthesis the fraction minus 3 over 2 , the fraction minus 1 over 2 close parenthesis")[$( display(frac(− 3, 2)) , display(frac(− 1, 2)) )$], one point on the cirlce #math.equation(block: false, alt: "open parenthesis minus 4 , minus 2 close parenthesis")[$( − 4 , − 2 )$]. Endpoints of a diameter at #math.equation(block: false, alt: "open parenthesis 1 , 5 close parenthesis")[$( 1 , 5 )$] and #math.equation(block: false, alt: "open parenthesis 3 , minus 1 close parenthesis")[$( 3 , − 1 )$]. #math.equation(block: true, alt: "open parenthesis x minus 2 close parenthesis squared plus open parenthesis y minus 2 close parenthesis squared equals 10")[$attach(( x − 2 ), t: 2) + ( y − 2 )^(2) = 10$] Endpoints of a diameter at #math.equation(block: false, alt: "open parenthesis 3 , 6 close parenthesis")[$( 3 , 6 )$] and #math.equation(block: false, alt: "open parenthesis minus 5 , 2 close parenthesis")[$( − 5 , 2 )$].