Math Problem Statement

In triangle $XYZ,$ circles are drawn centered at $X$, $Y$, and $Z$, so that all pairs of circles are externally tangent. If $XY = 8,$ $XZ = 10,$ and $YZ = 12$, then find the sum of the areas of all three circles.

Asymptote code below [asy] unitsize(1 cm);

pair A, B, C; real[] r;

A = (1,2); B = (0,0); C = (3,0); r[1] = (abs(A - B) + abs(A - C) - abs(B - C))/2; r[2] = (abs(A - B) + abs(B - C) - abs(A - C))/2; r[3] = (abs(A - C) + abs(B - C) - abs(A - B))/2;

draw(A--B--C--cycle); draw(Circle(A,r[1])); draw(Circle(B,r[2])); draw(Circle(C,r[3]));

label("$X$", A, N); label("$Y$", B, SW); label("$Z$", C, SE); [/asy]

Solution

We are given a triangle XYZXYZ with side lengths XY=8XY = 8, XZ=10XZ = 10, and YZ=12YZ = 12. Circles are centered at the vertices XX, YY, and ZZ, and all pairs of circles are externally tangent. We need to find the sum of the areas of these circles.

Step 1: Denote the Radii of the Circles

Let:

  • rXr_X be the radius of the circle centered at XX,
  • rYr_Y be the radius of the circle centered at YY,
  • rZr_Z be the radius of the circle centered at ZZ.

Since the circles are externally tangent to each other, the sum of the radii of two circles centered at any two vertices equals the distance between those two vertices. This gives us the following system of equations: rX+rY=XY=8,r_X + r_Y = XY = 8, rX+rZ=XZ=10,r_X + r_Z = XZ = 10, rY+rZ=YZ=12.r_Y + r_Z = YZ = 12.

Step 2: Solve the System of Equations

We now solve the system of equations to find rXr_X, rYr_Y, and rZr_Z.

  1. From rX+rY=8r_X + r_Y = 8, we can express rYr_Y as: rY=8rX.r_Y = 8 - r_X.

  2. Substitute this expression for rYr_Y into the equation rY+rZ=12r_Y + r_Z = 12: (8rX)+rZ=12,(8 - r_X) + r_Z = 12, which simplifies to: rZ=rX+4.r_Z = r_X + 4.

  3. Now substitute rZ=rX+4r_Z = r_X + 4 into the equation rX+rZ=10r_X + r_Z = 10: rX+(rX+4)=10,r_X + (r_X + 4) = 10, which simplifies to: 2rX+4=10.2r_X + 4 = 10. Solving for rXr_X, we get: 2rX=6rX=3.2r_X = 6 \quad \Rightarrow \quad r_X = 3.

  4. Substitute rX=3r_X = 3 into rY=8rXr_Y = 8 - r_X to find rYr_Y: rY=83=5.r_Y = 8 - 3 = 5.

  5. Finally, substitute rX=3r_X = 3 into rZ=rX+4r_Z = r_X + 4 to find rZr_Z: rZ=3+4=7.r_Z = 3 + 4 = 7.

Thus, the radii of the circles are rX=3r_X = 3, rY=5r_Y = 5, and rZ=7r_Z = 7.

Step 3: Calculate the Areas of the Circles

The area of a circle is given by the formula A=πr2A = \pi r^2. Therefore, the areas of the three circles are:

  • Area of the circle centered at XX: AX=πrX2=π×32=9πA_X = \pi r_X^2 = \pi \times 3^2 = 9\pi,
  • Area of the circle centered at YY: AY=πrY2=π×52=25πA_Y = \pi r_Y^2 = \pi \times 5^2 = 25\pi,
  • Area of the circle centered at ZZ: AZ=πrZ2=π×72=49πA_Z = \pi r_Z^2 = \pi \times 7^2 = 49\pi.

Step 4: Sum of the Areas

The sum of the areas of the three circles is: AX+AY+AZ=9π+25π+49π=83π.A_X + A_Y + A_Z = 9\pi + 25\pi + 49\pi = 83\pi.

Thus, the sum of the areas of the three circles is 83π\boxed{83\pi}.

Do you want details on any specific part or have any questions? Here are some related questions:

  1. How would the problem change if the circles were internally tangent instead of externally tangent?
  2. What is the general method for solving such systems of equations in geometry?
  3. Can we find the circumradius of triangle XYZXYZ given its side lengths?
  4. How would the solution differ if one of the side lengths was unknown?
  5. What if the circles were overlapping instead of tangent—how would the areas be affected?

Tip: When solving systems of linear equations, substitution or elimination are powerful techniques depending on the number of variables and how the equations relate.

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
System of Equations
Circle Properties
Triangles

Formulas

Sum of circle radii: r_X + r_Y = XY, r_X + r_Z = XZ, r_Y + r_Z = YZ
Area of a circle: A = πr^2

Theorems

External Tangency Condition for Circles
Basic Triangle Geometry

Suitable Grade Level

Grades 9-12