1 Find the maximum volume of a square based frustum truncate
1) Find the maximum volume of a square based frustum (truncated pyramid).
2) Given a square sheet, find distance d and angle a which will maximize the volume of the frustum (truncated pyramid).
Solution
Volume of a truncated square pyramid is given by:
V = h (a2 + ab + b2) /3
First, we use the fact that the volume of a pyramid is (1/3)B2H, where B is the length of the base and H is the height of the pyramid. Using a few applications of the pythagorean theorem, we can see that
B = L/sqrt(2) - sqrt(2)X
H2 = [sqrt(L2/4 + x2)]2 - (L/2 - X)2
H = sqrt(LX)
So the volume is given by the equation
V = (1/3)(sqrt(LX))(L/sqrt(2) - sqrt(2)X)2
By taking the derivative of V and solving dV/dX = 0, we will get the optimal value of X:
V = [0.5L5/2X1/2 - 2L3/2X3/2 + 2L1/2X5/2]/3
dV/dX = [0.25L5/2X-1/2 - 3L3/2X1/2 + 5L1/2X3/2]/3
[0.25L5/2X-1/2 - 3L3/2X1/2 + 5L1/2X3/2]/3 = 0
0.25L2 - 3LX + 5X2 = 0
X = [3L ± sqrt(9L2 - 5L2)/10
X = L/10 and L/2
The solution X = L/2 corresponds to a pyramid with no volume, therefore, the unique solution is L/10. This means that in order to construct a square pyramid with the largest possible volume, you should make X equal to one tenth of the side length.
answer.
