Skip to content

Commit 3b8d2c5

Browse files
committed
Added fast 2x2 matrix inverse
1 parent 402e757 commit 3b8d2c5

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

elec221fs.tex

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,17 @@ \subsection{Interconnection of LTI Systems}
372372
\end{tabular}
373373

374374
\subsection{Misc. More}
375-
375+
Gaussian Integral:
376376
\[\int_{-\infty}^{\infty} e^{-a(x+b)^2} dx = \sqrt{\frac{\pi}{a}}\]
377+
Fast inverse of 2x2 matrix:
378+
\[\begin{bmatrix}
379+
a & b\\
380+
c & d
381+
\end{bmatrix} ^{-1} = \frac{1}{ad-bc}
382+
\begin{bmatrix}
383+
d & -b\\-c & a
384+
\end{bmatrix}
385+
\]
377386

378387

379388
\end{minipage}
@@ -434,7 +443,7 @@ \subsection{Misc. More}
434443

435444
\section{Second Order Trial Particular Solutions}
436445
\includegraphics[width=0.5\textwidth]{trialparticular}
437-
446+
438447

439448
\end{multicols*}
440449

0 commit comments

Comments
 (0)