Benjam:n said:
WannabeNewton - Could you show me the computation of the Riemann curvature tensor for the paraboloid z=x^2+y^2 at the point (1,1,1). I thought I knew what I was doing but I'm not sure I do. Does parallel transport mean project your vector into the tangent space of the infinitesimally close point and scale it up so it still has the same magnitude. Thanks
Are you asking for how to do it, conceptually, or how to actually compute the components of the curvature tensor? The latter is an awful lot of tedious work, in my experience, even though there is nothing conceptually hard about it.
The first thing you'd need to do for your particular example is to compute the components of the metric tensor. It's a 2D surface, so the metric tensor has 4 components, which we can call
g_{x x}, g_{x y}, g_{y x}, g_{y y}
(Because the tensor is symmetric, g_{x y} = g_{y x})
To figure out the components, you take two infinitesimally removed points:
(x, y, z) and (x + \delta x, y + \delta y, z + \delta z)
and you compute the square of the distance between them:
\delta s^2 = \delta x^2 + \delta y^2 + \delta z^2
Since z = x^2 + y^2, we can eliminate \delta z via
\delta z = 2 x \delta x + 2 y \delta y
Now write \delta s^2 in terms of \delta x and \delta y, and then you can just read off the components of the metric tensor, because
\delta s^2 = g_{x x} \delta x^2 + g_{x y} \delta x \delta y + g_{y x} \delta y \delta x + g_{y y} \delta y^2
For your example, I think you end up with:
g_{x x} = 1 + 4x^2
g_{x y} = g_{y x} = 2 x y
g_{y y} = 1 + 4 y^2
Next, you need the inverse of the metric tensor, as well. The components are written using raised indices: g^{x x}, g^{x y}, g^{y x}, g^{y y}.
Next, you take derivatives of the metric tensor components to get the connection coefficients, \Gamma^i_{j k} where i, j, k are each either x or y. These are computed in terms of the metric tensor as follows:
\Gamma^i_{j k} = \frac{1}{2} \sum_{l} g^{i l} [\partial_j g_{lk} + \partial_k g_{lj} - \partial_l g_{jk}]
Finally, you take derivatives of \Gamma^i_{j k} and compute the Riemann tensor components using
R^i_{jkl} = \partial_k \Gamma^i_{jl} - \partial_l \Gamma^i_{jk} + \sum_m \Gamma^i_{km} \Gamma^m_{lj} - \sum_m \Gamma^i_{lm} \Gamma^m_{kj}