Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
polimi-cheatsheet
GitHub Repository: polimi-cheatsheet/GAL-cheatsheet
Path: blob/master/esercizi/1.risoluzione-sistemi.tex
185 views
1
\subsection{Risoluzione di sistemi}
2
\begin{tabular}{ll}
3
\(
4
\begin{cases}
5
2x+4y+4z=4 \\[-0.3em]
6
x-z=1 \\[-0.3em]
7
-x+3y+4z=2 \\
8
\end{cases}
9
\)
10
&
11
\(
12
A|\vec{b} = \left[
13
\arraycolsep=2.5pt\def\arraystretch{1.2}
14
\begin{array}{@{}ccc|c}
15
2 & 4 & 4 & 4 \\[-0.3em]
16
1 & 0 & -1 & 1 \\[-0.3em]
17
-1 & 3 & 4 & 2 \\
18
\end{array}
19
\right]
20
\)
21
\end{tabular}
22
23
Riducendo $A|\vec{b}$ a scala
24
25
\(
26
\left[
27
\arraycolsep=2.5pt\def\arraystretch{1.2}
28
\begin{array}{@{}ccc|c}
29
2 & 4 & 4 & 4 \\[-0.3em]
30
1 & 0 & -1 & 1 \\[-0.3em]
31
-1 & 3 & 4 & 2 \\
32
\end{array}
33
\right]
34
\rightarrow
35
\left[
36
\arraycolsep=2.5pt\def\arraystretch{1.2}
37
\begin{array}{@{}ccc|c}
38
1 & 0 & -1 & 1 \\[-0.3em]
39
1 & 2 & 2 & 2 \\[-0.3em]
40
-1 & 3 & 4 & 2 \\
41
\end{array}
42
\right]
43
\rightarrow
44
\left[
45
\arraycolsep=2.5pt\def\arraystretch{1.2}
46
\begin{array}{@{}ccc|c}
47
1 & 0 & -1 & 1 \\[-0.3em]
48
0 & 2 & 3 & 1 \\[-0.3em]
49
0 & 3 & 3 & 3 \\
50
\end{array}
51
\right]
52
\rightarrow
53
\left[
54
\arraycolsep=2.5pt\def\arraystretch{1.2}
55
\begin{array}{@{}ccc|c}
56
1 & 0 & -1 & 1 \\[-0.3em]
57
0 & 2 & 3 & 1 \\[-0.3em]
58
0 & 1 & 1 & 1 \\
59
\end{array}
60
\right]
61
\rightarrow
62
\left[
63
\arraycolsep=2.5pt\def\arraystretch{1.2}
64
\begin{array}{@{}ccc|c}
65
\circled{1} & 0 & -1 & 1 \\[-0.3em]
66
0 & \circled{2} & 3 & 1 \\[-0.3em]
67
0 & 0 & \circled{1} & -1 \\
68
\end{array}
69
\right]
70
\rightarrow
71
\begin{cases}
72
x - z = 1 \\[-0.3em]
73
2y + 3z = 1 \\[-0.3em]
74
z = -1 \\
75
\end{cases}
76
\)
77