[Math] Contravariant Metric Tensor

tensors

Okay, so I have exactly ZERO experience with tensors and this project I am working on involves tensors. I have looked through a bunch of online resources, and attempted to look for textbooks (not available to me) and I am getting really confused. The extent to which I have picked up is that I understand how to find the metric tensor for the spherical coordinate transformation. So I was hoping someone could run me through the following example or give some advice on how to approach this.

Curvilinear coordinate system:
$v=x$
$u = y-a(x)$ $a(x)$ arbitrary
$w=z$

I am looking for the contravariant metric tensor for this (and possibly what the interpretation is). I have the result;
\begin{pmatrix}1 & -a'(x) & 0 \\
-a'(x) & 1+a'(x) & 0 \\
0 & 0 & 1\end{pmatrix}

Thanks

Best Answer

This is a process that can feel very arbitrary, but using geometric principles, you should be able to develop an intuition about these problems.

Imagine the coordinate functions $v, u, w$ as scalar fields on the 3d space, assigning their respective coordinates to a given position. For all these coordinates, there are associated gradients: $\nabla v$ for $v$, and so on. These tell us the direction of greatest increase for each coordinate.

What we do then is use these gradient vectors as a basis for our space: a set of vectors $g^v, g^u, g^w$ such that $g^v = \nabla v$ and so on. The contravariant metric tensor just measures the dot products of these vectors, so we can have an idea of how to measure lengths with them.

For instance, take $u = y - a(x)$ as you gave us. Taking the gradient of $u$, we get

$$g^u = \nabla u = (g^x \partial_x + g^y \partial_y + g^z \partial_z) u(x,y,z) = g^y -a'(x) g^x$$

where $g^x, g^y, g^z$ are a Cartesian basis (thus, they are orthonormal), so it's easy to take the dot product:

$$g^{uu} = g^u \cdot g^u = [g^y - a'(x) g^x] \cdot [g^y - a'(x) g^x] = 1 + [a'(x)]^2$$

as you found. So if we have two vectors expressed using this basis of gradients, we can find the overall dot product using the contravariant metric, rather than having to go back and figure out the relationships between those gradients all over again.