InterviewSolution
Saved Bookmarks
| 1. |
For three vectors `vecu,vecv,vecw` which of the following expressions is not eqal to any of the remaining three?A. `vecu.(vecvxx vecw)`B. `(vecvxx vecw).vecu`C. `vecv.(vecuxx vecw)`D. `(vecuxx vecv).vecw` |
|
Answer» Correct Answer - c `[ vecu vecv vecw] = [vecv vecw vecu] = [vecw vecu vecv]` but `[vecv vecu vecw]=- [vecu vecv vecw]` |
|