Cross product in 2D by rending k component 0

plane-geometryvector-spacesvectors

I was wondering why the cross product does not work in 2D. For example, would it work if I made the changed the k component to 0 and thus have the cross product take place result in a vector that would only lie on the x and y-axis ?

i.e.
If $\\v_1=[a,b,c] $ and $\\v_2=[d,e,f] $

But since the vectors take place in only the $\\x,y-plane $

Let $c=f=0 $

Thus

$\\V_2\times V_1=({{[b(0)-e(0)],[a(0)-d(0)],[a(e)-b(d)]}}) $

Which effectively equates to
$\\V_2\times V_1=[0,0,(ae-bd)] $

Am I breaking anything by effectively doing this? Because since surely 2D vectors are just a subset of the 3D vectors, rending the k component a 0, doesn't change anything?

All thoughts are appreciated on my line of reasoning.

Best Answer

$v_2\times v_1$ is perpendicular to the plane containing $v_1$ and $v_2$. If you choose $v_1,v_2$ to lie in the $xy$-plane, the only vectors perpendicular to this plane are of the form $(0,0,p)$, which explains why $v_2\times v_1$ is of this form.

Related Question