Let ABCD be a tetrahedron whose edges have length 5. Consider the set of pyramids of the form AMNP where M lies on AB, N lies on AC, and P lies on AD such that AM, AN, and AP $\in \{1,2,3,4\}$. Compute the sum of the volumes of all such pyramids.
I attempted this problem by assigning coordinates and using shoelace theorem. I ended up getting a form that I found the expected value of, but it was completely incorrect. Also, I was stumbling around with my solution, assuming things.
Essentially, I am stuck. It would be great if anyone could provide a thread to get me started.
Let
We will use the fact under affine transform, the ratio of volumes of different shapes remain the same. If one apply an affine transform to map the vertices of original tetrahedron to new positions $$(A, B, C, D) \mapsto (A'B'C'D') = ((0,0,0),(5,0,0),(0,5,0),(0,0,5))$$ Vertices $P,Q,R$ will get mapped to following positions
$$(P,Q,R) \mapsto (P',Q',R') = ((u,0,0),(0,v,0),(0,0,w))$$ This tells us
$$\Delta_{APQR} : \Delta_{ABCD} = \Delta_{A'P'Q'R'} : \Delta_{A'B'C'D'} = \frac16 uvw : \frac16 5^3\\ \implies \Delta_{APQD} = \frac{\Delta_{ABCD}}{125} uvw $$ Summing over all possible pyramids is equivalent to summing $u,v,w$ over $\{1,2,3,4\}$. This means
$$\verb/SUM/ = \frac{\Delta_{ABCD}}{125}\sum_{u=1}^4\sum_{v=1}^4\sum_{w=1}^4 uvw = \frac{\Delta_{ABCD}}{125} (1+2+3+4)^3 = 8\Delta_{ABCD}$$
If you look up the volume of a regular tetrahedron on wiki (or just compute it by hand), you will find
$$\Delta_{ABCD} = \frac{5^3}{6\sqrt{2}}\quad\implies\quad\verb/SUM/ = 8\Delta_{ABCD} = \frac{250\sqrt{2}}{3}$$