A) Find Eigen values and Eigen vectors for the matrix below.
A = ( 2 3 ; 1 5 ) this is a 2x2 matrix with 2 3 on the first row
and 1 5 on the second row
(B) Write down the spectral decomposition of the matrix A.
(C) Is the matrix A positive definite matrix? Why?
Given the matrix A (2x2 matrix taking the first two column
vectors from the input file), compute the followings. Λ: the
diagonal matrix whose diagonal elements are the corresponding
eignevalues Λii = λi for i=1,2 R: the 2x2 matrix whose ith column
vector is the eigenvector corresponding to λi for i=1,2 RΛRT: the
matrix compositions 1/0: the comparison between A and RΛRT (is A=
RΛRT?) Your output should have seven lines where the first two
lines correspond to the 2x2...
Write a program which reads the matrix A (2x2 matrix taking the
first two column vectors from the input file) and the vector
b (the third column vector) and solve for
x in Ax=b for
general A.
If there is a unique solution, your output should be a 2x2
matrix with two lines and two numbers per line. The output should
contain numbers with up to four significant digits. If the system
is unsolvable or inconsistent, then your output should...
Given the vectors u1 = (2, −1, 3) and u2 = (1, 2, 2) find a
third vector u3 in R3 such that
(a) {u1, u2, u3} spans R3
(b) {u1, u2, u3} does not span R3
Solve schroedinger's equation for a three dimensional harmonic
oscillator and obtain its eigen values and eigen functions.Are the
energy levels degenerate? Explain what is the minimum uncertainty
in its location in the lowest state.
(2) A matrix A is given. Find, if possible, an invertible matrix
P and a diagonal matrix D such that P −1AP = D. Otherwise, explain
why A is not diagonalizable.
(a) A = −3 0 −5
0
2 0
2
0 3
(b) A = 2 0 −1
1
3 −1
2
0 5
(c) A = 1 −1 2
−1
1 2
2
2 2