✍️
mathematics_basic_for_ML
  • README
  • README
    • Summary
    • Geometry
      • EulerAngle
      • Gimbal lock
      • Quaternion
      • RiemannianManifolds
      • RotationMatrix
      • SphericalHarmonics
    • Information
      • Divergence
      • 信息熵 entropy
    • LinearAlgebra
      • 2D仿射变换(2D Affine Transformation)
      • 2DTransformation
      • 3D变换(3D Transformation)
      • ComplexTransformation
      • Conjugate
      • Hessian
      • IllConditioning
      • 逆变换(Inverse transform)
      • SVD
      • det
      • eigendecomposition
      • 矩阵
      • norm
      • orthogonal
      • special_matrix
      • trace
      • vector
    • Mathematics
      • Complex
      • ExponentialDecay
      • average
      • calculus
      • convex
      • derivative
      • 距离
      • function
      • space
      • Formula
        • euler
        • jensen
        • taylor
        • trigonometric
    • Numbers
      • 几何级数
      • SpecialNumbers
    • NumericalComputation
      • ConstrainedOptimization
      • GradientDescent
      • Newton
      • Nominal
      • ODE_SDE
      • Preprocessing
    • Probability
      • bayes
      • distribution
      • expectation_variance
      • 贝叶斯公式
      • functions
      • likelihood
      • mixture_distribution
      • 一些术语
      • probability_distribution
Powered by GitBook
On this page
  • 奇异值分解
  • 奇异值分解的应用 : 非方阵求逆
  • 非方阵求逆的应用

Was this helpful?

  1. README
  2. LinearAlgebra

SVD

奇异值分解

奇异值分解,(singular value decomposition, SVD),将矩阵分解为奇异向量和奇异值。

A=UDVTA = UDV^TA=UDVT

AAA:m×nm \times nm×n,是任意矩阵,可以不是方阵 UUU:m×mm \times mm×m,矩阵中的列向量称为左奇异向量,也是AATAA^TAAT的特征向量 VVV:n×nn \times nn×n,矩阵中的列向量称为右奇异向量,也是ATAA^TAATA的特征向量 DDD:m×nm \times nm×n,由λ\lambdaλ组成的对角矩阵,λ\lambdaλ是A的奇异值,是AAT的特征值\sqrt {AA^T\text{的特征值}}AAT的特征值​,是ATA的特征值\sqrt {A^TA\text{的特征值}}ATA的特征值​

奇异值分解的应用 : 非方阵求逆

Moore-Penrose伪逆 矩阵A的逆:

A+=VD+UTA^+ = VD^+U^TA+=VD+UT

V、D、U是A奇异分解后得到的矩阵。 D+D^+D+是D中的非零元素取倒数后再转置得到。

非方阵求逆的应用

求解Ax=y, 解得x=ATyx = A^Tyx=ATy 如果方程有多个解,x是多个解中∣∣x∣∣2||x||_2∣∣x∣∣2​最小的 如果方程没有解,x使得∣∣Ax−y∣∣2||Ax-y||_2∣∣Ax−y∣∣2​最小

Previous逆变换(Inverse transform)Nextdet

Last updated 2 years ago

Was this helpful?