I want to ask about vector multiplication (cross product) in $4$-d. I heard that Gram-Schmidt process is involved but I am not sure how the process is involved. The multiplication involves $3$ vectors with $4$ components. Please someone help.
-
I think the answers to this question have links you might be interested in: http://math.stackexchange.com/questions/720813/do-four-dimensional-vectors-have-a-cross-product-property – coldnumber Jul 05 '15 at 06:21
-
1It is not clear what your question is. The multiplication you are talking about sounds like the antisymmetric wedge product of 3 vectors. If you are doing this at an elementary level, it will be presented in terms of determinants of $4\times4$ matrices with 4 unit vectors in the top row. At a more advanced level, the definition is in terms of duals of fully antisymmetric trilinear function spaces. So you should explain what kind of definitions you are using. And also ask a question! – Alan U. Kennington Jul 05 '15 at 06:29
2 Answers
Eckmann's definition of a cross product on a finite-dimensional, positive definite, real inner product space $\def\bfv{{\bf v}}(\Bbb V, \langle\,\cdot\, , \,\cdot\,\rangle)$ (say, $\dim \Bbb V = n$) is a map $$\times: \Bbb V^r \to \Bbb V$$ for some $r \in \{1, \ldots, n\}$ satisfying \begin{align} \langle \times(\bfv_1, \ldots, \bfv_r), \bfv_a \rangle &= 0, \qquad \qquad \qquad a \in \{1, \ldots, n\} \\ \langle \times(\bfv_1, \ldots, \bfv_r), \times(\bfv_1, \ldots, \bfv_r) \rangle &= \det [\langle \bfv_a, \bfv_b \rangle] . \end{align} Here, $[\langle \bfv_a, \bfv_b \rangle]$ just denotes the $r \times r$ matrix with $(a, b)$ entry $\langle \bfv_a, \bfv_b \rangle$.
The first condition precisely asks that the cross product of vectors $\bfv_1, \ldots, \bfv_r$ be orthogonal to each of those vectors, and this imposes $r$ independent linear constraints (except in the trivial case in which the $r$ vectors are not linearly independent, in which case the cross product is zero by the second condition, and so which we henceforth assume is not the cae). In a case like ours, where $r = n - 1$, we have $n - 1$ independent linear constraints, which determines a line.
Now, since this line is determined by orthogonality constraints we can determine a unit vector $\bf u$ spanning this line by picking any vector $\bfv_n$ linearly independent from the given vectors $\bfv_1, \ldots, \bfv_{n - 1}$ whose cross product we are computing and applying the Gram-Schmidt Algorithm to the basis $(\bfv_1, \ldots, \bfv_n)$ and extracting the last unit vector. By construction, the cross product is given by $$\times(\bfv_1, \ldots, \bfv_{n - 1}) = \lambda u.$$ for some $\lambda \in \Bbb R$. Substituting into the second condition gives $$\langle \lambda {\bf u}, \lambda {\bf u} \rangle = \det [\langle \bfv_a, \bfv_b \rangle],$$ and since $\bf u$ has unit length, we have $$\lambda^2 = \det [\langle \bfv_a, \bfv_b \rangle],$$ which determines $\lambda$ up to sign. (This reflects that there are actually two $(n - 1)$-fold cross products on $\Bbb V$, each determined by a choice of orientation.) On $\Bbb R^n$, there is a canonical orientation that we usually call "right-handed", and so we can determine a choice of sign for $\lambda$ by asking that the basis $$(\bfv_1, \ldots, \bfv_{n - 1}, \times(\bfv_1, \ldots, \bfv_{n - 1}))$$ is right handed. Given a right-handed basis (like the canonical one on $\Bbb R^n$, we can regard the vectors ${\bf w}_a$ in the basis as vectors $[{\bf w}_a] \in \Bbb R^n$, in which case the right-handed condition is just that $$\det \pmatrix{\bfv_1 & \cdots & \bfv_{n - 1} & \times(\bfv_1, \ldots, \bfv_{n - 1})} > 0.$$

- 99,363
You do it the same way as in 3D, but you do a 4*4 matrix, whose rows are the three vectors, and the vector (w, x, y, z). Then, find the determinate of them.
The usual rules apply: the exchange of any pair of vectors will produce the negative, etc, but a cyclic permutation of A, B, C, will not.
The dot product of V(A,B,C) and D gives the volume of a parallelopied of those four vectors, which is zero if any three fall in the same hedrix (2d), or all four are co-choric (in the same 3d space).

- 6,856
-
-
The fourth row is the unit vectors, (w,x,y,z). It's the same way that you do ordinary cross product in 3d. – wendy.krieger Jul 05 '15 at 12:10