Volume of a tetrahedron.
\[ V = \]
Real tetrahedron is irregular with three nearly-equal measurements.
a_1 = 48 a_2 = 36 a_3 = 51
a = (a_1 + a_2 + a_3) / 3
a
45.0
from math import sqrt
V = a**3 / (6*sqrt(2))
V
10739.18423927069
V / 231
46.489975061777876
round(Out[7])
46