Triple Integrals

Triple integrals are done just like double integrals: by nested integrate calls.

Let's do

\begin{displaymath}
\int_0^1 \int_0^{-x}\int_0^{x+y}x^2 yz \mathrm{d}z \mathrm{d}y \mathrm{d}x.
\end{displaymath}


\begin{maximasession}
integrate(integrate(integrate(x^2*y*z,z,0,x+y),y,0,-x),x,0...
...^2*y*z,z,0,x+y),y,0,-x),x,0,1); \\
\o1. {{1}\over{168}} \\
\end{maximasession}





G. Jay Kerns 2009-12-01