-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquest1.tex
128 lines (97 loc) · 3.05 KB
/
quest1.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
\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[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\title[]{Falso ou Verdadeiro I}
\author{MAP 2110 - Diurno}
\institute{IME USP}
\date{14 de abril}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
% Uncomment these lines for an automatically generated outline.
%\begin{frame}{Outline}
% \tableofcontents
%\end{frame}
\begin{frame}{}
Seja $X$ um de $V_n$ então $X\cdot X =0$ se, e somente se $X=0$.
\textcolor{red}{ Verdadeiro. Pois $X\cdot X= \sum_{i=1}^n x_i^2$ }
\end{frame}
\begin{frame}{}
$$X\cdot Y \leq \|X\|\|Y\|$$
\textcolor{red}{Verdadeiro. É o teorema de Cauchy-Schwarz}
\end{frame}
\begin{frame}
$\{ (1,2), (1,0), (0,1)\}$ é um conjunto linearmente independente.
\textcolor{red}{
Falso pois $(1,2) = (1,0) + 2(0,1)$
}
\end{frame}
\begin{frame}{}
$(0-,1, 1)$ pertence ao espaço gerado pelos vetores ${(1,2,0), (0,-1, 0)}$
\textcolor{red}{
Falso, pois o espaço gerado pelos vetores tem zero na última coordenada.
}
\end{frame}
\begin{frame}
Os vetores $\mathbf{e}_1 = 2\mathbf{i}+\mathbf{j}$ $\mathbf{e_2}= -\mathbf{j}$ e
$\mathbf{e_3}=\mathbf{j}+\mathbf{k}$ formam uma base de $V_3$
\textcolor{red}{
Verdadeiro. Pois são três vetores LI.
\begin{gather*}
a\mathbf{e}_1 + b\mathbf{e}_2 +c\mathbf{e}_3 = 0 \implies \\
2a\mathbf{i} + (a-b+c)\mathbf{j} + c \mathbf{k} = 0 \implies \\
a=b=c=0
\end{gather*}
}
\end{frame}
\begin{frame}
As retas $r$ e $s$
com $r$ definida pela equação vetorial $r: (1,0,1) + \alpha (1,2,-1)$ é paralela
à reta $s$ definida pela equação paramétrica
\begin{gather*}
x= 2 + 2\lambda \\
y= -1 + 4\lambda \\
z= 1 - 2\lambda
\end{gather*}
\textcolor{red}{Verdadeiro, pois $(1,2,-1)$ é o vetor de direção das duas retas.}
\end{frame}
\begin{frame}{}
Se $X$ é um vetor de $V_3$ então $X\times X = 0$ se, e somente se $X=0$
\textcolor{red}{Falso, $X\times X=0 \forall X\in V_3.$}
\end{frame}
\begin{frame}{}
Se os vetores $A$ e $B$ de $V_3$ são LI então $\{A,B,A\times B\}$ é uma
base de $V_3$
\textcolor{red}{Verdadeiro.
\begin{gather*}
aA +bB + c(A\times B)=0 \\
aA\cdot(A\times B) +bB\cdot(A\times B) + c(A\times B)\cdot(A\times B)=0\\
c\|A\times b\|^2 = 0 \implies c=0\\
aA+bB=0 \implies a=b=0
\end{gather*}}
\end{frame}
\begin{frame}
A equação $3x-y+ 2z =4$ é a equação de um plano que passa pela origem de $V_3$
\textcolor{red}{Falso}
\end{frame}
\begin{frame}
O vetor $(3,-1,2)$ é ortogonal ao plano de equação $3x-y+ 2z =4$
\textcolor{red}{Verdadeiro.}
\end{frame}
\end{document}