Skip to content

Commit 787f1cb

Browse files
Update EV6 class activities to clarify spanning R^n and spanning subspace (#933)
* Update EV6 class activities to clarify spanning R^n and spanning subspace * Apply suggestion from @StevenClontz * tweaks, rewordings, remove stale comments * add example of subspace dimension * Apply suggestion from @StevenClontz * combine fact+definition for dimension * Apply suggestion from @jkostiuk Co-authored-by: jkostiuk <kostiuk.jordan@gmail.com> --------- Co-authored-by: jkostiuk <kostiuk.jordan@gmail.com>
1 parent 3694dab commit 787f1cb

1 file changed

Lines changed: 73 additions & 104 deletions

File tree

  • source/linear-algebra/source/02-EV

source/linear-algebra/source/02-EV/06.ptx

Lines changed: 73 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,20 @@
4343
</subsection>
4444

4545
<subsection><title>Class Activities</title>
46+
4647
<observation>
4748
<p>
48-
Recall from section <xref ref="EV3"></xref> that a <term>subspace</term> of a vector space is
49-
the result of spanning a set of vectors from that vector space.
49+
In <xref ref="EV3-planar-subspace-vs-r2" /> we saw an example of
50+
two linearly independent vectors spanning a planar subspace of <m>\IR^3</m>.
5051
</p>
5152
<p>
52-
Recall also that a linearly dependent set contains <q>redundant</q> vectors. For example,
53-
only two of the three vectors in <xref ref="EV4-figure-linearly-dependent"/> are needed to span
54-
the planar subspace.
53+
Because these independent vectors fail to span <m>\IR^3</m>, they are not
54+
a basis for <m>\IR^3</m>. However, they still span a <em>subspace</em> of
55+
<m>\IR^3</m>...
5556
</p>
5657
</observation>
5758

58-
<activity estimated-time='10'>
59+
<activity>
5960
<introduction>
6061
<p>
6162
Consider the subspace of <m>\IR^4</m> given by <m>W=\vspan\left\{
@@ -68,33 +69,61 @@ the planar subspace.
6869
</p>
6970
</introduction>
7071
<task>
71-
<p>
72-
Mark the column of <m>\RREF\left[\begin{array}{cccc}
73-
2&amp;2&amp;2&amp;1\\
74-
3&amp;0&amp;-3&amp;5\\
75-
0&amp;1&amp;2&amp;-1\\
76-
1&amp;-1&amp;-3&amp;0
77-
\end{array}\right]</m> that shows that <m>W</m>'s spanning set
78-
is linearly dependent.
79-
</p>
72+
<statement>
73+
<p>
74+
Which feature of <md>\RREF\left[\begin{array}{cccc}
75+
2&amp;2&amp;2&amp;1\\
76+
3&amp;0&amp;-3&amp;5\\
77+
0&amp;1&amp;2&amp;-1\\
78+
1&amp;-1&amp;-3&amp;0
79+
\end{array}\right]=
80+
\left[\begin{array}{cccc}
81+
1&amp;0&amp;-1&amp;0\\
82+
0&amp;1&amp; 2&amp;0\\
83+
0&amp;0&amp; 0&amp;1\\
84+
0&amp;0&amp; 0&amp;0
85+
\end{array}\right]</md> shows that <m>W</m>'s spanning set
86+
is linearly dependent?
87+
<ol marker="A." cols="2">
88+
<li>The third column.</li>
89+
<li>The fourth column.</li>
90+
<li>The third row.</li>
91+
<li>The fourth row.</li>
92+
</ol>
93+
</p>
94+
</statement>
95+
<answer>
96+
<p>A.</p>
97+
<p>
98+
The third columns lacks a pivot, introducing a free variable that
99+
prevents uniqueness of linear combinations.
100+
</p>
101+
</answer>
80102
</task>
81103
<task>
82-
<p>
83-
What would be the result of removing the vector that gave us this column?
84-
<ol marker="A.">
85-
<li>The set still spans <m>W</m>, and remains linearly dependent.</li>
86-
<li>The set still spans <m>W</m>, but is now also linearly independent.</li>
87-
<li>The set no longer spans <m>W</m>, and remains linearly dependent.</li>
88-
<li>The set no longer spans <m>W</m>, but is now linearly independent.</li>
89-
</ol>
90-
</p>
91-
</task>
104+
<statement>
105+
<p>
106+
If we removed the vector that causes this issue,
107+
what could we say about that set of three vectors?
108+
<ol marker="A.">
109+
<li>The set spans the vector space <m>\IR^4</m>, but remains linearly dependent.</li>
110+
<li>The set spans the subspace <m>W</m> of <m>\IR^4</m>, but remains linearly dependent.</li>
111+
<li>The set spans the subspace <m>W</m> of <m>\IR^4</m>, and is now linearly independent.</li>
112+
<li>The set no longer spans the subspace <m>W</m> of <m>\IR^4</m>, but is now linearly independent.</li>
113+
</ol>
114+
</p>
115+
</statement>
116+
<answer>
117+
<p>C.</p>
118+
<p>
119+
Because the removed vector was already a linear combination of the others,
120+
we still span <m>W</m>. Now that all vectors yield pivot columns, the set
121+
is now independent.
122+
</p>
123+
</answer>
124+
</task>
92125
</activity>
93126

94-
<sage language="octave">
95-
<input>rref([2,2,2,1; 3,0,-3,5; 0,1,2,-1; 1,-1,-3,0])</input>
96-
</sage>
97-
98127
<definition>
99128
<statement>
100129
<p>
@@ -145,55 +174,6 @@ What would be the result of removing the vector that gave us this column?
145174
</p>
146175
</observation>
147176

148-
<!-- <activity estimated-time='10'>
149-
<statement>
150-
<p>
151-
Let <m>W</m> be the subspace of <m>\IR^4</m> given by
152-
<me>W = \vspan \left\{
153-
\left[\begin{array}{c} 1 \\ 3 \\ 1 \\ -1 \end{array}\right],
154-
\left[\begin{array}{c} 2 \\ -1 \\ 1 \\ 2 \end{array}\right],
155-
\left[\begin{array}{c} 4 \\ 5 \\ 3 \\ 0 \end{array}\right],
156-
\left[\begin{array}{c} 3 \\ 2 \\ 2 \\ 1 \end{array}\right]
157-
\right\} </me>.
158-
Find a basis for <m>W</m>.
159-
</p>
160-
</statement>
161-
</activity>
162-
163-
<sage language="octave">
164-
</sage> -->
165-
166-
<!-- <activity estimated-time='10'>
167-
<statement>
168-
<p>
169-
Let <m>W</m> be the subspace of <m>\P_3</m> given by
170-
<me>W = \vspan \left\{x^3+3x^2+x-1, 2x^3-x^2+x+2, 4x^3+5x^2+3x, 3x^3+2x^2+2x+1 \right\} </me>
171-
Find a basis for <m>W</m>.
172-
</p>
173-
</statement>
174-
</activity> -->
175-
176-
<!-- <sage language="octave">
177-
</sage> -->
178-
179-
<!-- <activity estimated-time='10'>
180-
<statement>
181-
<p>
182-
Let <m>W</m> be the subspace of <m>M_{2,2}</m> given by
183-
<me>W = \vspan \left\{
184-
\left[\begin{array}{cc} 1 &amp; 3 \\ 1 &amp; -1 \end{array}\right],
185-
\left[\begin{array}{cc} 2 &amp; -1 \\ 1 &amp; 2 \end{array}\right],
186-
\left[\begin{array}{cc} 4 &amp; 5 \\ 3 &amp; 0 \end{array}\right],
187-
\left[\begin{array}{cc} 3 &amp; 2 \\ 2 &amp; 1 \end{array}\right]
188-
\right\}. </me>
189-
Find a basis for <m>W</m>.
190-
</p>
191-
</statement>
192-
</activity>
193-
194-
<sage language="octave">
195-
</sage> -->
196-
197177
<activity estimated-time='10'>
198178
<task>
199179
<p>
@@ -248,19 +228,22 @@ T=\left\{
248228
</me>.
249229
</p>
250230
<p>
251-
Thus the basis for a subspace is not unique in general.
231+
Thus a given basis for a subspace need not be unique.
252232
</p>
253233
</observation>
254234

255-
256-
<fact>
235+
<definition>
257236
<statement>
258237
<p>
259238
Any non-trivial real vector space has infinitely-many different bases, but all
260239
the bases for a given vector space are exactly the same size.
240+
So we say the <term>dimension</term> of a vector space or subspace is equal to the
241+
size of any basis for the vector space.
261242
</p>
262243
<p>
263-
For example,
244+
As you'd expect, <m>\IR^n</m> has dimension <m>n</m>.
245+
For example, <m>\IR^3</m> has dimension <m>3</m> because any basis for <m>\IR^3</m>
246+
such as
264247
<me>
265248
\setList{\vec e_1,\vec e_2,\vec e_3}
266249
\text{ and }
@@ -276,37 +259,23 @@ Thus the basis for a subspace is not unique in general.
276259
\left[\begin{array}{c}3\\-2\\5\end{array}\right]
277260
}
278261
</me>
279-
are all valid bases for <m>\IR^3</m>, and they all contain three vectors.
280-
</p>
281-
</statement>
282-
</fact>
283-
284-
<definition>
285-
<statement>
286-
<p>
287-
The <term>dimension</term> of a vector space or subspace is equal to the size
288-
of any basis for the vector space.
262+
contains exactly three vectors.
289263
</p>
290264
<p>
291-
As you'd expect, <m>\IR^n</m> has dimension <m>n</m>.
292-
For example, <m>\IR^3</m> has dimension <m>3</m> because any basis for <m>\IR^3</m>
293-
such as
265+
Likewise, the planar subspace with the following two bases
294266
<me>
295-
\setList{\vec e_1,\vec e_2,\vec e_3}
296-
\text{ and }
297267
\setList{
298-
\left[\begin{array}{c}1\\0\\0\end{array}\right],
299-
\left[\begin{array}{c}0\\1\\0\end{array}\right],
300-
\left[\begin{array}{c}1\\1\\1\end{array}\right]
268+
\left[\begin{array}{c}1\\2\\3\end{array}\right],
269+
\left[\begin{array}{c}-2\\0\\5\end{array}\right]
301270
}
302271
\text{ and }
303272
\setList{
304-
\left[\begin{array}{c}1\\0\\-3\end{array}\right],
305-
\left[\begin{array}{c}2\\-2\\1\end{array}\right],
306-
\left[\begin{array}{c}3\\-2\\5\end{array}\right]
273+
\left[\begin{array}{c}-1\\2\\8\end{array}\right],
274+
\left[\begin{array}{c}0\\4\\11\end{array}\right]
307275
}
308276
</me>
309-
contains exactly three vectors.
277+
has dimension <m>2</m> because any basis for the subspace
278+
will have exactly two vectors.
310279
</p>
311280
</statement>
312281
</definition>

0 commit comments

Comments
 (0)