Vector Addition

  • (1, 2, 3)+(4, 5, 6)

Vector Multiplication

  • (1, 2, 3)*(4, 5, 6)

Cross Product

  • (1, 2, 3)#(4, 5, 6)

Matrice Multiplication

  • [[1, 2, 3][4, -5, 6][7, 8, 9]]*[[9, 8, 7][6, -5, 4][3, 2, 1]]

Matrice Vector Multiplication

  • [[1, 2, 3][4, -5, 6][7, 8, 9]]*(1, 2, 3)

Determinant

  • det( [[1, 2, 3][4, -5, 6][7, 8, 9]] )

Length

  • len( (1, 2, 3) )