Circles C B and C 1 have centers on the diameter of a larger circle C A such that all three circles are mutually tangent to each other. Then for integers n > 1 , C n is mutually tangent to C A , C B , and C n − 1 .
If the radius of C A is 3 and the radius of C B is 2 , then the radius of C 1 4 5 can be expressed as m 1 .
Find m .
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.
Brute force, I calculated the centers and radii. Therefore, my solution is closer to that of Felipe Lorenzzon.
I'm not sure if my method was the easier one. Initially, I plotted C A , C B and C 1 as functions on the plane. Then I used the distance formula to calculate the distance between the centers of C B and C 2 and set that equal to the radius of C B plus the radius of C 2 (because they are tangent). I found the distance between the center of C A and C 2 and set that equal to the radius of C A minus the radius of C 2 (since the latter is internally tangent to the former). I Then found the distance between C 2 and C 1 and set that equal to the sum of their radii (again, because they are tangent to each other). Finally, I solved for the radius using basic algebra and found 7 6 .
After that, I repeated the same process, but, instead of finding the distance between C 2 and C 1 , I did it with a general C n + 1 and C n . By isolating C n + 1 in terms of C n , I found the formula C n + 1 = 2 5 C n 2 − 1 2 C n + 3 6 6 C n 2 + 3 6 C n − 1 2 C n 6 C n − 6 C n 2
Using an online recursion calculator, I plugged in C 1 = 1 and found C 1 4 5 ≈ 0 , 0 0 0 2 8 9 2 6 8 1 2 1 5 . Since I knew the solution was on the form m 1 , I tried a bunch of integers until the number 3457 matched my result.
Maybe you could find the explicit formula for C n , however, I wasn't able to do so. Nice question, by the way.
Nice solution! For this problem I found that the explicit formula is r n = ( n − 1 ) 2 + 6 6 .
As r 2=\frac{6}{7} I think the formula should be r n=\frac{6}{(n-1)^2+6}
Problem Loading...
Note Loading...
Set Loading...
The radius of C 1 is half the difference of the diameter of C A and the diameter of C B , which is r 1 = 2 1 ( 2 ⋅ 3 − 2 ⋅ 2 ) = 1 .
Then by Descartes’ Theorem , the radius r n of C n is defined by r n 1 = r B 1 + r n − 1 1 − r A 1 + 2 r B r n − 1 1 − r A r B 1 − r A r n − 1 1 , which can inductively shown to be r n = ( r A − r B ) 2 ( n − 1 ) 2 + r A r B r A r B ( r A − r B ) .
For r A = 3 , r B = 2 , and n = 1 4 5 , r n = ( 3 − 2 ) ( 1 4 5 − 1 ) 2 + 3 ⋅ 2 3 ⋅ 2 ⋅ ( 3 − 2 ) = 3 4 5 7 1 , so m = 3 4 5 7 .