0

I was asked to find the area of the parallelogram formed from these two sides: <-2,1> and <1,3>. enter image description here

How can I find the cross-product if it is not in $\mathbb R^3$?

This picture is of my work: enter image description here

J. W. Tanner
  • 60,406
Burt
  • 1,813

2 Answers2

1

You can embed the vectors $\vec a = \langle -2,1\rangle$ and $\vec b= \langle 1,3\rangle$ into $\mathbb{R}^3$ via $ \vec a = \langle -2,1,0\rangle$ and $\vec b = \langle 1,3,0\rangle$. Here, I am using the same notations $\vec a$ and $\vec b$ to represent the embedded vectors. Then $$ |\vec a\times \vec b| = \left| \begin{array}{ccc} i & j & k \\ -2& 1 & 0 \\ 1 & 3 & 0 \\ \end{array} \right| = |-6k-k| = |-7k| = |-7||k| = 7 $$ since $i$, $j$, and $k$ are the standard unit vectors.

Mee Seong Im
  • 3,190
  • 1
  • 15
  • 22
0

First of all, you could embed the vectors in $\mathbb R^3$ as $(-2,1,0)$ and $(1,3,0)$.

Second of all, the magnitude of the cross-product is $|(0,0,-6-1)|=7.$

J. W. Tanner
  • 60,406