Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polimi-cheatsheet
GitHub Repository: polimi-cheatsheet/GAL-cheatsheet
Path: blob/master/teoria/1.determinante.tex
185 views
1
\section{Determinante}
2
$\det: M_{n,n}(K) \rightarrow K$
3
4
\begin{tabularx}{\textwidth}{lX}
5
$n = 1$ & $A = [a] \quad \det{A} = a$ \\
6
$n > 1$ &
7
Ricorsivamente \newline
8
$A_{ik}$ ottenuta da $A$ togliendo riga $i$ e colonna $k$ \newline
9
$M_{ik} = \det A_{ik}$ (detto minore complementare) \newline
10
$C_{ik} = (-1)^{i+k}M_{ik}$ (detto complemento algebrico) \newline
11
$\det A = \sum_{i=1}^{n} a_{1i}C_{1i}$ \\
12
\end{tabularx}
13
14
I th. di Laplace: si può usare una riga o una colonna qualsiasi.
15
16
\begin{tabular}{l}
17
$\det A = \det A^T$ \\
18
Se una riga è di zeri: $\det A = 0$ \\
19
Se si scambiano 2 righe: $\det A' = -\det A$ \\
20
Se due righe parallele sono proporzionali: $\det A = 0$ \\
21
Moltiplicando una riga per $t$: $\det A' = t\det A$ \\
22
$\det tA = t^n\det A$ \\
23
In una matrice triangolare: $\det A = \prod_{i=1}^{n} a_{ii}$ \\
24
T. di Binet: $\det AB = \det A \cdot \det B$
25
\end{tabular}
26
27
Regola di Kronecker: se esiste una sottomatrice quadrata $A'_{n,n}$ con $\det A' \ne 0$ allora $\rk A \ge n$.
28
Se tutte le matrici ottenute per orlatura da $A'$ hanno $\det = 0$ allora $\rk A = n$.
29
30
\begin{tabular}{cc}
31
$A = \begin{bmatrix}
32
a & b \\
33
c & d \\
34
\end{bmatrix}$ &
35
$B = \begin{bmatrix}
36
a & b & c \\
37
d & e & f \\
38
g & h & i \\
39
\end{bmatrix}$ \\
40
$\det A = ad - bc$ &
41
$\det B = aei + bfg + cdh - ceg - afh - bdi$ \\
42
\end{tabular}
43