Calculator Function Refrence

Function Reference >Calculator Function Reference >Lists>Cross Product

Cross Product

The cross() function will calculate the cross product between one or more lists passed. The number of lists passed must equal the size of each list subract one. Each list must be the same size.
cross({2,3})={3,-2}
cross({2,3,-1},{1,-2,3})={7,-7,-7}
cross({1,0,0,0},{0,1,0,0},{0,0,1,0})={0,0,0,-1}