Skip to content

Commit

Permalink
Added fast 2x2 matrix inverse
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoblin committed Apr 18, 2020
1 parent 402e757 commit 3b8d2c5
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions elec221fs.tex
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,17 @@ \subsection{Interconnection of LTI Systems}
\end{tabular}

\subsection{Misc. More}

Gaussian Integral:
\[\int_{-\infty}^{\infty} e^{-a(x+b)^2} dx = \sqrt{\frac{\pi}{a}}\]
Fast inverse of 2x2 matrix:
\[\begin{bmatrix}
a & b\\
c & d
\end{bmatrix} ^{-1} = \frac{1}{ad-bc}
\begin{bmatrix}
d & -b\\-c & a
\end{bmatrix}
\]


\end{minipage}
Expand Down Expand Up @@ -434,7 +443,7 @@ \subsection{Misc. More}

\section{Second Order Trial Particular Solutions}
\includegraphics[width=0.5\textwidth]{trialparticular}


\end{multicols*}

Expand Down

0 comments on commit 3b8d2c5

Please sign in to comment.