While Mai and Joey were preparing for the party, Tea Gardner and Yugi Muto, both lovers, hung out at the church, where they stared at a stain-glassed Reuleaux pentagon window, filled with pink and red colors. The conversation started:
Tea : Wow! What a beautiful rose! Isn't it beautiful, Yugi?
Yugi : Yes, it is!
Tea : I have a math problem for you to try out. Suppose we start with five unit circles, where each center is intersected by two circular arcs. Then, this makes a Reuleaux pentagon.
Yugi : That is easy to remember...
Tea : But there's more! Draw another Reuleaux pentagon inside, where each vertex intersects the midpoint of the circular arcs. Repeat this infinitely, so we have much like the stain-glassed one. Here is the following:
[After minutes of perfect-sketching]
Here is the rose with alternating red and white petals. Your goal is to compute the area of all red petals.
Yugi : Touche! What a long geometry problem you asked here! Is there a specific formula to generalize the area of the red petals after finite number of iterations?
Tea : If I give that away, then you will know the answer to this fun problem! Solve this correctly, and we will enjoy a nice party! :)
What is the area of all red petals in the second diagram, where the diagonal of the largest Reuleaux pentagon is 1? If your area is , input as your answer.
Preliminaries
A Reuleaux polygon is a curvilinear polygon formed by an odd number of circular arcs. Like a Reuleaux triangle , the apex points of a Reuleaux polygon are centers of identical circles.
For the main problem, determine the area of a Reuleaux pentagon.
Bonus: Generalize this for any odd number of vertices and circular arcs. You should notice that as the number of edges approaches , a Reuleaux polygon becomes close to a circle of area , where is the radius of the large circle.
This is the end of the fourth chapter of the story . Check chapter directory if you are interested:
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Relevant wiki: Length and Area - Composite Figures
A Reuleaux pentagon represents the combination of a regular pentagon and 5 minor segments. For this problem, we generalize the solution, given the following parameters:
c is the circumradius of a pentagon. By law of cosines , we find that c = 1 0 1 5 0 + 1 0 5
A denotes the area of a Reuleaux pentagon. The area of a pentagon is 4 1 2 5 + 1 0 5 s 2 , and the area of a minor segment is 1 0 π d 2 − 2 1 d 2 sin ( 3 6 ∘ ) . Combining those expressions in terms of d , the area of a Reuleaux pentagon is A = 2 1 d 2 ( π − 2 5 − 1 0 5 )
Recurrence Relation Construction
Consider the following diagram
where F , G , H , I and J are midpoints of circular segments, and O is the centroid of two pentagons A B C D E and F G H I J . Since the circumradius of the new pentagon decreases after each n th iteration by d − c (indicated by ∣ G O ∣ = ∣ F O ∣ = ∣ F C ∣ − ∣ C O ∣ = ∣ G D ∣ − ∣ D O ∣ ), the recurrence relation is c n + 1 = d n − c n for each positive integer n ≥ 1 , where d 1 = 1 and c 1 = 5 + 5 5 5 0 + 1 0 5 . Because the lengths of both A B C D and F G H I J are directly proportional, the relationship is c n d n = c n + 1 d n + 1 = c n + 2 d n + 2 = ⋯ Then, since we want to determine the area of all red petals, the total area is A red = n = 1 ∑ ∞ 2 1 ( d n ) 2 ( π − 2 5 − 1 0 5 ) ( − 1 ) n − 1 = n = 0 ∑ ∞ 2 1 ( c n + 2 + c n + 1 ) 2 ( π − 2 5 − 1 0 5 ) ( − 1 ) n
Computation
The fun part of this problem is that the computation involves two variables - d n and c n . Instead of time-consuming substitution with the values of c 's and d 's, we can approach this the elegant way. Given that d 1 = 1 and c 1 = 5 + 5 5 5 0 + 1 0 5 , then c n d n d n = 5 + 5 5 5 0 + 1 0 5 1 = 5 0 + 1 0 5 5 + 5 5 c n which shows that since c n + 1 = c n ( 5 0 + 1 0 5 5 + 5 5 − 1 ) then the recurrence relation in terms of c only is the following geometric series c n = 5 + 5 5 5 0 + 1 0 5 ( 5 0 + 1 0 5 5 + 5 5 − 1 ) n − 1 Thus, the total area of the red petals is approximately 0 . 4 1 8 squared feet. The answer to the problem is ⌊ A ⋅ 1 0 3 ⌋ = 4 1 8 .