机器学习|数学基础Mathematics for Machine Learning系列之线性代数(24):基变换与坐标变换
Posted 海轰Pro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了机器学习|数学基础Mathematics for Machine Learning系列之线性代数(24):基变换与坐标变换相关的知识,希望对你有一定的参考价值。
前言
Hello!小伙伴!
非常感谢您阅读海轰的文章,倘若文中有错误的地方,欢迎您指出~
自我介绍 ଘ(੭ˊᵕˋ)੭
昵称:海轰
标签:程序猿|C++选手|学生
简介:因C语言结识编程,随后转入计算机专业,有幸拿过一些国奖、省奖…已保研。目前正在学习C++/Linux/Python
学习经验:扎实基础 + 多做笔记 + 多敲代码 + 多思考 + 学好英语!
机器学习小白阶段
文章仅作为自己的学习笔记 用于知识体系建立以及复习
知其然 知其所以然!
往期文章
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(1):二阶与三阶行列式、全排列及其逆序数
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(2):n阶行列式、对换
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(3):行列式的性质
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(4):行列式按行(列)展开
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(5):克拉默法则
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(6):矩阵的运算
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(7):逆矩阵
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(8):矩阵的初等变换
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(9):矩阵的秩、线性方程组的解
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(10):向量组及其线性组合
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(11):向量组的线性相关性
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(12):向量组的秩
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(13):线性方程组的解的结构
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(14):向量空间
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(15):向量的内积、长度及正交性
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(16):方阵的特征值与特征向量
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(17):相似矩阵
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(18):对称矩阵的对角化
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(19):二次型及其标准形
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(20):用配方法化二次型为标准形
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(21):正定二次型
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(22):线性空间的定义与性质
【机器学习|数学基础】Mathematics for Machine Learning系列之线性代数(23):维数、基与坐标
6.3 基变换与坐标变换
同一元素在不同的基下有不同的坐标
设 α 1 , . . . , α n 、 β 1 , . . . . , β n \\alpha_1,...,\\alpha_n、\\beta_1,....,\\beta_n α1,...,αn、β1,....,βn是线性空间 V n V_n Vn中的两个基,有
{ β 1 = p 11 α 1 + p 21 α 2 + . . . . + p n 1 α n β 2 = p 12 α 1 + p 22 α 2 + . . . . + p n 2 α n . . . . . . . . β n = p 1 n α 1 + p 2 n α 2 + . . . . + p n n α n \\begin{cases} \\beta_1=p_{11}\\alpha_1+p_{21}\\alpha_2+....+p_{n1}\\alpha_n\\\\ \\beta_2=p_{12}\\alpha_1+p_{22}\\alpha_2+....+p_{n2}\\alpha_n\\\\ ........\\\\ \\beta_n=p_{1n}\\alpha_1+p_{2n}\\alpha_2+....+p_{nn}\\alpha_n\\\\ \\end{cases} ⎩⎪⎪⎪⎨⎪⎪⎪⎧β1=p11α1+p21α2+....+pn1αnβ2=p12α1+p22α2+....+pn2αn........βn=p1nα1+p2nα2+....+pnnαn
使用矩阵形式表示
[ β 1 β 2 . . . β n ] = [ p 11 p 21 . . . p n 1 p 12 p 22 . . . p n 2 . . . . . . . . . p 1 n p 2 n . . . p n n ] [ α 1 α 2 . . . α n ] = P T [ α 1 α 2 . . . α n ] \\begin{bmatrix} \\beta_1\\\\ \\beta_2\\\\ .\\\\ .\\\\ .\\\\ \\beta_n \\end{bmatrix}=\\begin{bmatrix} p_{11} & p_{21} &... & p_{n1}\\\\ p_{12} & p_{22} & ... &p_{n2}\\\\ . & . & & . \\\\ . & . & & . \\\\ . & . & & . \\\\ p_{1n} & p_{2n} &... & p_{nn}\\\\ \\end{bmatrix}\\begin{bmatrix} \\alpha_1\\\\ \\alpha_2\\\\ .\\\\ .\\\\ .\\\\ \\alpha_n \\end{bmatrix}=P^T\\begin{bmatrix} \\alpha_1\\\\ \\alpha_2\\\\ .\\\\ .\\\\ .\\\\ \\alpha_n \\end{bmatrix} ⎣⎢⎢⎢⎢⎢⎢⎡β1β2...βn⎦⎥⎥⎥⎥⎥⎥⎤=⎣⎢⎢⎢⎢⎢⎢⎡p11p12...p1np21p22...p2n.........pn1pn2...pnn⎦⎥⎥⎥⎥⎥⎥⎤⎣⎢⎢⎢⎢机器学习|数学基础Mathematics for Machine Learning系列之图论:树及其性质
机器学习|数学基础Mathematics for Machine Learning系列之图论:树及其性质
机器学习|数学基础Mathematics for Machine Learning系列之图论(10):匹配基本定理
机器学习|数学基础Mathematics for Machine Learning系列之图论(10):匹配基本定理
机器学习|数学基础Mathematics for Machine Learning系列之图论(10):匹配基本定理
机器学习|数学基础Mathematics for Machine Learning系列之矩阵理论(16):向量和矩阵的极限