Math Problem Statement

Simon has built a gazebo, whose shape is a regular heptagon, with a side length of $3$ units. He has also built a walkway around the gazebo, of constant width $2$ units, as shown below. (Every point on the ground that is within $2$ units of the gazebo and outside the gazebo is covered by the walkway.) Find the area of the walkway.

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

pair A, B;

for(int i = 0; i <= 6; ++i) { A = dir(90 + 360/7i); B = dir(90 + 360/7(i + 1)); fill(A--arc(A, 1/2abs(A - B), 90 + 360/7i - 30, 90 + 360/7*i + 30)--cycle, gray(0.8)); fill(A--(A + scale(1/2)rotate(90)(A - B))--(B + scale(1/2)rotate(90)(A - B))--B--cycle, gray(0.8)); }

for(int i = 0; i <= 6; ++i) { A = dir(90 + 360/7i); B = dir(90 + 360/7(i + 1)); draw(A--B); draw(arc(A, 1/2abs(A - B), 90 + 360/7i - 360/7/2, 90 + 360/7*i + 360/7/2)); draw((A + scale(1/2)rotate(90)(A - B))--(B + scale(1/2)rotate(90)(A - B))); }

[/asy]

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Geometry
Area of Polygons
Trigonometry

Formulas

Area of regular polygon: A = (1/4) * n * s^2 * cot(π/n)
Area difference for walkway: A_walkway = A_large_polygon - A_small_polygon

Theorems

Regular Polygon Area Theorem
Trigonometric Functions (cotangent)

Suitable Grade Level

Grades 10-12