-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaula10.tex
379 lines (340 loc) · 9.91 KB
/
aula10.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
\documentclass{beamer}
%
% Choose how your presentation looks.
%
% For more themes, color themes and font themes, see:
% http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html
%
\mode<presentation>
{
\usetheme{default} % or try Darmstadt, Madrid, Warsaw, ...
\usecolortheme{default} % or try albatross, beaver, crane, ...
\usefonttheme{default} % or try serif, structurebold, ...
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[brazil]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\title[Determinantes]{Determinantes de Matrizes}
\author{MAP 2110 - Diurno}
\institute{IME USP}
\date{26 de maio}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{A importância de uma matriz invertível}
$$ A\mathbf{x} = \mathbf{b} \implies x= A^{-1}\mathbf{b} $$
\begin{center}
\begin{tikzpicture}
\draw[gray!50] (-0.5, -0.5) grid (3.5,3.5);
\draw[red!50] (4.5,-0.5) grid (8.5,3.5);
\draw[-latex, blue] (2,2.0) .. controls (3,3) and (5,3) .. node[anchor=south] {$A$} (6,2.0);
\draw[-latex, red] (6,1.0) .. controls (5,0) and (3,0) .. node[anchor=north] {$A^{-1}$} (2,1);
\coordinate (A) at (1.5,1.5);
\draw (A) node {$\mathbb{R}^n$};
\coordinate (B) at (6.5,1.5);
\draw (B) node {$\mathbb{R}^n$};
\end{tikzpicture}
\end{center}
\end{frame}
\begin{frame}{Caso $2\times 2$}
\begin{gather*}
A = \begin{pmatrix}
a_{11} & a_{12} \\
a_{21} & a_{22}
\end{pmatrix} \text{ invertível } \iff \det{A} \neq 0 \\
\det(A) = a_{11}a_{22} - a_{21}a_{12} \\
\text{ de fato, se } \det(A)\neq 0 \implies A^{-1} = \frac{1}{\det(A)}\begin{pmatrix}
a_{22} & -a_{12} \\ -a_{21} & a_{11}
\end{pmatrix}
\end{gather*}
\end{frame}
\begin{frame}{}
Pra mostrar que se $A$ é invertível usamos a eliminação de Gauss, supondo $a_{11}\neq 0$:
$$
\begin{array}{|cc|c|}\hline
a_{11} & a_{12} & \\
a_{21} & a_{22} & \textcolor{red}{a_{11}L_2 - a_{21}L_1} \\ \hline
\end{array}\rightarrow
\begin{array}{|cc|c|}\hline
a_{11} & a_{12} & \\
0 & \det(A) & \textcolor{red}{\leftarrow} \\ \hline
\end{array}
$$
\end{frame}
\begin{frame}{Algumas propriedades do determinante (caso $2\times 2$)}
Estas propriedades queremos estender para a os determinantes de dimensões maiores:
\begin{enumerate}
\item $\det(I)=1$
\item Se uma coluna ou uma linha for zero então $det(A)=0$
\item Se $A$ e $B$ diferem só por troca de linhas ou de colunas, então $\det(A) = -\det(B)$
\item Se a primeira linha de $B$ é um $a$ vezes a primeira linha de $A$ e as segundas linhas são as mesmas, então
$\det(B) = a\det(A)$
\item Se a diferença entre $A$ e $B$ é que a primeira linha de $B$ é a primeira linha de $A$ mais um multiplo da segunda linha de $A$ então $\det(A)=\det(B)$
\end{enumerate}
\end{frame}
\begin{frame}{Comentários}
\end{frame}
\begin{frame}{Determinantes de matrizes $3\times 3$}
Antes de dar uma definição do caso geral, trataremos o caso
$3\times 3$ para nos convencermos de que estamos no caminho certo.
Queremos definir um número para a matriz, que indidique que ela é invertível.
\begin{gather*}
\begin{array}{|ccc|l|}\hline
a_{11} & a_{12} & a_{13} & \\
a_{21} & a_{22} & a_{23} & \textcolor{red}{a_{11}L_2 - a_{21}L1}\\
a_{31} & a_{32} & a_{33} & \textcolor{red}{a_{11}L_3 - a_{31}L1}\\ \hline
\end{array} \rightarrow \\
\begin{array}{|ccc|l|}\hline
a_{11} & a_{12} & a_{13} & \\
0 & \textcolor{blue}{a_{11}a_{22}-a_{21}a_{12}} & \textcolor{blue}{a_{11}a_{23}-a_{21}a_{13}} & \\
0 & \textcolor{blue}{a_{11}a_{32} -a_{31}a{12}} & \textcolor{blue}{a_{11}a_{33}-a_{31}a_{13}} & \\ \hline
\end{array}
\end{gather*}
\end{frame}
\begin{frame}
\begin{align*}
&\textcolor{blue}{(a_{11}a_{22}-a_{21}a_{12})}\textcolor{blue}{(a_{11}a_{33}-a_{31}a_{13})} \\
- &\textcolor{red}{(a_{11}a_{23}-a_{21}a_{13})}\textcolor{red}{(a_{11}a_{32} -a_{31}a_{12})}
\end{align*}
Distribuindo a multiplicação:
\begin{align*}
&\textcolor{blue}{a_{11}a_{22}a_{11}a_{33}- a_{11}a_{22}a_{31}a_{13} -a_{21}a_{12}a_{11}a_{33}+ \fbox{$a_{21}a_{12}a_{31}a_{13}$}} \\
- &(\textcolor{red}{a_{11}a_{23}a_{11}a_{32} -a_{21}a_{13} a_{11}a_{32} -a_{11}a_{23}a_{31}a_{12} +\fbox{$a_{21}a_{13}a_{31}a_{12}$}}) \\
= & a_{11}(\textcolor{blue}{ a_{22}a_{11}a_{33} -
a_{22}a_{31}a_{13} -a_{21}a_{12}a_{33}}\textcolor{red}{-
a_{23}a_{11}a_{32}+a_{21}a_{13}a_{32}+ \cdots }\\
& \textcolor{red}{+ a_{23}a_{31}a_{12}}) \\
= &
a_{11}\left( a_{11}
\begin{vmatrix}
a_{22} & a_{23} \\
a_{32} & a_{33}
\end{vmatrix} -
a_{21}
\begin{vmatrix}
a_{12} & a_{13} \\
a_{32} & a_{33}
\end{vmatrix} + a_{31}
\begin{vmatrix}
a_{12} & a_{13}\\
a_{22} & a_{23}
\end{vmatrix} \right)
\end{align*}
\end{frame}
\begin{frame}
Para matrizes de dimensão $3\times 3$ podemos definir então:
$$ \det(A) = \left( a_{11}
\begin{vmatrix}
a_{22} & a_{23} \\
a_{32} & a_{33}
\end{vmatrix} -
a_{21}
\begin{vmatrix}
a_{12} & a_{13} \\
a_{32} & a_{33}
\end{vmatrix} + a_{31}
\begin{vmatrix}
a_{12} & a_{13}\\
a_{22} & a_{23}
\end{vmatrix} \right)$$
Se $A =\begin{pmatrix}
1 & 0 & 2 \\ 2 & 1 & -1 \\ 0 & -2 & 4
\end{pmatrix}$ então
$$ \det(A)=\left( 1
\begin{vmatrix}
1 & -1 \\
-2 & 4
\end{vmatrix} -
2
\begin{vmatrix}
0 & 2 \\
-2 & 4
\end{vmatrix} + 0
\begin{vmatrix}
0 & 2\\
1 & -1
\end{vmatrix} \right)=-6$$
\end{frame}
\begin{frame}{exemplos}
Se $A =\begin{pmatrix}
1 & 1 & 2 \\ 2 & 1 & -1 \\ 1& 1 & 2
\end{pmatrix}$
$$ \det(A)= \left( 1
\begin{vmatrix}
1 & -1 \\
1 & 2
\end{vmatrix} -
2
\begin{vmatrix}
1 & 2 \\
1 & 2
\end{vmatrix} + 1
\begin{vmatrix}
1 & 2\\
1 & -1
\end{vmatrix} \right)=0$$
Se $A =\begin{pmatrix}
0 & -2 & 4 \\ 2 & 1 & -1 \\1 & 0 & 2
\end{pmatrix}$ então
$$ \det(A)=\left( 0
\begin{vmatrix}
1 & -1 \\
0& 2
\end{vmatrix} -
2
\begin{vmatrix}
-2 & 4 \\ 0 & 2
\end{vmatrix} + 1
\begin{vmatrix}
-2 & 4\\
1 & -1
\end{vmatrix} \right)=6$$
\end{frame}
\begin{frame}{A definição geral}
Se $A$ é uma matriz quadrada de dimensão $n$, então, por
definição, $A_{ij}$ é a matriz quadrada de dimensão $n-1$
obtida de $A$ eliminando-se a $i$-ésima linha e a
$j$-ésima coluna.
Se tivermos definido o determinante de matrizes
de dimensão $n-1$ vamos definir o cofator da posição
$ij$ da matriz $A$ como o número
$$ c_{ij}(A)=(-1)^{i+j}\det(A_{ij}) $$
Iremos definir
$$ \det{A} = \sum_{i=1}^n a_{i1}c_{i1}(A)$$
\end{frame}
\begin{frame}{Exemplos}
Vamos ver a matriz $ A =\begin{pmatrix} 0 & -2 & 4 \\ 2 & 1 & -1 \\1 & 0 & 2 \end{pmatrix} $ .
\begin{gather*}
A_{11} = \begin{bmatrix}
1 & -1 \\ 0 & 2
\end{bmatrix}\text{ }A_{12}=\begin{bmatrix}
2 & -1 \\ 1 & 2
\end{bmatrix}\text{ }A_{13}=\begin{bmatrix}
2 & 1 \\ 1 & 0
\end{bmatrix} \\
A_{21} = \begin{bmatrix}
-2 & 4 \\ 0 & 2
\end{bmatrix}\text{ }A_{22}=\begin{bmatrix}
0 & 4 \\ 1 & 2
\end{bmatrix}\text{ }A_{23}=\begin{bmatrix}
0 & -2 \\ 1 & 0
\end{bmatrix} \\
A_{31} = \begin{bmatrix}
-2 & 4 \\ 1 & -1
\end{bmatrix}\text{ }A_{32}=\begin{bmatrix}
0 & 4 \\ 2 & {1}
\end{bmatrix}\text{ }A_{33}=\begin{bmatrix}
0 & -2 \\ 2 & 1
\end{bmatrix}
\end{gather*}
\end{frame}
\begin{frame}{Exemplos}
Vamos ver a matriz $ A =\begin{pmatrix} 0 & -2 & 4 \\ 2 & 1 & -1 \\1 & 0 & 2 \end{pmatrix} $ .
\begin{gather*}
A_{11} = \begin{bmatrix}
1 & -1 \\ 0 & 2
\end{bmatrix}\text{ }A_{12}=\begin{bmatrix}
2 & -1 \\ 1 & 2
\end{bmatrix}\text{ }A_{13}=\begin{bmatrix}
2 & 1 \\ 1 & 0
\end{bmatrix} \\
A_{21} = \begin{bmatrix}
-2 & 4 \\ 0 & 2
\end{bmatrix}\text{ }A_{22}=\begin{bmatrix}
0 & 4 \\ 1 & 2
\end{bmatrix}\text{ }A_{23}=\begin{bmatrix}
0 & -2 \\ 1 & 0
\end{bmatrix} \\
A_{31} = \begin{bmatrix}
-2 & 4 \\ 1 & -1
\end{bmatrix}\text{ }A_{32}=\begin{bmatrix}
0 & 4 \\ 2 & \textcolor{blue}{-1}
\end{bmatrix}\text{ }A_{33}=\begin{bmatrix}
0 & -2 \\ 2 & 1
\end{bmatrix}
\end{gather*}
\end{frame}
\begin{frame}{Matriz de cofatores}
\begin{gather*}
C=
\begin{bmatrix}
\textcolor{blue}{ +
\begin{vmatrix}
1 & -1 \\ 0 & 2
\end{vmatrix}}&
\textcolor{red}{-\begin{vmatrix}
2 & -1 \\ 1 & 2
\end{vmatrix}}&
\textcolor{blue}{+\begin{vmatrix}
2 & 1 \\ 1 & 0
\end{vmatrix}} \\
\textcolor{red}{-\begin{vmatrix}
-2 & 4 \\ 0 & 2
\end{vmatrix}} &
\textcolor{blue}{+\begin{vmatrix}
0 & 4 \\ 1 & 2
\end{vmatrix}} &
\textcolor{red}{-\begin{vmatrix}
0 & -2 \\ 1 & 0
\end{vmatrix}} \\
\textcolor{blue}{+\begin{vmatrix}
-2 & 4 \\ 1 & -1
\end{vmatrix}}&
\textcolor{red}{-\begin{vmatrix}
0 & 4 \\ 2 & {-1}
\end{vmatrix}}&
\textcolor{blue}{+\begin{vmatrix}
0 & -2 \\ 2 & 1
\end{vmatrix}}
\end{bmatrix}= \begin{bmatrix}
2 & -5 & -1 \\ 4 & -4 & -2 \\ -2 & 8 & 4
\end{bmatrix}
\end{gather*}
\end{frame}
\begin{frame}
$$
\begin{bmatrix}
0 & 2 & 1 \\ -2 & 1 & 0 \\ 4 & -1 & 2
\end{bmatrix}
\begin{bmatrix}
2 & -5 & -1 \\ 4 & -4 & -2 \\ -2 & 8 & 4
\end{bmatrix}= \begin{bmatrix}
6 & 0 & 0 \\ 0 & 6 & 0 \\ 0 & 0 & 6
\end{bmatrix}
$$
\end{frame}
\begin{frame}{Verdadeiro ou Falso}
\begin{block}{1}
$\begin{pmatrix}
\cos(\theta) & -\sin(\theta) \\
\sin(\theta) & \cos{\theta}
\end{pmatrix}$ é invertível para todo $\theta \in \mathbb{R}.$
\end{block}
\end{frame}
\begin{frame}{Verdadeiro ou Falso}
\begin{block}{2}
Se $T : \mathbb{R}^3 \to \mathbb{R}^3$ é linear e injetora,
e se $A$ é sua matriz associada, então $Ax=b$ têm, no máximo,
uma única solução.
\end{block}
\end{frame}
\begin{frame}{Verdadeiro ou Falso}
\begin{block}{3}
Uma aplicação linear $T:\mathbb{R}^3 \to \mathbb{R}^2$ não pode ser sobrejetora.
\end{block}
\end{frame}
\begin{frame}{Verdadeiro ou Falso}
\begin{block}{4}
A aplicação $T(x,y) = (x -2y, \sqrt{2}x)$ é linear
\end{block}
\end{frame}
\begin{frame}{Verdadeiro ou Falso}
\begin{block}{5}
A aplicação $T(x,y) = (2xy, 3x+y)$ é linear
\end{block}
\end{frame}
\end{document}