Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

kevinlui's site

7239 views
1
\documentclass{exam}
2
\usepackage{hyperref}
3
\usepackage{amsmath}
4
\usepackage{amsfonts}
5
6
\begin{document}
7
8
\begin{center}
9
Worksheet 7 - 11/17
10
\end{center}
11
12
\begin{questions}
13
\question
14
Is the union of two subspaces always a subspace? If not, give a counterexample.
15
\question
16
Is the intersection of two subspaces always a subspace? If not, give a
17
counterexample.
18
\question
19
Let's compute a determinant using guassian elimination. Let
20
\[
21
A=
22
\begin{bmatrix}
23
2 & -1 & 2 \\
24
2 & -1 & 1 \\
25
0 & 3 & 1
26
\end{bmatrix}
27
\]
28
We will determine what row operations do to the determinant of a matrix.
29
\begin{parts}
30
\part
31
What is $\det(A)$?
32
\part
33
What is the effect of swapping two rows of a matrix on the determinant?
34
Try swapping the first two rows of $A$ and computing the determinant of
35
the resulting matrix.
36
\part
37
What is the effect of scale multiplying a row of a matrix on the
38
determinant? Try scale multiplying the 2nd row of $A$ by 2 and
39
computing the determinant of the resulting matrix.
40
\part
41
What is the effect of adding a multiple a row to another row on the
42
determinant? Try adding twice the first row to the second and computing
43
the determinant of the resulting matrix.
44
\part
45
Use these ideas to compute the determinant of $A$ using guassian
46
elimination. If you are stuck, see the following links:
47
\begin{itemize}
48
\item
49
\url{https://en.wikipedia.org/wiki/Gaussian_elimination#Computing_determinants}
50
\item
51
\url{https://math.stackexchange.com/questions/714974/determinant-by-applying-gaussian-elimination}
52
\end{itemize}
53
\end{parts}
54
\end{questions}
55
56
\end{document}
57
58