Чому міркування домочадців не можуть діагоналізувати матрицю?


16

При обчисленні QR-факторизації на практиці використовується відображення Householder для нульового виведення нижньої частини матриці. Я знаю, що для обчислення власних значень симетричних матриць найкраще, що ви можете зробити з відображеннями Householder, - це отримати його в тридіагональну форму. Чи існує очевидний спосіб зрозуміти, чому його не можна повністю діагоналізувати таким чином? Я намагаюся пояснити це просто, але я не можу придумати чітку презентацію.

Відповіді:


12

При обчисленні власних значень симетричної матриці найкраще, що можна зробити з рефлектором Householder, - це привід M до тридіагональної форми. Як уже згадувалося в попередній відповіді , тому що М симетрична існує ортогональное перетворення подібності , яке призводить до діагональної матриці, тобто D = S T M S . Було б зручно, якби ми могли знайти дію невідомої ортогональної матриці S суворо за допомогою рефлекторів Householder, обчисливши послідовність відбивачів і застосувавши H T зліва на M і HМRн×нММD=SТМSSНТМНвід права на . Однак це неможливо через те, як побудований відбивач побутових пристроїв нульових стовпців. Якби ми обчислили рефлектор Householder, щоб нуль вийшов з усіх цифр нижче M 11, ми знаходимо M = (ММ11 Але тепер записи M 12 - M 1 n були змінені відбивачем H T 1, застосованим зліва. Таким чином, коли ми застосуємо H 1 праворуч, він більше не дорівнює нулю першому рядкуM,залишивши лише M 11 . Замість цього отримаємо H T 1 M= (

М=()Н1ТМ=(''''0''''0''''0''''0'''').
М12-М1нН1ТН1ММ11 Там, де ми не тільки не нульові рядки, але ми можемо зруйнувати нульову структуру, яку ми щойно ввели за допомогою відбивача H T 1 .
Н1ТМ=(''''0''''0''''0''''0'''')Н1ТМН1=('''').
Н1Т

МН1Т

М=()Н1ТМ=('''''0''''0''''0'''').
H1TM=(000)H1TMH1=(000000).

Applied recursively this allows us to drive M to a tridiagonal matrix T. You can complete the diagonalization of M efficiently, as was mentioned previously, using Jacobi or Givens rotations both of which are found in the Golub and Van Loan book Matrix Computations. The accumulated actions of the sequence of Householder reflectors and Jacobi or Givens rotations allows us to find the action of the orthogonal matrices ST and S without explicitly forming them.


11

As the Comments to other Answers clarify, the real issue here is not a shortcoming of Householder matrices but rather a question as to why iterative rather than direct ("closed-form") methods are used to diagonalize (real) symmetric matrices (via orthogonal similarity).

Indeed any orthogonal matrix can be expressed as a product of Householder matrices, so if we knew the diagonal form of a symmetric matrix (its eigenvalues), we could solve for a complete set of orthonormalized eigenvectors and represent the corresponding change of basis matrix as a product of Householder transformations in polynomial time.

So let's turn to Victor's parenthetical comment "other than Abel's theorem" because we are effectively asking why iterative methods should be used find the roots of a polynomial rather than a direct method. Of course the eigenvalues of a real symmetric matrix are the roots of its characteristic polynomial, and it is possible to go in the other direction as well. Given a real polynomial with only real roots, it is possible to construct a tridiagonal symmetric companion matrix from a Sturm sequence for the polynomial. See also that poster Denis Serre's Exercise 92 in this set. This is rather nice for showing the equivalence of those problems since we've seen (@AndrewWinters) the direct application of Householder matrices will tridiagonalize a real symmetric matrix.

Analysis of the arithmetic complexity for an iterative (root isolation) method is given in Reif (1999), An Efficient Algorithm for the Real Root and Symmetric Tridiagonal Eigenvalue Problems. Reif's approach improves on tailored versions of QR for companion matrices, giving O(nlog3n) instead of O(n2) complexity.

The Abel-Galois-Ruffini Theorem says that no general formula for roots of polynomials above degree four can be given in terms of radicals (and usual arithmetic). However there are closed forms for roots in terms of more exotic operations. In principle one might base eigenvalue/diagonalization methods on such approaches, but one encounters some practical difficulties:

  1. The Bring radical (aka ultraradical) is a function of one variable, in that respect like taking a square root. Jerrad (c. 1835) showed that solving the general quintic could be reduced to solving t5+ta=0, so that univariate function t(a) (used in addition to radicals and other usual arithmetic) allows all quintics to be solved.

  2. This breaks down with degree six polynomials and above, although various ways can be found to solve them using functions of just two variables. Hilbert's 13th Problem was the conjecture that general degree seven polynomials could not be solved using only functions of at most two variables, but in 1957 V.I. Arnold showed they could. Among the multivariable function families that can be used to get solutions to arbitrary degree polynomials are Mellin integrals, hypergeometric and Siegel theta functions.

  3. Besides implementing somewhat exotic special functions of more than one argument, we need direct methods for solving polynomials which work for general degree n rather than ad hoc or degree specific methods. Guàrdia (2002) gives "a very simple expression of the roots of a polynomial of arbitrary degree in terms of derivatives of hyperelliptic theta functions." However this approach requires making choices of Weierstrass points on hyperelliptic curve Cf:Y2=f(x) where all roots of polynomial f(x) are sought. A good choice leads to expressing less than half of those roots, and it appears this approach requires repeated trials to get all of them. Each trial involves solving a homogeneous linear system at O(n3) cost.

Therefore the indirect/iterative methods for isolating real roots (equiv. eigenvalues of symmetric matrices), even to high precision, currently have practical advantages over the known direct/exact methods for these problems.


Some notes: 1. a practical method for building the tridiagonal companion matrix from Sturm sequences was outlined in papers by Fiedler and Schmeisser; I gave a Mathematica implementation here, and it should not be too hard to implement in a more traditional language.
JM

2. Що стосується підходу "тета-функції" для коренів многочлена (що, я згоден, є занадто непростим для практичного використання), Умемура окреслює підхід, використовуючи тета-функції Рімана .
JM

2

For what reason do you assume that this is impossible?

Any symmetric real matrix S can be orthogonally diagonalized, i.e. S=GDGt, where G is orthogonal and D is diagonal.

Any orthogonal matrix of size n×n can be constructed as a product of at most n such reflections.Wikipedia. Therefore you have this decomposition.

I am not sure about the last statement, I just cite it (and I think it is correct). As far as I understand your question, it boils down to whether any orthogonal matrix can be decomposed into a sequence of Householder transforms.


2
I should have been more specific. The first step to diagonalizing a symmetric matrix is applying Householder until it is tridiagonal. Next, QR iterations are performed. This process cannot be completed using only closed-form Householder transformations. Why? (other than Abel's theorem)
Віктор Лю

1
You can do it with Jacobi rotations. Golub and Van Loan write that Jacobi is the same as Givens. Householder is just another way of doing Givens. In practice, the "correct" way might be with QR if it is faster.
power

1

Якщо власні значення вже відомі (за попереднім розрахунком на основі звичайного підходу), можна використовувати їх для тріангулізації несиметричної матриці (або діагоналізації симетричної матриці) твором на н-1Роздуми домочадців. Вкй крок кту колону доводять до трикутної форми. (Це також забезпечує простий індуктивний доказ існування факторизації Шура.)

Це насправді корисно для методів, коли неодноразово потрібна ортогінальна матриця в чисельно стабільній факторній формі.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.