Question: In this assignment, a third order ODE x + a 2 x + a 1 x + a 0 x = f ( t )

In this assignment, a third order ODE
x+a2x+a1x+a0x=f(t)
can be factored into the combination of a first order ODE
x+1x=g(t)
and a second order ODE
x+2nx+n2x=h(t)
i.e., the characteristic polynomial of the 3 rd order system can be written as the product of the 1 st and 2 nd order characteristc
polynomials
s3+a2s2+a1s+a0=(s+1)(s2+2ns+n2)
Follow the instructions in the script below.
a=randi([11,30]);% random number between 11 and 30
a1=a+randi[20,100]10;% random number between 13 and 40
a2=randi[160,200]100;% random number between 1.6 and 2
% Consider the following 3rd order state-space system:
%dx=A**x+B**u
%y=C**x+D**u
% where
A=[,1,;,,1;-a,-a1,-a2];
B=[0;;1];
C=[1,0,];
D=0;
% Calculate the eigenvalues (Lambda) of the third order system
% Order the eigenvalues such that Lambda =[L1;L2;L3] where
% L1 is the real-valued eienvalue, L2 is the complex eigenvalue with a positive imaginary part,
% and L3 is the complex eigenvalue with a negative imaginary part
Lambda =eig(A);
, order
 In this assignment, a third order ODE x+a2x+a1x+a0x=f(t) can be factored

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!