Summary: Having worked through the examples that looked the most difficult, today's notes contain examples that are pick-up work from the easy problems. These are simple-ish tensor index identities, including the divergence of the position vector, the cross product of the position vector, the Laplacian of one over the displacement squared, and the curl of a gradient. $\nabla \cdot \vec{r} = 3$ $= \dfrac{\partial}{\partial x_i} r_i$ Keep in mind that $r_1 = x$, $r_2 = y$, and $r_3 = z$. Using the rules of partial differentiation, when the partial operates on the variable it is with respect to it will return 1, and when it operates on any other variable, it will return 0. The results sum to 3. $\vec{\nabla} \times \vec{r} = 0$ $=\epsilon_{ijk} \partial_j r_k$ $= 0$ For the $\epsilon{ijk}$ to evaluate to a non-zero result, $j$ and $k$ have to not be equal. However, as discussed above, if $J \ne k$, then the partial derivative evaluates to zero. ...