-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCE_Feb11.tex
More file actions
87 lines (67 loc) · 2.84 KB
/
Copy pathCE_Feb11.tex
File metadata and controls
87 lines (67 loc) · 2.84 KB
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
\documentclass[11pt]{article}
\usepackage[margin=0.75in]{geometry}
\usepackage{amsmath, amssymb, graphicx, epsfig, fleqn}
\usepackage{systeme, array}
\pagestyle{empty}
\newcommand{\rank}{\textrm{rank}\,}
\newcommand{\adj}{\textrm{adj}\,}
\begin{document}
\begin{center}
\Large
\rm{Math 221}
\\
\rm{Class Exercises: Feb. 9}
\\
\end{center}
\vspace{0.2in}
\fboxsep0.5cm
\begin{enumerate}
\item {Consider the following linear system
\begin{eqnarray*}
x_1 - 4x_2 &=& 1 \\
3x_1 + hx_2 & = & k
\end{eqnarray*}
\begin{enumerate}
\item{Give all values of $h$ and $k$ such that there is no solution to the system.}
\item{Give all values of $h$ and $k$ such that there is a unique solution to the system.}
\end{enumerate}
}
\item {Is the set of polynomials $\{x^3+1, x^3-x, x^2 + 1, x+1 \}$ a basis for $\mathbb{P}_3$? Explain why or why not.}
\item {Let $U$ and $W$ be subspaces of a vector space V
\begin{enumerate}
\item{Show that $U\cap W$ is also a subspace.
\\(\textit{$U\cap W$ is the set of vectors that are in both $U$ and $W$.})}
\item{Show by giving a counterexample that in general $U\cup W$ is not a subspace. \\(\textit{$U\cup W$ is the set of vectors that are in $U$ or $W$.}) }
\end{enumerate}
}
\item{Is it possible to determine if the matrix with the following structure must have zero determinant?
\begin{displaymath}
A = \left[ \begin{array}{rrrrr}
* & * & * & * & * \\
\** & * & * & * & * \\
0 & 0 & 0 & * & * \\
0 & 0 & 0 & * & * \\
0 & 0 & 0 & * & * \\
\end{array} \right] \quad
\end{displaymath}
(The $*$ entries are not equal, just nonzero.)
}
\item{If $B$ and $C$ are invertible matrices, is it true that $\adj{(BC)} = (\adj{B})(\adj{C})$?}
\item{For what vectors $b$ does there exist a solution to $Ax=b$?
\begin{displaymath}
A = \left[ \begin{array}{rrrr} 1 & 2 & 0 & 1 \\ 0 & 0 & 0 & 0\\ 2 & 4 & 0 & 1 \end{array} \right] \quad \quad b = \left [ \begin{array}{r} b_1 \\ b_2 \\ b_3 \end{array} \right ]
\end{displaymath}
\begin{enumerate}
\item{Find a basis for the null space $\mathcal{N}(A)$.}
\item{Find a basis for the column space $\mathcal{C}(A)$.}
\item{In the case that $b$ is in $\mathcal{C}(A)$ write the general form of the solution to $Ax=b$.}
\item{Find the rank of $A^T$}.
\end{enumerate}
}
\item{If $x$,$y \in \mathbb{R}^3$ and $B = xy^T$, what is the rank of $B$? }
\item{If $A \in \mathbb{M}_{3\times 5}$ and $e_1$, $e_2$ and $e_3$ (the standard basis vectors for $\mathbb{R}^3$) are in $\mathcal{C}(A)$, does $A$ have a right inverse? Does it have a left inverse?}
\item{How many $4\times 4$ permutation matrices are there? Does this set span $\mathbb{M}_{4\times 4}$? Is the set linearly independent?}
\item{Show that an $n\times n$ matrix $A$ is invertible if and only if $A^T$ is invertible. (Can you supply an argument that does not rely on determinants?)}
\end{enumerate}
\vspace{0.1in}
\end{document}