Linear Algebra lecture9 note
Linear independence
Spanning a space
Basis and dimension
以上概念都是针对a bunch of vectors, 不是矩阵里的概念
Suppose A is m by n with m<n, then there are non-zero solutions to AX=0(more unknowns than equations)
Reason: There will be free variables
Independence:
Vectors X1, X2,…,Xn are independent if no combination gives zero vector( except the zero combination)
C1X1+C2X2+…+CnXn≠0
1.若以上向量中存在零向量,则不可能线性无关
2.平面内三个向量定成线性相关
3.如果零空间存在非零向量,那么各列线性相关
Repeat: when V1,V2,…,Vn are columns of A,
they are independent if N(A) is only zero vectors( no free variable,r=n)
they are dependent if AC=0 for some non-zero C( has free variable,r<n)
Spanning a space: Vectors V1,V2,..,Vl span a subspace means: The space consists of all combinations of those vectors
Basis: For a space is a sequence of vectors V1,V2,…,Vd with 2 properties:
1.They are independent
2.They span the spaces
Example:
space in R3
one space is

如何检验是否构成基?
可当作矩阵列向量,经过消元、变换,看是否能得到自由变量?是否列都是主列?
Rn,n vectors give basis if the n *n matrix with those columns if invertible
Given a space: Every basis for space has the same number of vectors, and this number is called dimension of space
Summary:
Independence, that looks at combinations not being zero
(线性无关,着眼于线性组合不为0)
Spanning, that looks at all the combinations
(生成,着眼于所有的线性组合)
Basis, that’s the one that combines independence and spanning
(基,一组无关的向量并生成空间)
Dimension,the number of vectors in any basis
(维数,表示基向量的个数)
Linear Algebra lecture9 note的更多相关文章
- Linear Algebra lecture1 note
Professor: Gilbert Strang Text: Introduction to Linear Algebra http://web.mit.edu/18.06 Lecture 1 ...
- Linear Algebra lecture10 note
Four fundamental subspaces( for matrix A) if A is m by n matrix: Column space C(A) in Rm (列空间在m维实 ...
- Linear Algebra lecture8 note
Compute solution of AX=b (X=Xp+Xn) rank r r=m solutions exist r=n solutions unique example: 若想方程有解 ...
- Linear Algebra lecture7 note
Computing the nullspace (Ax=0) Pivot variables-free variables Special solutions: rref( A)=R rank o ...
- Linear Algebra lecture6 note
Vector spaces and subspaces Column space of A solving Ax=b Null space of A Vector space requiremen ...
- Linear Algebra Lecture5 note
Section 2.7 PA=LU and Section 3.1 Vector Spaces and Subspaces Transpose(转置) example: 特殊情况,对称 ...
- Linear Algebra lecture4 note
Inverse of AB,A^(A的转置) Product of elimination matrices A=LU (no row exchanges) Inverse of AB,A^(A ...
- Linear Algebra lecture3 note
Matrix multiplication(4 ways!) Inverse of A Gauss-Jordan / find inverse of A Matrix multiplication ...
- Codeforces Gym101502 B.Linear Algebra Test-STL(map)
B. Linear Algebra Test time limit per test 3.0 s memory limit per test 256 MB input standard input ...
随机推荐
- Qt之C语言类型typedef a[]等
01:typedef类型:给类型起别名,typedef int d[5];定义了一个类型即一个5个int类型的数据.所以d c;的长度是就是4 * 10:
- How to address this problem?
root# cmake .. No problem. root# make [ 63%] Linking CXX shared module collisionperceptor.so/usr/bin ...
- java1234初学maven
第一讲: maven maven是基于项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具. maven安装与下载: .确定jdk已经安装并且配置 .安装mav ...
- Asp.net Web API 返回Json对象的两种方式
这两种方式都是以HttpResponseMessage的形式返回, 方式一:以字符串的形式 var content = new StringContent("{\"FileName ...
- C语言程序设计第11次作业
一.本次课主要内容: 本章主要介绍指针相关的基础知识,本节课的主要如下 (1)通过示例"密码开锁"引入指针的概念和主要知识点,分析了密码开锁的过程来说明变量.内存单元和地址之间的关 ...
- java nio(non-blocking io)简介及和io
在 Java1.4之前的I/O系统中,提供的都是面向流的I/O系统,系统一次一个字节地处理数据,一个输入流产生一个字节的数据,一个输出流消费一个字节 的数据,面向流的I/O速度非常慢,而在Java 1 ...
- 视频控件VideoView的简单使用
一.在布局文件中放置VideoView控件 二.在Activity中获取到该控件后,通过给该控件设置视频控制器(setMediaController(new MediaController(this) ...
- C#中去除字符串空格的三种方法
static void Main() { //demo1 除去空格,提取出各个单词 string s = "a b c"; string[] word = s.Split(new ...
- C#给DataTable添加序号、C#给DataTable添加合计、小计
/// <summary> /// 给DataTable添加序号 /// </summary> /// <param name= ...
- centos6虚拟机复制后修改网卡
方法1: 使用vmware创建centos6.4虚拟机, 创建完成后复制该虚拟机, 打开复制的虚拟机发现网卡名字是eth1,而网卡配置文件为eth0,mac地址变了 这时修改网卡配置文件, 删除uui ...