#31 p629 find the volume of the parallelepiped formed by v,u and w
#31 p629 such that v=<-3,3,2>, u=<2,-3,1> and w=<1,1,3>
#31 p629 ie: find v(u x w)
v=vector([-3,3,2])
u=vector([2,-3,1])
w=vector([1,1,3])
c=u.cross_product(w)
s=v.dot_product(c)
show(v)
show(u)
show(w)
show(c)
show(s)
p1=plot(v,color='red')
p2=plot(u,color='green')
p3=plot(w,color='cyan')
show(p1+p2+p3,aspect_ratio=1)
|
5
500
/home/pub/550/cells/5/.jmol_images/sage0-size500.jmol.png?1653528226.56
/home/pub/550/cells/5/sage0-size500.jmol?1653528226.56
/home/pub/550/jsmol
notActivated
|