Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove incorrect dot notation #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lecture03/lecture03.tex
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ \subsubsection{An Application of Matrices}

we have to first $P = (x, y) -> (x,y,1)$ and then $P' = (s_x x, s_y y) -> (s_x x, s_y y, 1)$ so we can then do the matrix multiplication S*P. Though, we have to note that scaling and translating is not the same as translating and scaling. In other words, $T*S*P \neq S*T*P$

Any rotation matrix R belongs to the category of normal matrices, and it satisfies interesting properties. For example, $R \dot R^T = I$ and $det(R) = 1$
Any rotation matrix R belongs to the category of normal matrices, and it satisfies interesting properties. For example, $R R^T = I$ and $det(R) = 1$

The rows of a rotation matrix are always mutually perpendicular (a.k.a. orthogonal) unit vectors; this is what allows for it to satisfy some of the few unique properties mentioned above.

Expand Down