【读书笔记】:MIT线性代数(2):Vector Spaces and Subspaces
Vector Space:
R1, R2, R3,R4 , .... Each space Rn consists of a whole collection of vectors. R5 contains all column vectors with five components. This is called "5-dimensional space". The great thing about linear algebra is that it deals easily with five-dimensional space. We don't draw the vectors, we just need the five numbers (or n numbers).
A real vector space is a set of "vectors" together with rules for vector addition and for multiplication by real numbers. The addition and the multiplication must produce vectors that are in the space.
xy plane is a typical R2 space, consists of all the 2-D vectors. If the origin point were removed, this would not be a vector space again. Because if the scalar multiplier is zero, the produced vector will not in that space. Every vector space has the origin point.
The commutative law is v + w = w + v; the distributive law is c(v + w) = cv + cwo ; There is a unique "zero vector" satisfying 0 + v = v.
Subspace:

Fact:Every subspace contains the zero vector
Example1: Sub space of R2:
a. Zero point; b. Line in R2 going through zero point; c.R2 itself
Example2: Sub space of R3:
a. Zero point; b. Line in R3 going through zero point; c. Plane in R3 going through zero point; d.R3 itself
Column space of A:
Start with the columns of A, and take all their linear combinations. This produces the column space of A. It is a vector space made up of column vectors.C (A) contains not just the n columns of A, but all their combinations Ax.

To solve Ax = b is to express b as a combination of the columns. The right side b has to be in the column space produced by A on the left side, or no solution!
Suppose A is an m by n matrix. Its columns have m components (not n). So the columns belong to Rm. The column space of A is a subspace of Rm (not Rn).
Example1:


Example2: C(I) is R2, C(A) is a line in R2, C(B) is R2

Null Space of A: Solving Ax=0
One solution is x=0, for invertible matrix A, it's the only solution; for other matrices, there are nonzero solutions, each of them belongs to Null Space.

The solution vectors x have n components. They are vectors in Rn, so the nullspace is a subspace of Rn. The column space C (A) is a subspace of Rm. If the right side b is not zero, the solutions of Ax = b do not form a subspace. The vector x = 0 is only a solution if b = 0. When the set of solutions does not include x = 0, it cannot be a subspace.

【读书笔记】:MIT线性代数(2):Vector Spaces and Subspaces的更多相关文章
- 【读书笔记】:MIT线性代数(5):Four fundamental subspaces
At the beginning, the difference between rank and dimension: rank is a property for matrix, while di ...
- STL源码剖析读书笔记之vector
STL源码剖析读书笔记之vector 1.vector概述 vector是一种序列式容器,我的理解是vector就像数组.但是数组有一个很大的问题就是当我们分配 一个一定大小的数组的时候,起初也许我们 ...
- 《Mastering Opencv ...读书笔记系列》车牌识别(II)
http://blog.csdn.net/jinshengtao/article/details/17954427 <Mastering Opencv ...读书笔记系列>车牌识别(I ...
- 《Mastering Opencv ...读书笔记系列》车牌识别(I)
http://blog.csdn.net/jinshengtao/article/details/17883075/ <Mastering Opencv ...读书笔记系列>车牌识别(I ...
- 《3D Math Primer for Graphics and Game Development》读书笔记1
<3D Math Primer for Graphics and Game Development>读书笔记1 本文是<3D Math Primer for Graphics and ...
- 【Todo】【读书笔记】机器学习-周志华
书籍位置: /Users/baidu/Documents/Data/Interview/机器学习-数据挖掘/<机器学习_周志华.pdf> 一共442页.能不能这个周末先囫囵吞枣看完呢.哈哈 ...
- 机器学习实战 - 读书笔记(13) - 利用PCA来简化数据
前言 最近在看Peter Harrington写的"机器学习实战",这是我的学习心得,这次是第13章 - 利用PCA来简化数据. 这里介绍,机器学习中的降维技术,可简化样品数据. ...
- 机器学习实战 - 读书笔记(07) - 利用AdaBoost元算法提高分类性能
前言 最近在看Peter Harrington写的"机器学习实战",这是我的学习笔记,这次是第7章 - 利用AdaBoost元算法提高分类性能. 核心思想 在使用某个特定的算法是, ...
- STL源码剖析读书笔记--第四章--序列式容器
1.什么是序列式容器?什么是关联式容器? 书上给出的解释是,序列式容器中的元素是可序的(可理解为可以按序索引,不管这个索引是像数组一样的随机索引,还是像链表一样的顺序索引),但是元素值在索引顺序的方向 ...
随机推荐
- web开发jsp页面遇到的一系列问题
一:web总结 1.jsp页面知识点巩固 1.1字符串数字格式化转换 <%@ taglib prefix="fmt" uri="http://java.sun.co ...
- go 学习之bufio
bufio模块通过对io模块的封装,提供了数据缓冲功能,能够一定程度减少大块数据读写带来的开销.实际上在bufio各个组件内部都维护了一个缓冲区,数据读写操作都直接通过缓存区进行.当发起一次读写操作时 ...
- 2019 Multi-University Training Contest 1 - 1012 - NTT
题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=6589 题解连接: https://www.cnblogs.com/xusirui/p/1122945 ...
- Codeforces - 1176E - Cover it! - bfs
https://codeforc.es/contest/1176/problem/E 久了不写bfs了.一开始用dfs写,的确用dfs是很有问题的,一些奇怪的情况就会导致多染一些色. 注意无向图的边要 ...
- 2019牛客暑期多校训练营(第一场) - A - Equivalent Prefixes - 单调栈
A - Equivalent Prefixes - 单调栈 题意:给定两个n个元素的数组a,b,它们的前p个元素构成的数组是"等价"的,求p的最大值."等价"的 ...
- PHP实现上传文件到服务器
<?php /**************************** *** 功能:上传文件到服务器 ****************************/ session_start() ...
- Linux文件行排序
sort:对文件的行排序 - 准备一份文件:char.txt - sort char.txt:结果会按照头字母顺序排 - sort -o sortchar.txt char.txt:排序char.tx ...
- vue 中使用 watch 出现了如下的报错
vue 中使用 watch 出现了如下的报错 报错: Method "watch" has type "object" in the component def ...
- 关于行内元素,内联元素before和after的大小设置问题
:before /:after伪元素默认是一个行内元素,所以这个元素设置width/height是无效的
- python 面向对象(类)--学习笔记
面向对象是一种编程方式, 主要集中在类和对象的两个概念 python 中的类符合封装, 继承, 多态的特征 类 是一个模板, 是n多函数的集成 对象 是类的实例化 类的成员分为三大类:字段.方法.属性 ...