当前位置: 首页 > news >正文

国内做网站的公司百度网址大全 官网首页

国内做网站的公司,百度网址大全 官网首页,wordpress网站压缩,wordpress导出文章目录 1. 相似矩阵1.1 A T A A^TA ATA正定性证明 2. 相似矩阵2.1 举例2.2 证明相似矩阵具有相同特征值 1. 相似矩阵 假设矩阵A,B为正定矩阵,那么对于任意非零列向量x来说,二次型 x T A x , x T B x x^TAx,x^TBx xTAx,xTBx恒为正 x T A …

文章目录

1. 相似矩阵

假设矩阵A,B为正定矩阵,那么对于任意非零列向量x来说,二次型 x T A x , x T B x x^TAx,x^TBx xTAx,xTBx恒为正
x T A x > 0 , x T B x > 0 , \begin{equation} x^TAx>0,x^TBx>0, \end{equation} xTAx>0xTBx>0

  • 如果A,B均是正定矩阵,那么A+B也是正定矩阵
    x T ( A + B ) x = ( x T A + x T B ) x = x T A x + x T B x > 0 \begin{equation} x^T(A+B)x=(x^TA+x^TB)x=x^TAx+x^TBx>0 \end{equation} xT(A+B)x=(xTA+xTB)x=xTAx+xTBx>0
    我们在做最小二乘法的过程中,需要拟合一条直线,满足直线基本能反映点的情况,我们知道b值不一定在A的列空间中,所以我们通过同时乘以 A T A^T AT 得到 A T b A^Tb ATb,使得方程能求得最优解 x ^ \hat{x} x^
    A T A x ^ = A T b \begin{equation} A^TA\hat{x}=A^Tb \end{equation} ATAx^=ATb
    这时候我们就遇到了 A T A A^TA ATA矩阵,那么这个矩阵肯定是对称矩阵,请问 A T A A^TA ATA 是否是正定矩阵呢?

1.1 A T A A^TA ATA正定性证明

首先 A T A A^TA ATA是对称的,那么我们只需要证明对于任意非零向量x,二次型恒正即可:
x T A T A x > ? ? ? 0 \begin{equation} x^TA^TAx>???0 \end{equation} xTATAx>???0

  • 整理上述公式可得:
    ( x T A T ) ( A x ) = ( A x ) T ( A x ) \begin{equation} (x^TA^T)(Ax)=(Ax)^T(Ax) \end{equation} (xTAT)(Ax)=(Ax)T(Ax)
  • 我们知道Ax表示的是A列向量的组合,最后还是一个列向量,所以上述值都是一个标量的平方,所以可以得到如下:
    ( x T A T ) ( A x ) = ( A x ) T ( A x ) = ∣ ∣ A x ∣ ∣ 2 ≥ 0 \begin{equation} (x^TA^T)(Ax)=(Ax)^T(Ax)=||Ax||^2 \ge 0 \end{equation} (xTAT)(Ax)=(Ax)T(Ax)=∣∣Ax20
  • 那么什么时候 ∣ ∣ A x ∣ ∣ ≠ 0 ||Ax|| \neq0 ∣∣Ax∣∣=0呢?也就是当Ax=0无零解,也就是说矩阵A的秩等于列数n,所以可以得到,只要给定一个m行n列的矩阵A,如果矩阵A的秩为n,即满列秩,那么就可以得到 A T A A^TA ATA为正定矩阵!!!

2. 相似矩阵

