8. Linear Transformations
8.1 Linear Requires
Keys:
A linear transformation T takes vectors v to vectors T(v). Linearity requires:
\[T(cv +dw) = cT(v) + dT(w)
\]The input vectors v and outputs T(v) can be in \(R^n\) or matrix space or function space.
If A is m by n, \(T(x)=Ax\) is linear from the input space \(R^n\) to the output space \(R^m\).
The derivative \(T(f)=\frac{df}{dx}\) is linear.The integral \(T^+(f)=\int^x_0f(t)dt\) is its pseudoinverse.
Derivative: \(1,x,x^2 \rightarrow 1,x\)
\[u = a + bx + cx^2 \\
\Downarrow \\
Au = \left [ \begin{matrix} 0&1&0 \\ 0&0&2 \end{matrix} \right]
\left [ \begin{matrix} a \\ b \\ c \end{matrix} \right]
=\left [ \begin{matrix} b \\ 2c \end{matrix} \right] \\
\Downarrow \\
\frac{du}{dx} = b + 2cx
\]Integration: \(1,x \rightarrow x,x^2\)
\[\int^x_0(D+Ex)dx= Dx + \frac{1}{2}Ex^2 \\
\Downarrow \\
input \ \ v \ \ (D+Ex) \\
A^+v = \left[ \begin{matrix} 0&0 \\ 1&0 \\ 0&\frac{1}{2} \end{matrix} \right]
\left[ \begin{matrix} D \\ E \end{matrix} \right]
=\left[ \begin{matrix} 0 \\D \\ \frac{1}{2}E \end{matrix} \right] \\
\Downarrow \\
T^+(v) = Dx + \frac{1}{2}Ex^2
\]The product ST of two linear transformations is still linear : \((ST)(v)=S(T(v))\)
Linear : rotated or stretched or other linear transformations.

