When given a vector $\overrightarrow V$ = $(x, x+y, x+y+z)$. Find the second order antisymmetric tensor associated with it.
This problem needs to be solved in cartesian coordinate system. The problem I'm facing is that how will I create a tensor of rank 2 with just one vector. To use cross product, i need at least two vectors. I'm have just started studying tensor, and also, if i create a second order tensor, to get the an antisymmetric tensor, I'll just have to subtract the tensor from its transpose and half it. $\frac{W+W^T}{2}$ where W be the second order tensor. Is that correct?
There are two ways of creating a tensor from a given vector: the first is by using the tensor product:
$$ T=V\otimes V . $$
The componentsof this tensor are $T_{ij}=u_iu_j$. It means it is a symmetric tensor, so if you substract it the symmetric part will be zero.
The another way is more subtle. It needs exterior algebra. Roughly speaking, the exterior algebra of a vector space $V$ is got by computing all tensor products ($V$, $V\otimes V$,$\dots$) and then antisymmetrizating them (for example for $u\otimes v$ one obtains $u\otimes v-v\otimes u \equiv u\wedge v$). Since there are $n$ linear-independent vectors, you can't have more than $n$ antisymmetric products $v_1\wedge \dots \wedge v_n$ (in other case there would be two equal vectors and then the product would be zero). If $\{e_i\}$ is a basis of $V$, then
$$ \Lambda^k(V) \equiv \langle \{ e_{i_1} \wedge \dots \wedge e_{i_k} | i_1,\dots,i_k = 1,\dots, n \}\rangle_{\mathbb R}. $$ ($\Lambda^0(V)=\mathbb K$ and $\Lambda^1(V)=V$ is assumed).
If $V$ is also a metric space, then there exists an isomorphism (called the Hodge star operator) between $\Lambda^k(V)$ and $\Lambda^{n-k}(V)$. For $V=\mathbb R^3$, the Hodge star operator gives an isomorphism between vectors and skew-symmetric tensors of rank 2. In coordinates, this isomorphism reads
$$ T_{ij} = \epsilon_{ijk} v_k. $$
If you compute the matrix of $T$ yo get
$$ T= \begin{pmatrix} 0 & -v_3 & v_2 \\ v_3 & 0 & -v_1 \\ -v_2 & v1 & 0 \end{pmatrix}. $$
This matrix is just the matrix associated to $v$ when you want to compute the cross product $v\times w$:
$$ v\times w = \begin{pmatrix} 0 & -v_3 & v_2 \\ v_3 & 0 & -v_1 \\ -v_2 & v1 & 0 \end{pmatrix} \begin{pmatrix} w_1 \\ w_2\\ w_3 \end{pmatrix} = \cdots. $$
In fact:
$$ (v\times w)_i = \epsilon_{ijk}v_jw_k. $$
Exterior algebra is a powerful thing and it appears in differential geometry for example. If you are interested in these topics you should read about it. Peter Szekeres, Mathematical Physics is (for me) a good reference for start. I hope my answer helps you.
There are aslso related wuestions in this foro.