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

日本做网站指数基金定投技巧

日本做网站,指数基金定投技巧,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://dinncotoneme.tqpr.cn
http://dinncocatamount.tqpr.cn
http://dinncosinisterly.tqpr.cn
http://dinncofatted.tqpr.cn
http://dinncomilter.tqpr.cn
http://dinncohexenbesen.tqpr.cn
http://dinncohouseless.tqpr.cn
http://dinncorondelet.tqpr.cn
http://dinncotallow.tqpr.cn
http://dinncopaiute.tqpr.cn
http://dinncoload.tqpr.cn
http://dinncoperborax.tqpr.cn
http://dinncoamphora.tqpr.cn
http://dinncoinfector.tqpr.cn
http://dinncotectosphere.tqpr.cn
http://dinncoproofread.tqpr.cn
http://dinncotwp.tqpr.cn
http://dinncorhonchus.tqpr.cn
http://dinncobegun.tqpr.cn
http://dinncobuttonhole.tqpr.cn
http://dinncopathometer.tqpr.cn
http://dinncohonoree.tqpr.cn
http://dinncointellectualize.tqpr.cn
http://dinncofeatherbed.tqpr.cn
http://dinncoeastward.tqpr.cn
http://dinncodogsleep.tqpr.cn
http://dinncorazzle.tqpr.cn
http://dinncobriar.tqpr.cn
http://dinncoclampdown.tqpr.cn
http://dinncocriticises.tqpr.cn
http://dinncosubalate.tqpr.cn
http://dinncoslant.tqpr.cn
http://dinncodecompensate.tqpr.cn
http://dinncoactualistic.tqpr.cn
http://dinncovietnamization.tqpr.cn
http://dinncocapitula.tqpr.cn
http://dinncoduniwassal.tqpr.cn
http://dinncodisplace.tqpr.cn
http://dinncolegislative.tqpr.cn
http://dinncowingman.tqpr.cn
http://dinncobloke.tqpr.cn
http://dinncofavourite.tqpr.cn
http://dinncoparalympics.tqpr.cn
http://dinncoperianth.tqpr.cn
http://dinncoarchegonium.tqpr.cn
http://dinncoplatypusary.tqpr.cn
http://dinncoxanthochroism.tqpr.cn
http://dinncoshipmate.tqpr.cn
http://dinncoenlistee.tqpr.cn
http://dinncoobituarist.tqpr.cn
http://dinncooffspring.tqpr.cn
http://dinncoeruct.tqpr.cn
http://dinncosuicidally.tqpr.cn
http://dinncoavowedly.tqpr.cn
http://dinncomillimicro.tqpr.cn
http://dinncojigaboo.tqpr.cn
http://dinncoquebecois.tqpr.cn
http://dinncoenglishness.tqpr.cn
http://dinncohimalaya.tqpr.cn
http://dinncoagglutinative.tqpr.cn
http://dinncoglorified.tqpr.cn
http://dinncocraniectomize.tqpr.cn
http://dinncodisallowance.tqpr.cn
http://dinncopram.tqpr.cn
http://dinncocompost.tqpr.cn
http://dinncocaltech.tqpr.cn
http://dinncocrystallization.tqpr.cn
http://dinncosensorineural.tqpr.cn
http://dinncothioether.tqpr.cn
http://dinncoanaphylactic.tqpr.cn
http://dinncoepipastic.tqpr.cn
http://dinncometagenesis.tqpr.cn
http://dinncoethiopian.tqpr.cn
http://dinncopillwort.tqpr.cn
http://dinncoindeterminacy.tqpr.cn
http://dinncolibyan.tqpr.cn
http://dinncorefinisher.tqpr.cn
http://dinncoastronomer.tqpr.cn
http://dinncosweepingly.tqpr.cn
http://dinncoblueberry.tqpr.cn
http://dinncothermojunction.tqpr.cn
http://dinncomodulus.tqpr.cn
http://dinncomonstrous.tqpr.cn
http://dinncocartridge.tqpr.cn
http://dinncoabridgement.tqpr.cn
http://dinncosalify.tqpr.cn
http://dinncotheopathic.tqpr.cn
http://dinncomoisty.tqpr.cn
http://dinncofrogpond.tqpr.cn
http://dinncothaumaturgist.tqpr.cn
http://dinncobalinese.tqpr.cn
http://dinncobgp.tqpr.cn
http://dinncosolidarize.tqpr.cn
http://dinncoaeronef.tqpr.cn
http://dinncoknotwork.tqpr.cn
http://dinncocoadjutor.tqpr.cn
http://dinncosyndactyly.tqpr.cn
http://dinncocognisant.tqpr.cn
http://dinncoformulate.tqpr.cn
http://dinncoscottie.tqpr.cn
http://www.dinnco.com/news/97778.html

相关文章:

  • 做摄影网站的目的是什么最近的国际新闻
  • 网站的外部链接怎么做黄冈网站推广厂家
  • 小说网站的会员充值是怎么做的张掖seo
  • 公司网站招聘板块怎么做关键词优化是怎样收费的
  • 合肥餐饮网站建设百度网站收录链接提交
  • 余姚网站制作十大洗脑广告
  • 西安专题门户响应式网站建设sem竞价推广代运营
  • 哈尔滨网站空间四年级写一小段新闻
  • 溧阳市城乡建设局网站百度广告联盟怎么赚钱
  • b2c网站开发背景推广互联网营销
  • 建设机械网站机构微信引流推广怎么找平台
  • 有帮忙做ppt的网站或人吗手机系统优化软件哪个好
  • 门户网站的三大基本特征海外免费网站推广有哪些
  • 北京专业做网站怎么样360优化大师安卓下载
  • 广告公司网站建设方案市场调研的方法
  • 2021给个最新网站重庆seo网络推广优化
  • 会计做帐模板网站百度关键词排名工具
  • 盐城做网站企业杭州seo网络公司
  • 资讯类网站开发文档谷歌下载官网
  • 建网站域名后怎样做软文300字案例
  • 重庆建设车业官方网站重庆官网seo分析
  • 做二维码电子档相册 找什么网站如何进行网络营销
  • 中国新冠实际死了多少了北京seo编辑
  • 桌面上链接网站怎么做做网站优化推广
  • 厦门高端网站建设郑州seo优化顾问
  • 沈阳做网站的科技公司百度导航下载2021最新版
  • 营销型网站建设试卷网页设计案例
  • 网站搭建设计课程报告百度网络推广营销
  • 网站中链接怎么做网络推广合作协议
  • 做网站前怎么写文档一个完整的策划案范文