Hey guys. Just wondering, if you had a circle and you cut out a sector of arc length x, and radius r in order to make a cone, how would you express the volume just in terms of x? The equation i've got at the moment still has an r in it and it's not helping my cause at all 
I'm not sure that there's a way to express just in terms of x - the volume would also be dependent upon the angle of the sector.
Anyway: (Sorry, it's a bit messy and probably hard to read because I haven't used latex)
x = (2 * pi * r * theta) / 360, where theta is the angle of the sector in degrees
Rearrage:
r = (360 * x) / (2 * pi * theta)
= (180 * x) / (pi * theta)
x = 2 * pi * r1 as well, where r1 is the radius of the base circle of the cone
r1 = x / (2 * pi)
If you look at the cross-section of the cone, the height of the cone can be found using pythag:
r1^2+h^2=r^2
h=sqrt(r^2-r1^2)
that is,
(x / (2 * pi))^2 + h^2 = ((180*x) / (pi*theta))^2
h = sqrt( ((180 * x) / (pi * theta))^2 - (x / (2*pi))^2 )
h = sqrt( (32400x^2 / pi^2 * theta^2) - ( x^2 / 4 pi^2 ) )
Make the thing inside the sqrt one fraction:
h = sqrt( (129600 x^2 - x^2*pi*theta^2) / (4*pi^2*theta^2) )
h = sqrt( (x^2(129600 -pi*theta^2)) / (4*pi^2*theta^2) ) --> factor x^2 out of the numerator
h = (x * sqrt(129600 -pi*theta^2) ) / 2*pi*theta
Volume of cone = 1/3 * pi*r^2*h
The r used for the formula is what we've called r1 (radius of the base circle of the cone) = x/2pi
So, V = (1/3) * pi * (x/2pi)^2 * (x * sqrt(129600 -pi*theta^2) )/(2*pi*theta)
= (1/3) * pi * x^2/4pi^2 * (x * sqrt(129600 -pi*theta^2) )/(2*pi*theta)
= (1/3) * x^2/4pi * (x * sqrt(129600 -pi*theta^2) )/(2*pi*theta)
= [x^3 * sqrt(129600 -pi*theta^2)] / [24*pi^2*theta]