InterviewSolution
Saved Bookmarks
| 1. |
Find the volume of the parallelepiped with its edges represented by the vectors i + j, i + 2j and i + j + πk. |
|
Answer» Volume of the parallelepiped with its edges represented by the vectors \(\vec a,\vec b,\vec c\) is \([\vec a\,\vec b\,\vec c]\) = \(\vec a.(\vec b\times\vec c)\) = \(\begin{vmatrix} 1 & 1 & 0 \\ 1 & 2 & 0 \\ 1 & 1 & \pi \end{vmatrix}\) = π |
|