Summary : This one took awhile. I got busy in the lab These notes start with rotation matrix properties and the transpose products of matrices. special relativity via tensors also begins. Specifically, the Lorentz transformation tensor components are reviewed and the number of independent parameters are counted. Did a few concrete checks that a matrix times its transpose is symmetric. Sure enough, it is. $\begin{pmatrix} a & b \\ c & d \\ \end{pmatrix}\begin{pmatrix} a & c \\ b & d \\ \end{pmatrix} = \begin{pmatrix} a^2 + b^2 & ca + bd \\ ca+bd & c^2+d^2 \\ \end{pmatrix}$ $\begin{pmatrix}a & b & c\\ d & e & f \\ g & h & i \\ \end{pmatrix}\begin{pmatrix} a & d & g\\ b & e & h \\ c & f & i \\ \end{pmatrix} = \begin{pmatrix} a^2 + b^2 + c^2 & ad + be + cf & ag + bh + ci\\ ad + be + cf & d^2 + e^2 + f^2 & gd + eh + fi \\ ga + hb + ic ...