![]()
MATH347 L13: Orthonormal bases
|
New concepts:
Orthonormal vector set
Transforming a basis set into an orthonormal set by Gram-Schmidt
factorization of a matrix
Orthonormal bases for column, null space
![]()
Orthonormal vector set
|
Definition. The Dirac delta symbol is defined as
Definition. A set of vectors is said to be orthonormal if
The column vectors of the identity matrix are orthonormal
Columns of are orthonormal if
![]()
Gram-Schmidt procedure idea
|
Transform columns of into ,
Idea:
Start with an arbitrary direction
Divide by its norm to obtain a unit-norm vector
Choose another direction
Subtract off its component along previous direction(s)
Divide by norm
Repeat the above
![]()
Gram-Schmidt algebra
|
Observe that formulas such as
state: “ is obtained as a linear combination of and ”
Use column structure of
Identify on both sides to obtain
![]()
Gram-Schmidt algorithm
|
Algorithm (Gram-Schmidt)
Given vectors
Initialize ,..,,
for to
;
for +1 to
;
end
end
return
![]()
Orthonormal bases for fundamental matrix spaces
|
Matlab orth returns basis for
>> |
A=[1 -2 1 -1; 1 1 1 -1; 1 0 1 -1]; orth(A) |
Matlab null returns basis for
>> |
A=[1 -2 1 -1; 1 1 1 -1; 1 0 1 -1]; orth(A) |
>> |
rref(A) |
>> |