06 MIT线性代数-线性无关,基和维数Independence, basis, and dimension

news/2025/2/13 0:13:59/

1. 线性无关 Independence

Suppose A is m by n with m<n (more unknowns than equations)

Then there are nonzero solutions to Ax=0 

Reason: there will be free variables! A中具有至少一个自由变量,那么Ax=0一定具有非零解。A的列向量可以线性组合得到零向量,所以A的列向量是线性相关的。

independence:vectors X1, X2,...,Xn are independent if no combination gives zero vectors (expect the zero comb. all Ci =0)

 

Repeat when v1,v2,..., vn are columns of A 

they are independent if nullspace of A is zero vector , rank=n , N(A)={0}, no free variables 若这些向量作为列向量构成矩阵A,则方程Ax=0只有零解x=0,或称矩阵A的零空间只有零向量

 they are dependent if Ac=0 for some nonzero C, rank<n , Yes free variables

结论:

此矩阵构成的方程Ax=0必有非零解,即三个向量线性相关

矩阵A的列向量为线性无关,则A所有的列均为主元列,没有自由列,矩阵的秩为n。

A的列向量为线性相关,则矩阵的秩小于n,并且存在自由列

2. 张成空间 Spanning a space

vectors v1, v2, v3, ..., vn span a space means: The space consists of all combs. of those vectors 

3. 基与维数Basis &Dimension

Basis for a space is a sequance of vectors v1, v2, ..., vd with 2 properties:

1. they are independent

2. they span the space

空间的基告诉我们了空间的一切信息

Example: Space is R3 

standard: one basis 

Rn : n vectors give basis if the nxn matrix with those cols is invertible

3.1 子空间的基 Basis for a subspace

 可以张成R3中的一个平面,但是它们无法成为R3空间的一组基

Given a space: Every basis for the space has the same number of vectors (dimension of the space)

3.2 列空间和零空间的基 Basis of a column space and nullspace

讨论列空间:

矩阵A的四个列向量张成了矩阵A的列空间,其中第3列和第4列与前两列线性相关,而前两个列向量线性无关。因此前两列为主元列。他们组成了列空间C(A)的一组基。矩阵的秩为2。

rank矩阵的秩r=# of pivot columns 矩阵主元列的数目=dimension of C(A)列空间的维数

讨论零空间:

必然在零空间N(A)之内

dim N(A)零空间的维数=自由列的数目# of free variables=n-r


http://www.ppmy.cn/news/1184614.html

相关文章

Google单元测试sample分析(二)

本文开始介绍googletest/googletest/sample/sample5_unittest.cc 有关TEST_F测试夹具的使用案例 class QuickTest : public testing::Test {protected:// Remember that SetUp() is run immediately before a test starts.// This is a good place to record the start time.v…

如何使用PHPicker在iOS系统无授权下获取资源

本文字数&#xff1a;2766字 预计阅读时间&#xff1a;18分钟 自iOS14系统开始&#xff0c;苹果加强了用户隐私和安全功能。新增了“Limited Photo Library Access”模式&#xff0c;同时在授权弹窗中增加了“Select Photo”选项。这意味着用户可以在应用程序请求访问相册时选择…

LeetCode 面试题 16.07. 最大数值

文章目录 一、题目二、C# 题解 一、题目 编写一个方法&#xff0c;找出两个数字a和b中最大的那一个。不得使用if-else或其他比较运算符。 示例&#xff1a; 输入&#xff1a; a 1, b 2 输出&#xff1a; 2 点击此处跳转题目。 二、C# 题解 找出最大的数&#xff0c;本质还是…

回归算法|长短期记忆网络LSTM及其优化实现

本期文章将介绍LSTM的原理及其优化实现 序列数据有一个特点&#xff0c;即“没有曾经的过去则不存在当前的现状”&#xff0c;这类数据以时间为纽带&#xff0c;将无数个历史事件串联&#xff0c;构成了当前状态&#xff0c;这种时间构筑起来的事件前后依赖关系称其为时间依赖&…

2015年亚太杯APMCM数学建模大赛B题城市公共交通服务水平动态评价模型求解全过程文档及程序

2015年亚太杯APMCM数学建模大赛 B题 城市公共交通服务水平动态评价模型 原题再现 城市公共交通服务评价是城市公共交通系统建设和提高公共交通运营效率的重要组成部分。对于公交企业&#xff0c;管理和规划部门&#xff0c;传统公交车站、线路和换乘枢纽的规划数据只是基于主…

el-input 给icon图标绑定点击事件

选择suffix-icon&#xff0c;添加点击事件 <temeplate><el-form-item :label"$t(company[Company address])" prop"address"><el-input v-model"enterpriseForm.address"><i slot"suffix" class"el-icon-m…

【每日一题】补档 CF487B. Strip | 数据结构杂烩 -> 单调队列 | 困难

题目内容 原题链接 给定一个长度为 n n n 的数组&#xff0c;将这个数组进行拆分成若干个连续子数组&#xff0c; 使得每个子数组的最大值减去最小值小于等于 s s s &#xff0c; 且每个子数组的长度大于等于 l e n len len 。 问最少可以拆分成多少个连续子数组&#xff0…

modelsim仿真报错:vlog-2388 ‘scl‘ already declared in this scope

问题背景&#xff1a; 1、使用vivado直接仿真的时候没有报错。 2、在vivado中调用modelsim的时候报错。 报错的代码&#xff1a; module iic_write(input clk,input rst,output scl,input en,inout sda);reg scl&#xff1b;……报错的意思是scl已经声明过了&#xff0c;mode…