Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polimi-cheatsheet
GitHub Repository: polimi-cheatsheet/GAL-cheatsheet
Path: blob/master/teoria/1.matrici.tex
185 views
1
\section{Matrici}
2
$A_{m,n} \cdot B_{n,p} = C_{m,p}$
3
4
$C_{i,j} = \sum_{k=1}^{n} a_{ik} b_{kj}$ ($i$-esima riga di A $\cdot$ $j$-esima colonna di B)
5
6
\begin{tabular}{ll}
7
Non commutativa & $A B \ne B A$ \\
8
Associativa & $A(BC) = (AB)C$ \\
9
Elemento neutro & $AI_n = I_nA = A$ \\
10
Distributiva & $A(B+C) = AB + AC$ \\
11
Trasposta & $A^T = [\alpha_{ij}] \quad \alpha_{ij} = a_{ji}$ \\
12
Inversa & $AA^{-1} = A^{-1}A = I_n\quad (\exists\ \text{sse} \det A \ne 0)$ \\
13
& $(AB)^{-1} = B^{-1}A^{-1}$ \\
14
\end{tabular}
15
16
$[A|I_n] \rightarrow [I_n|A^{-1}]$ riducendo a scala
17
18
$A^{-1} = (\nicefrac{1}{\det{A}})\ \left[b_{ik}\right] \quad b_{ik} = C_{ki}$ (compl. algebrico trasposto)
19
20
$A =
21
\left[\begin{array}{c|c|c|c} \vec{C}_1 & \vec{C}_2 & \cdots & \vec{C}_n \end{array}\right]
22
=
23
\left[\arraycolsep=1.7pt\def\arraystretch{1}\begin{array}{c} \vec{R}_1 \\ \hline \vdots \\ \hline \vec{R}_m \end{array}\right]$
24
25
$\Row A = \Lin(\vec{R}_1, \vec{R}_2, ..., \vec{R}_m) \quad \Col A = \Lin(\vec{C}_1, \vec{C}_2, ..., \vec{C}_n)$
26
27
$\dim \Row A = \dim \Col A = \rk A$
28