PDA

View Full Version : Kronecker Delta use


intervoxel
Feb12-09, 12:25 PM
Please, give me an example of this identity using a 3 dimensional matrix R (maybe representing a rotation). My difficulty lies in the indices manipulation.


R_{ii'}R{jj'}\delta_{i'j'} = \delta_{ij}


I know it is obvious, but I'm really stuck in my self-teaching. Thank you.

CompuChip
Feb12-09, 01:19 PM
Are you summing over repeated indices, e.g.
R_{ii'} R_{jj'} \delta_{i'j'} \text{ means } \sum_{i', j'} R_{ii'} R_{jj'} \delta_{i'j'}?
By the definition of matrix multiplication:
R_{ij} R_{kl} \delta_{jl}= R_{ij} R_{kj} = R_{ij} R_{jk}^T = R_{ij} R_{jk}^T = (R R^T)_{ik}
This is important, you should convince yourself of each step. If you must, write it out in matrices and compare each step to the index notation, seeing how operations like multiplying two matrices or taking a transpose translate into operations on the indices.

If this is equal to \delta_{ik} that means that R R^T is the identity matrix. An example of such a matrix is, such as
R = \begin{pmatrix} \cos\theta & \sin\theta & 0 \\ -\sin\theta & \cos\theta & 0 \\ 0 & 0 & 1 \end{pmatrix}

If you want you can explicitly write out all the 9 components of the left hand side (let i and j run and sum over k), and show that you are really just multiplying R by R^T. Or if you are not sadistic, take a 2x2 matrix :)

Sorry if I am too general, but I think it is best if you work through the manipulations yourself.

intervoxel
Feb13-09, 04:18 AM
Thank you for the answer. That's exactly what I expected. :)