Question: T = [ 0 . 7 5 0 . 3 3 0 . 1 0 ; 0 . 1 0 0 . 5 5 0

T =[0.750.330.10;
0.100.550.02;
0.150.120.88];
x0=[0.440.450.11];
[V,D]= eig(T);
disp('D =');
disp(D);
disp('')
disp('M^k = V*(D.^k)*inv(V)')
disp('D.^k = each element raised to power of k');
disp('As k -> Inf, eigen values in D, other than 1 goes to zero.');
D = zeros(3); D(1,1)=1;
disp('As k -> Inf, D =')
disp(D);
disp('')
disp('V*D*inv(V)=')
M_Inf = V*D/V;
disp(M_Inf);
disp('')
disp('Steady State Vector =');
ssv =[0.35320.10270.5441]';
disp(ssv);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!