Question: MATLAB: Diagonalization In this activity you will find the matrix P that diagonalizes a given matrix and the resulting diagonal matrix D , and utilize

MATLAB: Diagonalization
In this activity you will find the matrix P that diagonalizes a given matrix and the resulting diagonal matrix D, and utilize these to
indirectly find a higher power of the given matrix.
Consider the matrix A.
Higher powers of A can be found indirectly using the diagonalization matrix P and resulting diagonal matrix D. These matrices were
found using the eig() command in zyLab 6.2. The matrix A to the kth power can be indirectly calculated by Ak=PDkP-1.
A=[11;-24]
[P,D]=eig(A)
%Indirectly find A5 using P and D. The command power({:D,5) raises every element in the diagonal matrix D
%to the fifth power.
A5indirectly =P** power (D,5)** inv (P)
%The same result can be found directly, but the direct method is not computationally practical for higher powers.
A5directly =A5
Use the following matrix for this activity.
C=[122212221]
 MATLAB: Diagonalization In this activity you will find the matrix P

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!