#Defining the vectors
a=vector([2,0,3])
b=vector([0,6,2])
c=vector([3,3,0])

#Calculating and printing the volume of the tetrahedron which is the triple product
#of the given vectors
abs(a*b.cross_product(c))/6

Kreyszig-8.3-7 (last edited 2010-12-16 07:46:05 by punchagan)