Volume of parallelepiped given three parallel planes

3dcross productlinear algebravectorsvolume

Prove that the volume of the parallelepiped formed by the planes: $a_i x + b_i y + c_i z = p_i$, $a_i x + b_i y + c_i z = q_i$ , $i= \{1,2,3 \}$ is
$$ \left|\frac{\prod_{i=1}^{3} (p_i – q_i)}{\begin{vmatrix} a_{1} & b_{1} & c_{1} \\ a_{2} & b_{2} & c_{2} \\ a_{3} & b_{3} & c_{3} \end{vmatrix}} \right|$$

I tried by calculating the equation of line of intersections of any two parallel planes, with another non parallel plane; the length of the edge by calculating the the distance between the above two lines of intersections, measured parallel to the plane cutting the two parallel planes. However this approach is getting really messy, and I think that calculating the box product/scalar triple product with the three edges is really lengthy.

Is there a short/simple way to do this question?

I know that a similar Question has been asked here How to find volume of a parallelepiped if all six planes are given?
However the above formula hasn't been derived there and the method presented there still seems to be quite lengthy.

Best Answer

Define the matrix $$M= {\begin{bmatrix} a_{1} & b_{1} & c_{1} \\ a_{2} & b_{2} & c_{2} \\ a_{3} & b_{3} & c_{3} \end{bmatrix}} $$ and consider its effect on points on the surface of the parallelepiped:

  • Points $P=(x,y,z)$ on the first bounding plane satisfy $a_1x+b_1y+c_1z=p_1$, so the $x$-coordinate of $MP$ is $p_1$.
  • Similarly, points $Q=(x,y,z)$ on the second bounding plane satisfy $a_1x+b_1y+c_1z=q_1$, so the $x$-coordinate of $MQ$ is $q_1$.

Thus the first pair or parallel planes transform under $M$ to two planes perpendicular to the $x$-axis and separated by a distance $|p_1-q_1|$.

Likewise the second pair of parallel planes transform under $M$ to two planes perpendicular to the $y$-axis and separated by a distance $|p_2-q_2|$; and the third pair of parallel planes transform under $M$ to two planes perpendicular to the $z$-axis and separated by a distance $|p_3-q_3|$.

So the parallelepiped transforms into a rectangular cuboid, of volume $V=\prod_{i=1}^{3} |p_i - q_i|$. And the inverse matrix $M^{-1}$ trasforms a solid of volume $V$ into the original parallelepiped.

Hence the volume of the parallelepiped is $|V\det(M^{-1})|=\left|\dfrac{V}{\det M}\right|$.

Related Question