Given two vectors x,y, in 2D or three vectors x,y,z in 3D space, compute the area (or volume) of the parallelogram they define.

For example:

X=[0,1]'; Y=[1,0]'; 
V = 1;
X=[1,0,0]'; Y=[0,1,0]'; Z=[0,0,1];
V = 1;

Solution Stats

82 Solutions

36 Solvers

Last Solution submitted on Apr 02, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...