Method level

Difference between revisions of "Triangular decomposition of a Gram matrix"

From Algowiki
Jump to navigation Jump to search
[unchecked revision][quality revision]
(Created page with "{{level-m}} '''Метод треугольного разложения матрицы Грама''' для нахождения QR-разложения квадратной...")
 
Line 1: Line 1:
 
{{level-m}}
 
{{level-m}}
  
'''Метод треугольного разложения матрицы Грама''' для нахождения QR-разложения квадратной матрицы работает только в условиях гарантированной невырожденности исходной матрицы <math>A</math>. Состоит из трёх частей: нахождение матрицы Грама <math>A^*A</math> столбцов исходной матрицы, [[Метод_Холецкого_(нахождение_симметричного_треугольного_разложения)|нахождение_симметричного_треугольного_разложения]] матрицы Грама <math>A^*A</math> в виде <math>R^*R</math>, нахождение унитарной матрицы <math>Q=AR^{-1}</math>, например, с помощью модифицированной обратной подстановки.
+
The '''triangular decomposition of a Gram matrix''' as a method for finding the QR decomposition of a square matrix <math>A</math> works only if the non-singularity of the original matrix is guaranteed. The method consists of three parts: 1. Construction of the Gram matrix <math>A^*A</math> for the columns of the original matrix. 2. Finding the [[Метод_Холецкого_(нахождение_симметричного_треугольного_разложения)|Cholesky decomposition]] <math>R^*R</math> of the Gram matrix <math>A^*A</math>. 3. Calculation of the unitary matrix <math>Q=AR^{-1}</math> by using, for instance, the modified back substitution.
  
На практике не применяется не только из-за ограничения, связанного с невырожденностью, но и по той простой причине, что обусловленность матрицы Грама квадратична по сравнению с обусловленностью исходной матрицы.
+
The method is not used in practice not only because of the restriction caused by the non-singularity requirement but also for the simple reason that the condition number of the Gram matrix is the square of the condition number of the original matrix.  
  
 
[[Category:Finished articles]]
 
[[Category:Finished articles]]
  
 
[[ru:Метод треугольного разложения матрицы Грама]]
 
[[ru:Метод треугольного разложения матрицы Грама]]

Revision as of 19:17, 5 March 2018


The triangular decomposition of a Gram matrix as a method for finding the QR decomposition of a square matrix [math]A[/math] works only if the non-singularity of the original matrix is guaranteed. The method consists of three parts: 1. Construction of the Gram matrix [math]A^*A[/math] for the columns of the original matrix. 2. Finding the Cholesky decomposition [math]R^*R[/math] of the Gram matrix [math]A^*A[/math]. 3. Calculation of the unitary matrix [math]Q=AR^{-1}[/math] by using, for instance, the modified back substitution.

The method is not used in practice not only because of the restriction caused by the non-singularity requirement but also for the simple reason that the condition number of the Gram matrix is the square of the condition number of the original matrix.