Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

4. Support and enliven your speech with effective research

Answered: 1 week ago

Question

3. Choose an appropriate topic and develop it

Answered: 1 week ago