Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polimi-cheatsheet
GitHub Repository: polimi-cheatsheet/GAL-cheatsheet
Path: blob/master/esercizi/1.matrice-inversa.tex
185 views
1
\subsection{Trovare l'inversa di una matrice}
2
\(
3
A|I_2 = \left[
4
\arraycolsep=2.0pt\def\arraystretch{1.0}
5
\begin{array}{cc|cc}
6
1 & 2 & 1 & 0 \\
7
2 & -1 & 0 & 1 \\
8
\end{array}
9
\right]
10
\rightarrow
11
\left[
12
\arraycolsep=2.0pt\def\arraystretch{1.0}
13
\begin{array}{cc|cc}
14
1 & 2 & 1 & 0 \\
15
0 & 5 & 2 & -1 \\
16
\end{array}
17
\right]
18
\rightarrow
19
\left[
20
\arraycolsep=2.0pt\def\arraystretch{1.0}
21
\begin{array}{cc|cc}
22
1 & 2 & 1 & 0 \\
23
0 & 1 & 2/5 & -1/5 \\
24
\end{array}
25
\right]
26
\rightarrow
27
\left[
28
\arraycolsep=2.0pt\def\arraystretch{1.0}
29
\begin{array}{cc|cc}
30
1 & 0 & 1/5 & 2/5 \\
31
0 & 1 & 2/5 & -1/5 \\
32
\end{array}
33
\right]
34
\rightarrow
35
A^{-1} =
36
\frac{1}{5}
37
\left[
38
\arraycolsep=2.0pt\def\arraystretch{1.0}
39
\begin{array}{cc}
40
1 & 2 \\
41
2 & -1 \\
42
\end{array}
43
\right]
44
\)
45
46