A circle C of r = 1 0 is divided into n equal sectors (the image above shows the case for n = 8 ). In each of them, the largest circle touches the arc and two surrounding radii, the second circle is tangent to the first circle and two radii, the third tangent to the second, and this goes on forever.
If the total area of these small circles in the original circle C is A n , find π r 2 − n → ∞ lim A n .
Give your answer to 3 decimal places.
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.
Sorry, can you follow the formatting guide to write your solution? It is really hard to read.
Log in to reply
Sorry, i know this. i don't now how to write good in the format guide. So i'm waiting someone help me with this.
Log in to reply
I used Daum equation editor to type all of my equations before copy and paste here. Then, I wrap them with \ ( ... \ )
Log in to reply
@Rui-Xian Siew – Thanks for the help, and sorry for the mess and the english mistakes. i hope you enjoy the solution now.
Log in to reply
@Lucas Maia – it looks better now. However you still have a lot to improve (careless mistakes). Thanks for your patience and effort in this problem!
Same solution as @Lucas Maia . And an epic problem by the way.
The radius of the largest incircles are given by: r 1 = 1 0 1 + s i n n π s i n n π
The smaller ones can then be calculated by: r k = 1 + s i n n π s i n n π ( 1 0 − 2 ∑ i < k r i )
The recursion above was realized with a subroutine receiving parameters n (count of segments) and i (count of iterations) and returning the sum of the squares of the radii:
Function kreise(n,i);
f=sin(pi/n)/(1+sin(pi/n));
r=10*f;
a=n*r^2;
for j=1 to i do
r1=f (10-2 r);
a=a+n*r1^2;
r=r+r1;
end
return(a)
What did u feed the function? n=? And i=?
Log in to reply
To read in the paragraph above the function!
Problem Loading...
Note Loading...
Set Loading...
calculate the first radius circle we can find looking to a sector and connect the center of big circle to the first circle and a perpendicular of the center of first circle to the the line to sector and find a right triangle with the following relation
given s = sin ( π / n ) , we have s = R 1 / ( r − R 1 ) of the right triangle. so we can isolate R 1 and find R 1 = r ( s / 1 + s ) To find the other radius, you can analyse the k+1 circle and k circle.
anagously to the first circle we can find the following identity:
definying: S k = R 1 + R 2 + . . . + R k
R k = ( r − 2 S k − 1 ) s / ( 1 + s ) ⟹ S k − 1 = ( r − R k ( 1 + s ) / s ) / 2
So
R k + 1 ( 1 + s ) / s = r − 2 S k = r − 2 R k − 2 S k − 1 = = r − 2 R k − ( r − R k ( 1 + s ) / s ) = R k ( 1 − s ) / s ⟹ R k + 1 ( 1 + s ) = R k ( 1 − s ) , and we clearly find a geometric progression with ratio (1-s)/(1+s) and first therm r1=r(s/s+1).
so for a sector we have
A r e a o f s e c t o r = π ( R 1 2 + . . . + R k 2 ) , we have a infinite PG with ratio less than 1 so its convergent and we can use that:
A r e a o f s e c t o r = π . R 1 2 / [ 1 − ( 1 − s ) / ( 1 + s ) ] = π . r 2 . ( s / ( 1 + s ) ) 2 . [ ( s + 1 ) 2 / 4 s ] = π . r 2 . s / 4
calculating An now:
using the fundamental trigonometrica limit:
s = sin ( π / n ) , so lim n ∞ sin ( π / n ) / ( π / n ) = 1 = lim n ∞ n . s / π ,
lim n ∞ A n = lim n ∞ n . s . π . r 2 / 4 = lim n ∞ ( n . s / π ) . π 2 . r 2 / 4 = ( π r / 2 ) 2
So the first expression is:
π r 2 − lim n ∞ A n = π r 2 − ( π r / 2 ) 2 = π r 2 ( 1 − π / 4 )
when we put r = 1 0 u , we have that the expression is equal to aproximately E x p r e s s i o n = 6 7 , 4 1 9 u 2