Math Problem Statement

Point Y lies on line segment XZ. Semicircles are constructed with diameters XY, XZ, and YZ. Find the area of the blue region.

Asymptote code below

[asy] unitsize(1 cm);

pair A, B, C;

A = (0,0); B = (2,0); C = (6,0);

fill(arc((A + C)/2, abs(A - C)/2, 0, 180)--cycle,paleblue); fill(arc((A + B)/2, abs(A - B)/2, 0, 180)--cycle,white); fill(arc((B + C)/2, abs(B - C)/2, 0, 180)--cycle,white); draw(A--B--C--cycle); draw(arc((A + B)/2, abs(A - B)/2, 0, 180)); draw(arc((A + C)/2, abs(A - C)/2, 0, 180)); draw(arc((B + C)/2, abs(B - C)/2, 0, 180));

label("$X$", A, S); label("$Y$", B, S); label("$Z$", C, S); label("$6$", (A + B)/2, S, red); label("$10$", (B + C)/2, S, red); [/asy]

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
Semicircles
Area of Circles
Subtraction of Areas

Formulas

Area of a semicircle: A = (1/2) * π * r^2
Total area of the blue region: A_blue = A_XZ - A_XY - A_YZ

Theorems

Properties of Semicircles
Area Subtraction Theorem

Suitable Grade Level

Grades 8-10