Jump to content

Numerical Analysis/Householder transformation exercises

From Wikiversity

Householder's method Exercises

[edit | edit source]

Exercise 1

[edit | edit source]

This exercise will help you in introducing how to perform the Householder's method to transform a symmetric matrix A into the tridiagonal form. All of the notations and computations in this Exercise follow from those in Section 9.3, Numerical Analysis, Burden and Faires, 8th Edition. It's recommended that you read that section before solving the problem. It's also recommended that you read the following useful links
1. Householder's method for symmetric matrices, J. H. Wilkinson, Handbook Series Linear Algebra, Volume 4, Number 1 / December, 1962, Springer Berlin / Heidelberg.
2. Module for Householder Transformations, Mathematics Department, California State University, Fullerton.


Problem
Let

A=[5142132342432332].

Perform Householder's method to bring A into a tridiagonal form.

Solution

Step 1: k = 1 (Meaning: Making 0's for the third and fourth rows of the first column)

1

α=sgn(ak+1,k)j=k+1najk2 is

.

2

r=12(α2ak+1,kα) is

.

3

Now, we are going to find the vector w(1)=[w1(1)w2(1)w3(1)w4(1)]
Set w1(1)=0, we need to find w2(1),w3(1),w4(1)
w2(1)=a2,1α2r=

.
wj(1)=aj,12r for j = 3 and 4 gives
w3(1)=a3,12r=

w4(1)=a4,12r=

4

The orthogonal matrix P1, defined as P1=I2w(1)(w(1))t is (click Submit to see the answer)

5

The new matrix A(1), defined as A(1)=P1AP1, should be in the form A(1)=[0000]
This is the end of Step 1.




Step 2: k = 2 (Meaning: Making 0's for the fourth row of the second column)
In Step 2, we redo the computations in Step 1 with the matrix A=A(1)

1

α=sgn(ak+1,k)j=k+1najk2 is

.

2

r=12(α2ak+1,kα) is

.

3

Now, find the vector w(2)=[w1(2)w2(2)w3(2)w4(2)]
Set w1(2)=w2(2)=0, we need to find w3(2),w4(2)
w3(2)=a2,1α2r=

.
w4(2)=a4,12r=

4

The orthogonal matrix P2, defined as P2=I2w(2)(w(2))t is (click Submit to see the answer)

5

The new matrix A(2), defined as A(2)=P2A(1)P2, should be in the form A(2)=[000000]
This is the end of Step 2.

Now the matrix A(2) is in a tridiagonal form. The Householder's method is complete.

Exercise 2

[edit | edit source]

1

Householder's method is for

Any matrix.
A non-symmetric positive define matrix.
A symmetric matrix.
A non-symmetric diagonally dominant matrix.

2

The goal of Householder's method is for

Finding the determinant of a matrix.
Transforming a matrix to tridiagonal form.
Finding eigenvalues of a matrix.
Finding the LU decomposition of a matrix.

3

How many steps do we need to perform in Householder's method

n steps (where n is the size of the matrix).
2n steps.
n2 steps.
n-2 steps.

4

What should be performed after Householder's method

LU decomposition.
Support Vector Decomposition (SVD).
Power method.
QR decomposition.

5

Will the Householder's method ever fail

Yes
No.


Exercise 3

[edit | edit source]

Problem
Based on the computations performed in Exercise 1, write code in Matlab to perform the Householder's method for an input symmetric matrix A.


Solution



132.235.39.18 19:02, 28 May 2009 (UTC) Nam Nguyen