1. We define the following variables:
R = radius of the resultant cone;
r = radius of the original circular piece of metal;
h = height of the cone;
t = angle of the sector cut from the circle.
Using the fact that the volume of a cone is 1/3 the area of its base times the height of the cone and the right triangle geometry of a triangle with sides h and R and hypotenuse r we can write the volume V as a function of t Again, here r is the constant radius of the original circle and R is the radius of the cone. This right triangle we obtain by taking one half of the sliced triangle obtained by cutting the resulting cone along its axis. Thus the length of its height is h, the length of its base radius is R, and the length of its lateral edge is r (the radius of the original circle.)
Our volume formula is now defined for r = 4.
Input :=
Vr[t_] = V[t]/.{r->4};
We plot volume as a function of the angle t.
Input :=
Plot[Vr[t],{t,0, 2 Pi}]
Output =
-Graphics-
And in order to maximize this volume we find where the derivative is 0.
Input :=
Vrp[t_] = Vr'[t];
Input :=
solt = Solve[Vrp[t]==0,t]//N
Output =
{{t -> 6.28319}, {t -> 1.15299}, {t -> 11.4134}}
Again t = 11.4134 is out of range and t = 6.28319 gives the 0 volume. Therefore we select solution 2 - 1.15299 radians or 66.0612 degrees (a rather flat cone) and determine the maximum volume to be 25.7963 cm^3.
Input :=
Vr3 = Vr[t]/.solt[[2]]//N
Output =
25.7963
Input :=
t 180/Pi/.solt[[2]]//N
Output =
66.0612