From 32f4af5f369fa9f0b2988ecad7797f4bec3661c3 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Tue, 21 Sep 2021 17:12:46 -0400 Subject: notes and homework --- li/05_linear_span | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 li/05_linear_span (limited to 'li/05_linear_span') diff --git a/li/05_linear_span b/li/05_linear_span new file mode 100644 index 0000000..ed5fdf2 --- /dev/null +++ b/li/05_linear_span @@ -0,0 +1,17 @@ + Linear Independence and Linear Span +Solution set for Ax=0, Ax=B, and the dimension of null space/rank of a +matrix. + +Def. linear independence over vector space (V, +, *) +Let v = {v1, ..., vk} be vectors in V. We say v is linearly independent +iff whenever a1v1 + a2v2 + ... akvk = 0, a1 = a2 = ... = ak = 0. + +Where v_i in v in R^n, we can find linear independence by writing it as + +[ v1 | v2 | ... | vk ][a1 a2 ... ak]^T = 0 + +Prove: basis of a vector space has the same dimension regardless of the +vectors. + +Def basis: a linearly independent set of vectors which spans a vector +space. -- cgit