8.2 Matrix instead of Linear Transformation
We can assign a matrix A to instead of every linear transformation T.
For ordinary column vectors, the input v is in \(V=R^n\) and the output \(T(v)\) is in \(W=R^m\), The matrix A for this transformation will be m by n.Our choice of bases in V and W will decide A.
8.2.1 Change of Basis
if \(T(v) = v\) means T is the identiy transformation.
If input bases = output bases, then the matrix \(I\) will be choosed.
If input bases not equal to output bases, then we can construct new matrix \(B=W^{-1}V\).
example:
\[input \ \ basis \ \ [v_1 \ \ v_2] = \left [ \begin{matrix} 3&6 \\ 3&8 \end{matrix} \right] \\
output \ \ basis \ \ [w_1 \ \ w_2] = \left [ \begin{matrix} 3&0 \\ 1&2 \end{matrix} \right] \\
\Downarrow \\
v_1 = 1w_1 + 1w_2 \\
v_2 = 2w_1 + 3w_2 \\
\Downarrow \\
[w_1 \ \ w_2] [B] = [v_1 \ \ v_2] \\
\Downarrow \\
\left [ \begin{matrix} 3&0 \\ 1&2 \end{matrix} \right]
\left [ \begin{matrix} 1&2 \\ 1&3 \end{matrix} \right]
=
\left [ \begin{matrix} 3&6 \\ 3&8 \end{matrix} \right]
\]when the input basis is in the columns of V, and the output basis is in the columns of W, the change of basis matrix for \(T\) is \(B=W^{-1}V\).
Suppose the same vector u is written in input basis of v's and output basis of w's:
\[u=c_1v_1 + \cdots + c_nv_n \\
u=d_1w_1 + \cdots + d_nw_n \\
\left [ \begin{matrix} v_1 \cdots v_n \end{matrix} \right]
\left [ \begin{matrix} c_1 \\ \vdots \\ c_n \end{matrix} \right]
=
\left [ \begin{matrix} w_1 \cdots w_n \end{matrix} \right]
\left [ \begin{matrix} d_1 \\ \vdots \\ d_n \end{matrix} \right]
\\
Vc=Wd \\
d = W^{-1}Vc = Bc \\
\]c is coordinates of input basis, d is coordinates of output basis.
8.2.2 Construction Matrix
Suppose T transforms the space V to space W. We choose a basis \(v_1,v_2,...,v_n\) for V and a basis \(w_1,w_2,...,w_n\) for W.
=a_{1j}w_1 + \cdots + a_{mj}w_m
\]
The \(a_{ij}\) are into A.
T(v) =\frac{dv}{dx} = 1c_2 + 2c_3x + 3c_4x^2 \\
Ac=\left[ \begin{matrix} 0&1&0&0 \\ 0&0&2&0\\ 0&0&0&3 \end{matrix} \right]
\left[ \begin{matrix} c_1 \\ c_2 \\ c_3 \\ c_4 \end{matrix} \right]
=\left[ \begin{matrix} c_2 \\ 2c_3 \\ 3c_4 \end{matrix} \right]
\]
T takes the derivative, A is "derivative matrix".
8.2.3 Choosing the Best Bases
The same T is represented by different matrices when we choose different bases.
Perfect basis
Eigenvectors are the perfect basis vectors.They produce the eigenvalues matrix \(\Lambda = X^{-1}AX\)
Input basis = output basis
The new basis of b's is similar to A in the standard basis:
\]
Different basis
Probably A is not symmetric or even square, we can choose the right singular vectors (\(v_1,...,v_n\)) as input basis and the left singular vectors(\(u_1,...,u_n\)) as output basis.
\]
\(\Sigma\) is "isometric" to A.
Definition : \(C=Q^{-1}_1AQ_{2}\) is isometric to A if \(Q_1\) and \(Q_2\) are orthogonal.
8.2.4 The Search of a Good Basis
Keys: fast and few basis.
- $B_{in} = B_{out} = $ eigenvector matrix X . Then \(X^{-1}AX\)= eigenvalues in \(\Lambda\).
- $B_{in} = V \ , \ B_{out} = U $ : singular vectors of A. Then \(U^{-1}AV\)= singular values in \(\Sigma\).
- $B_{in} = B_{out} = $ generalized eigenvectors of A . Then \(B^{-1}AB\)= Jordan form \(J\).
- $B_{in} = B_{out} = $ Fourier matrix F . Then \(Fx\) is a Discrete Fourier Transform of x.
- The Fourier basis : \(1,sinx,cosx,sin2x,cos2x,...\)
- The Legendre basis : \(1, x, x^2 - \frac{1}{3},x^3 - \frac{3}{5},...\)
- The Chebyshev basis : \(1, x, 2x^2 - 1,4x^3 - 3x,...\)
- The Wavelet basis.
8. Linear Transformations的更多相关文章
- Linear transformations. 线性变换与矩阵的关系
0.2.2 Linear transformations. Let U be an n-dimensional vector space and let V be an m-dimensional v ...
- 线性代数导论 | Linear Algebra 课程
搞统计的线性代数和概率论必须精通,最好要能锻炼出直觉,再学机器学习才会事半功倍. 线性代数只推荐Prof. Gilbert Strang的MIT课程,有视频,有教材,有习题,有考试,一套学下来基本就入 ...
- transformations 变换集合关系 仿射变换
http://groups.csail.mit.edu/graphics/classes/6.837/F03/lectures/04_transformations.ppt https://group ...
- paper 128:奇异值分解(SVD) --- 线性变换几何意义[转]
PS:一直以来对SVD分解似懂非懂,此文为译文,原文以细致的分析+大量的可视化图形演示了SVD的几何意义.能在有限的篇幅把这个问题讲解的如此清晰,实属不易.原文举了一个简单的图像处理问题,简单形象,真 ...
- 特征向量-Eigenvalues_and_eigenvectors#Graphs
https://en.wikipedia.org/wiki/Eigenvalues_and_eigenvectors#Graphs A {\displaystyle A} ...
- 转载:奇异值分解(SVD) --- 线性变换几何意义(上)
本文转载自他人: PS:一直以来对SVD分解似懂非懂,此文为译文,原文以细致的分析+大量的可视化图形演示了SVD的几何意义.能在有限的篇幅把这个问题讲解的如此清晰,实属不易.原文举了一个简单的图像处理 ...
- (转) Deep Learning in a Nutshell: Core Concepts
Deep Learning in a Nutshell: Core Concepts Share: Posted on November 3, 2015by Tim Dettmers 7 Comm ...
- We Recommend a Singular Value Decomposition
We Recommend a Singular Value Decomposition Introduction The topic of this article, the singular val ...
- A geometric interpretation of the covariance matrix
A geometric interpretation of the covariance matrix Contents [hide] 1 Introduction 2 Eigendecomposit ...
- <转>机器学习笔记之奇异值分解的几何解释与简单应用
看到的一篇比较好的关于SVD几何解释与简单应用的文章,其实是有中文译本的,但是翻译的太烂,还不如直接看英文原文的.课本上学的往往是知其然不知其所以然,希望这篇文能为所有初学svd的童鞋提供些直观的认识 ...
随机推荐
- 高效的PDF文字提取技术
无论是行政法规.学术论文还是企业合同,PDF文档为我们提供了一种便捷.稳定的信息传递方式.然而,从PDF文件中提取文本信息对于数据分析.内容编辑等后续处理来说至关重要. PDF文本提取技术是一种可以从 ...
- 05、etcd 读请求执行流程
本篇内容主要来源于自己学习的视频,如有侵权,请联系删除,谢谢. 1.etcd读请求概览 etcd是典型的读多写少存储,在我们实际业务场景中,读一般占据2/3以上的请求.一个读 请求从client通过R ...
- Java ----多线程 案例
1 package bytezero.threadtest2; 2 3 /** 4 * 银行有一个账户 5 * 有两个储户分别向同一个账户存 3000元,每次存1000,存三次,每次存完打印账户余额 ...
- Java 自定义数组的工具类
1 /** 2 * 3 * @Description 自定义数组的工具类 4 * @author Bytezero·zhenglei! Email:420498246@qq.com 5 * @vers ...
- 多个 .NET Core SDK 版本之间进行切换 global.json
由于同一台电脑可以安装多个版本的.NET Core SDK. 当安装了许多不同版本的.NET Core SDK 之后,要如何才能使用旧版dotnet 命令,执行dotnet new 或dotnet b ...
- Win10使用Dism++离线安装.Net3.5
.Net3.5的安装包在Win10已经不能使用了,在线安装.Net3.5会很卡(跟网络无关),最好是使用Dism++提取Win10系统镜像文件离线安装. 打开Dism++软件,按照如下步骤操作: 选择 ...
- 适合新手练习的python开源经典源码
一 前记 python学习离不开三要素: A.基础知识要熟悉 B. 练习源码要够量 C.实战项目要跟上 二 链接 书本的基础就看几本书就可以了,这里给出源码练习的经典开源源码: 该链接集合了pytho ...
- Android Studio安装插件重启插件消失
问题 安装插件后,已经提示让重启IDE,但是重启后发现插件是安装失败了 解决方法 原因是自己改了配置,如果下载的插件是jar包,则可以安装,如果是zip压缩文件的插件,则是要我们手动解压一下 我上面的 ...
- 一个简易的ORM框架的实现(一)
一个简易的ORM框架的实现 ORM ORM---操作数据库---对象关系映射 ORM(Object Relational Mapping)框架采用元数据来描述对象与关系映射的细节.只要提供了持久化类与 ...
- 关于python的copy()与deepcopy()之间的区别
关于python的copy()与deepcopy()之间的区别 copy为浅复制,不会产生一个独立的对象单独存在,如list中套着list的情况,当改变子list中的一个或多个元素,copy的内容也会 ...