Math Problem Statement

In triangle $ABC,$ $\angle B = 90^\circ.$ Semicircles are constructed on sides $\overline{AB},$ $\overline{AC},$ and $\overline{BC},$ as shown below. Show that the total area of the shaded region is equal to the area of triangle $ABC.$

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

pair A = (1, 0); pair B = (7/25, 24/25); pair C = (-1, 0);

path AB = arc((16/25, 12/25), 3/5,-53.13, 180-53.13); path BC =arc((-9/25, 12/25), 4/5,36.87, 180+36.87); path AC = arc((0, 0), 1, 0, 180);

fill(AB--cycle, gray); fill(BC--cycle, gray); fill(AC--cycle, palegray); draw(arc((0, 0), 1, 0, 180)); draw(arc((16/25, 12/25), 3/5,-53.13, 180-53.13)); draw(arc((-9/25, 12/25), 4/5,36.87, 180+36.87)); draw(A--B--C--cycle); draw(rightanglemark(A, B, C, 3));

label("$A$", A, E); label("$B$", B, N); label("$C$", C, W); [/asy]

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
Areas of Circles and Triangles
Pythagorean Theorem

Formulas

Area of a right triangle: Area = 1/2 * base * height
Area of a semicircle: Area = 1/2 * π * r^2
Pythagorean Theorem: b^2 = a^2 + c^2

Theorems

Pythagorean Theorem

Suitable Grade Level

Grades 9-12