Additional Exercises for Chapter 9: Orthogonality

Find an orthonormal basis for the span of each of the following sets of vectors.

(a)

Click the arrow to see the answer.

(b)

Click the arrow to see the answer.

(c)

Click the arrow to see the answer.

Using the Gram Schmidt process find an orthonormal basis for the following span:

Click the arrow to see the answer.

Using the Gram Schmidt process find an orthonormal basis for the following span:

Click the arrow to see the answer.

The set is a subspace of Find an orthonormal basis for this subspace.
In each case, write as the sum of a vector in and a vector in .
,

Click the arrow to see the answer.

Click the arrow to see the answer.

Click the arrow to see the answer.

Normalize the rows to make each of the following matrices orthogonal.

Click the arrow to see the answer.

, not both zero

Click the arrow to see the answer.

Click the arrow to see the answer.

Click the arrow to see the answer.

Find the eigenvalues and an orthonormal basis of eigenvectors for
Find the eigenvalues and an orthonormal basis of eigenvectors for
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that

Click the arrow to see the answer.

Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .

Click the arrow to see the answer.

Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for Diagonalize by finding an orthogonal matrix and a diagonal matrix such that .
Find the eigenvalues and an orthonormal basis of eigenvectors for the matrix
Find the eigenvalues and an orthonormal basis of eigenvectors for the matrix
Explain why a matrix is symmetric if and only if there exists an orthogonal matrix such that for a diagonal matrix.
Show that if is a real symmetric matrix and and are two different eigenvalues, then if is an eigenvector for and is an eigenvector for then Also all eigenvalues are real. Supply reasons for each step in the following argument. First and so This shows that all eigenvalues are real. It follows all the eigenvectors are real. Why? Now let and be given as above.   and so Why does it follow that

Click the arrow to see the answer.

Challenge Exercises

If is a subspace of , show that .
If is a subspace of , show how to find an matrix such that .
If and are subspaces, define to be the set of all possible sums of elements of with elements of . Is a subspace? Show that .
Think of as consisting of row vectors.
Let be an matrix, and let . Show that the following are equivalent.
(a)
( is a projection matrix).
(b)
for all and in .
(c)
for all in .
If is a projection matrix, show that is also a projection matrix.
If and and are projection matrices, show that is also a projection matrix.
If is and is invertible, show that is a projection matrix.
Consider where one of . Show that the characteristic polynomial (see Definition def:char_poly_complex) is given by , where , and find an orthogonal matrix such that is diagonal.

Click the arrow to see the answer.

Consider . Show that the characteristic polynomial (see Definition def:char_poly_complex) is given by , and find an orthogonal matrix such that is diagonal.
Given , show that the characteristic polynomial (see Definition def:char_poly_complex) is given by , and find an orthogonal matrix such that is diagonal.
Consider . Show that the characteristic polynomial (see Definition def:char_poly_complex) is given by , and find an orthogonal matrix such that is diagonal.

Octave Exercises

Use Octave to check your work on Problems prb:9.1 to prb:9.12. The first steps of prb:9.2 are in the code below. See if you can finish the rest of the problem.

To use Octave, go to the Sage Math Cell Webpage, copy the code below into the cell, select OCTAVE as the language, and press EVALUATE.

A=[4 1 -2; 1 4 -2; -2 -2 7];
 
 
[Q,D]=eig(A)  
 
% The eigenvalue 3 has algebraic multiplicity 2 and geometric multiplicity 2  
% One way to see this is to compute:  
rref(A-3*eye(size(A)))  
 
% By hand, we will not get the same eigenvectors for 3 that Octave did, and we will need to  
% orthogonalize them using Gram-Schmidt.  Octave does so automatically.  Observe:  
transpose(Q)*Q  
 
% And so we can check that the following is (approximately) the same as D:  
transpose(Q)*A*Q

Bibliography

Some of these problems come from Section 7.4 of Ken Kuttler’s A First Course in Linear Algebra. (CC-BY)

Ken Kuttler, A First Course in Linear Algebra, Lyryx 2017, Open Edition, pp. 433–438.

Other problems come from the second part of Section 8.1 of Keith Nicholson’s Linear Algebra with Applications. (CC-BY-NC-SA)

W. Keith Nicholson, Linear Algebra with Applications, Lyryx 2018, Open Edition, p. 422–423