Example 1: Solve the system [Maple Math] .

> A:=matrix(2,2,[-3,sqrt(2),sqrt(2),-2]);

[Maple Math]

> eigenvals(A);

[Maple Math]

To find eigenvectors we need the column vector [Maple Math] and the identity matrix [Maple Math] . Notice below how we defined [Maple Math] .

> t:=matrix(2,1,[t1,t2]);

[Maple Math]

> E:=array(1..2,1..2,identity);

[Maple Math]

We obtain eigenvectors for the egenvalue -1 by solving the system

[Maple Math] .

> multiply(A+E,t);

[Maple Math]

> solve(-2*t1+2^(1/2)*t2=0,t2);

[Maple Math]

Hence all eigenvectors of the eigenvalue -1 are of the form [Maple Math] .We repeat the same procedure for the eigenvalue -4.

> multiply(A+4*E,t);

[Maple Math]

> solve(t1+2^(1/2)*t2=0,t2)font color=#FF0000>solve(t1+2^(1/2)*t2=0,t2);

[Maple Math]

Hence all eigenvectors of the eigenvalue -4 are of the form [Maple Math] .

Since the eigenvalues are disitinct by setting t1=1 we obtain two independent eigenvectors [Maple Math] and [Maple Math] .Hence two independent solutions of the system are [Maple Math] and [Maple Math] .

/p>