|
|
Problem:
| Find the crossproduct between v and w where, |
> v := 5*i - j + 2*k;
v := 5 i - j + 2 k
| and |
> w := 2*i + j - k;
w := 2 i + j - k
|
|
Solution:
| Just define i, j and k OR grab the components OR use the formula. Here are several ways to do it with maple. |
> crossprod(v,w);
[-1, 9, 7]> crossprod([5,-1,2],[2,1,-1]);
[-1, 9, 7]> v :=[5,-1,2]: w := [2,1,-1]:
[-1, 9, 7]