Skip to content

Commit ba56619

Browse files
committed
system-design/problem.md: added missing LaTex {equation} blocks
1 parent 693219a commit ba56619

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

system-design/problem.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ $$
109109
* The rotated vector around the X-axis with Z-convention expressed in direction cosines; could be further rewritten using matrix algebra into a **matrix product of a rotation matrix and the vector column matrix**; where $R_x$ is the rotation matrix around X-Axis with Z-convetion:
110110

111111
$$
112+
\begin{equation*}
112113
\vec{V}^{'} = R_x(\pm \hat{\Phi_R}) \times \vec{V} \\
113114
= \begin{pmatrix}
114115
1 & 0 & 0 \\
@@ -140,12 +141,14 @@ $$
140141
\|\vec{V}_{yz}\| \\
141142
\|\vec{V}_{yz}\|
142143
\end{pmatrix}^\top
144+
\end{equation*}
143145
$$
144146

145147
* Therefore, the rest of rotation operations could be expressed using rotation matrices as follows:
146148
* Rotation around Y-axis (**X-convention**):
147149

148150
$$
151+
\begin{equation*}
149152
\vec{V}^{'} = R_y(\pm \hat{\Phi_R}) \times \vec{V} \\
150153
=
151154
\begin{pmatrix}
@@ -172,11 +175,13 @@ $$
172175
\|\vec{V}\| \\
173176
\|\vec{V}_{xz}\|
174177
\end{pmatrix}^\top
178+
\end{equation*}
175179
$$
176180

177181
* Rotation around Z-axis (**X-Convention**) using direction cosines:
178182

179183
$$
184+
\begin{equation*}
180185
\vec{V}^{'} = R_z(\pm \hat{\Phi_R}) \times \vec{V} \\
181186
=
182187
\begin{pmatrix}
@@ -203,6 +208,7 @@ $$
203208
\|\vec{V}_{xy}\| \\
204209
\|\vec{V}\|
205210
\end{pmatrix}^\top
211+
\end{equation*}
206212
$$
207213

208214
* A set of rotations could be achieved by multiplying the rotation matrices to get the final rotation matrix, and then multiply it with the vector coordinates.

0 commit comments

Comments
 (0)