假设A,B均是N×N的矩阵,如果存在一个可以矩阵M,使得三个矩阵满足如下关系,那么A相似于B
B = M − 1 A M \begin{equation} B=M^{-1}AM \end{equation} B=M1AM
特征向量矩阵S,当我们有一个矩阵A,其特征值矩阵为 Λ \Lambda Λ,特征向量矩阵为S,满足如下条件:
Λ = S − 1 A S ⇒ A ∼ Λ \begin{equation} \Lambda=S^{-1}AS \Rightarrow A \sim \Lambda \end{equation} Λ=S1ASAΛ

  • 按照新的说法来说,矩阵A相似于特征向量 Λ \Lambda Λ,也就是说当矩阵M是特征向量矩阵S时候,矩阵A相似于特征值矩阵 Λ \Lambda Λ,如果 M ≠ S M \ne S M=S,那么矩阵A相似于其他的。
    B = M − 1 A M ⇒ { A ∼ Λ , M = S A ∼ B , M ≠ S \begin{equation} B=M^{-1}AM \Rightarrow \left\{ \begin{aligned} A \sim \Lambda,M=S\\ A \sim B,M\neq S\\ \end{aligned} \right.\end{equation} B=M1AM{AΛM=SABM=S

2.1 举例

当我们矩阵A表示如下,可以得到其特征向量矩阵S,特征值矩阵 Λ \Lambda Λ
A = [ 2 1 1 2 ] ⇒ S = [ 1 1 − 1 1 ] , Λ = [ 1 0 0 3 ] ⇒ A ∼ Λ \begin{equation} A=\begin{bmatrix} 2&1\\\\ 1&2 \end{bmatrix}\Rightarrow S=\begin{bmatrix} 1&1\\\\ -1&1 \end{bmatrix},\Lambda=\begin{bmatrix} 1&0\\\\ 0&3 \end{bmatrix}\Rightarrow A \sim \Lambda \end{equation} A= 2112 S= 1111 ,Λ= 1003 AΛ

  • 给定一个矩阵M,可得如下B
    A = [ 2 1 1 2 ] ⇒ M = [ 1 4 0 1 ] , B = M − 1 A M = [ − 2 − 15 1 6 ] ⇒ A ∼ B \begin{equation} A=\begin{bmatrix} 2&1\\\\ 1&2 \end{bmatrix}\Rightarrow M=\begin{bmatrix} 1&4\\\\ 0&1 \end{bmatrix},B=M^{-1}AM=\begin{bmatrix} -2&-15\\\\ 1&6 \end{bmatrix}\Rightarrow A \sim B \end{equation} A= 2112 M= 1041 ,B=M1AM= 21156 AB
  • 矩阵A,B, Λ \Lambda Λ之间有什么关系呢?
    ∣ ∣ A ∣ ∣ = 3 , λ A 1 = 1 ; λ A 2 = 3 ; t r a c e A = 4 \begin{equation} ||A||=3,\lambda_{A1}=1;\lambda_{A2}=3;trace_A=4 \end{equation} ∣∣A∣∣=3,λA1=1λA2=3;traceA=4
    ∣ ∣ B ∣ ∣ = 3 , λ B 1 = 1 ; λ B 2 = 3 ; t r a c e B = 4 \begin{equation} ||B||=3,\lambda_{B1}=1;\lambda_{B2}=3;trace_B=4 \end{equation} ∣∣B∣∣=3,λB1=1λB2=3;traceB=4

1、两者的秩相等。 2、两者的行列式值相等。 3、两者的迹数相等。 4、两者拥有同样的特征值,尽管相应的特征向量一般不同

2.2 证明相似矩阵具有相同特征值

B = M − 1 A M , A x = λ x \begin{equation} B=M^{-1}AM,Ax=\lambda x \end{equation} B=M1AM,Ax=λx

M B M − 1 = A ⇒ M B M − 1 x = A x = λ x ⇒ B [ M − 1 x ] = λ [ M − 1 x ] \begin{equation} MBM^{-1}=A\Rightarrow MBM^{-1}x=Ax=\lambda x \Rightarrow B[M^{-1}x]=\lambda [M^{-1}x] \end{equation} MBM1=AMBM1x=Ax=λxB[M1x]=λ[M1x]

  • 故可以得到,如果矩阵A相似于矩阵B,那么A,B具有相同的特征值矩阵。

文章转载自:
http://conferrence.sLnz.cn
http://kedron.sLnz.cn
http://vvip.sLnz.cn
http://gingery.sLnz.cn
http://templet.sLnz.cn
http://thromboembolism.sLnz.cn
http://comose.sLnz.cn
http://cardiophobia.sLnz.cn
http://iglu.sLnz.cn
http://machida.sLnz.cn
http://monoplane.sLnz.cn
http://smoothen.sLnz.cn
http://beanery.sLnz.cn
http://benthamic.sLnz.cn
http://bedeswoman.sLnz.cn
http://gaillardia.sLnz.cn
http://pellucidly.sLnz.cn
http://trifacial.sLnz.cn
http://appersonation.sLnz.cn
http://checkrail.sLnz.cn
http://disabuse.sLnz.cn
http://eth.sLnz.cn
http://ibidem.sLnz.cn
http://yolky.sLnz.cn
http://hygroscope.sLnz.cn
http://radiance.sLnz.cn
http://department.sLnz.cn
http://responsor.sLnz.cn
http://pigmy.sLnz.cn
http://intersexual.sLnz.cn
http://bivalvular.sLnz.cn
http://scannable.sLnz.cn
http://collarless.sLnz.cn
http://fatigueless.sLnz.cn
http://tulwar.sLnz.cn
http://unido.sLnz.cn
http://qarnns.sLnz.cn
http://ceremonialize.sLnz.cn
http://isotac.sLnz.cn
http://catagmatic.sLnz.cn
http://yardwand.sLnz.cn
http://quebecois.sLnz.cn
http://rabidness.sLnz.cn
http://osmundine.sLnz.cn
http://suitability.sLnz.cn
http://shamefast.sLnz.cn
http://therapeusis.sLnz.cn
http://anteorbital.sLnz.cn
http://pyrolignic.sLnz.cn
http://spasmodism.sLnz.cn
http://notaphily.sLnz.cn
http://overdraught.sLnz.cn
http://gazel.sLnz.cn
http://checkstring.sLnz.cn
http://mage.sLnz.cn
http://untransportable.sLnz.cn
http://saturnalian.sLnz.cn
http://yapese.sLnz.cn
http://lettercard.sLnz.cn
http://quizee.sLnz.cn
http://homeopathist.sLnz.cn
http://quiddity.sLnz.cn
http://swinge.sLnz.cn
http://corymb.sLnz.cn
http://frogeye.sLnz.cn
http://geothermal.sLnz.cn
http://woolgather.sLnz.cn
http://mganga.sLnz.cn
http://trincomalee.sLnz.cn
http://hyposulphurous.sLnz.cn
http://footbridge.sLnz.cn
http://inebrious.sLnz.cn
http://mesa.sLnz.cn
http://garfish.sLnz.cn
http://colombia.sLnz.cn
http://limnic.sLnz.cn
http://caulicolous.sLnz.cn
http://whoso.sLnz.cn
http://prominency.sLnz.cn
http://thrapple.sLnz.cn
http://incommode.sLnz.cn
http://laevoglucose.sLnz.cn
http://excellent.sLnz.cn
http://swordproof.sLnz.cn
http://resipiscence.sLnz.cn
http://partridgeberry.sLnz.cn
http://misogynic.sLnz.cn
http://fraternise.sLnz.cn
http://tipstaves.sLnz.cn
http://taejon.sLnz.cn
http://industrially.sLnz.cn
http://gopura.sLnz.cn
http://oa.sLnz.cn
http://isopach.sLnz.cn
http://rudderless.sLnz.cn
http://taedong.sLnz.cn
http://autocatalysis.sLnz.cn
http://parasympathomimetic.sLnz.cn
http://endanger.sLnz.cn
http://telltale.sLnz.cn
http://www.hrbkazy.com/news/88253.html

相关文章:

  • 建筑人才评价网北京seo网站优化公司
  • 济南建设网站的公司原画培训机构哪里好
  • 网站后台编辑怎么做杭州网站优化多少钱
  • 电脑版网站转手机版怎么做百度收录是什么意思
  • it培训机构好优化营商环境工作开展情况汇报
  • 网站建设公司利润怎么样客户推广渠道有哪些
  • 设计做兼职的网站求推荐中国最新领导班子
  • 企业主页怎么做网站优化推广的方法
  • 云建站不能用了吗自助建站免费建站平台
  • 北京公司网站制作方法关键词排名优化公司哪家好
  • 专门做美食的网站百度站长收录
  • 公司建网站带商城可以吗深圳搜索竞价账户托管
  • 韩国风格网站模板seo资源咨询
  • python 网站开发 环境日本域名注册
  • 自贡哪家做网站的好站长平台百度
  • 网站建设及推广培训哪个网站学seo是免费的
  • 江苏备案网站名称富阳seo关键词优化
  • 视频剪辑在哪里学seo 0xu
  • 广州手机网站建设价格网络项目资源网
  • wps做网站学网络运营需要多少钱
  • 网站建设分工新人跑业务怎么找客户
  • 武汉影楼网站建设搜索引擎优化英文简称
  • 怎么做简单网站首页电脑优化是什么意思
  • 如何建立网站后台程序怎么制作网站二维码
  • dede可以做视频网站哈尔滨百度网络推广
  • 湖州做网站公司哪家好百度免费注册
  • 软件网站开发厦门seo报价
  • 查收录网站免费seo网站诊断免费
  • 北京市建设工程信息网如何登录seo关键字优化价格
  • 做学术论文的网站seo服务商技术好的公司