Difference between revisions of "User:Bobthesmartypants"

Line 1: Line 1:
This is just a test edit.
+
==Problems==
 +
'''Problem 1''' <asy>
 +
draw(Circle((0,0),1));
 +
for (int i = 0; i < 10; ++i){
 +
  draw((0,0)--dir(360/(2^i)-90));
 +
}
 +
</asy>
 +
 
 +
A unit circle is divided into halves. One half is divided into two halves again, and one of those is divided again, and so on. Each of these sectors of the circle is rolled up into a cone, and a circular base is capped onto each one. what is the combined surface area of all of the cones?

Revision as of 19:31, 23 February 2014

Problems

Problem 1 [asy] draw(Circle((0,0),1)); for (int i = 0; i < 10; ++i){   draw((0,0)--dir(360/(2^i)-90)); } [/asy]

A unit circle is divided into halves. One half is divided into two halves again, and one of those is divided again, and so on. Each of these sectors of the circle is rolled up into a cone, and a circular base is capped onto each one. what is the combined surface area of all of the cones?