130 likes | 507 Views
The Vector or Cross Product. Lecture V1.3 Example 5 Moodle. Definition of the Cross Product. commutative law does NOT hold. Distributive Law. Cross Product and Vector Components. 0. Cross Product and Vector Components. Associative Law. Does NOT, in general, hold for the cross product.
E N D
The Vector or Cross Product Lecture V1.3 Example 5 Moodle
Definition of the Cross Product commutative law does NOT hold
Associative Law Does NOT, in general, hold for the cross product
Cross Product Geometric Properties Area of parallelogram is h |A| =
Cross Product Geometric Properties The volume of the parallelepiped is equal to (area of parallelogram formed by A and B) (height h)
Matlab Example 1 and Given the vectors and find = 14j + 7k
Matlab Example 1 and Given the vectors and find >> A = [1 -2 4] A = 1 -2 4 >> B = [3 1 -2] B = 3 1 -2 >> C = cross(A,B) C = 0 14 7 >> magC = norm(C) magC = 15.6525 >> = 14j + 7k
Matlab Example 2 and Given the vectors find the angle between A and B using >> A = [1 -2 4] A = 1 -2 4 >> B = [3 1 -2] B = 3 1 -2 >> phi = 180 - (asin(norm(cross(A,B))/(norm(A)*norm(B))))*180/pi phi = 114.0948 >> .