-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHW6-ProblemStatements.tex
More file actions
110 lines (102 loc) · 3.42 KB
/
HW6-ProblemStatements.tex
File metadata and controls
110 lines (102 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
\documentclass[12pt]{article}
\usepackage{lingmacros}
\usepackage{tree-dvips}
\usepackage{amsmath}
\usepackage{accents}
\newcommand{\ubar}[1]{\underaccent{\bar}{#1}}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=blue,
filecolor=magenta,
urlcolor=cyan,
}
\begin{document}
{\centering
\textbf{SIE 550 (Linear) Systems Theory\\Homework \#6 - Due date: Wednesday, May 3, 2017 \newline}\par
}
\noindent
\textbf{Problem 1:} Apply the corollary of Theorem 9.1 for system ({\em Linear Systems Theory}) Chapter 9, Problem 6 (page 458)
$$
\dot{\bar{x}}=
\begin{pmatrix}
1 & 1 \\
2 & 2
\end{pmatrix}
\bar{x}+
\begin{pmatrix}
1 \\
0
\end{pmatrix} u
$$
and polynomial $p(\lambda)=\lambda^2+2\lambda+1$. Select $c^T=(1, 0)$.\\
Confirm your hand calculation via MATLAB (use "place" or "acker" command depending on the situation). Assume this is a regulation problem and provide a MATLAB simulation that shows the behavior of the states and of the output of the systems form the following initial conditions $x(0)=[1,1]^T$\\
\noindent
\textbf{Problem 2:} Apply the corollary of Theorem 9.1 for system ({\em Linear Systems Theory}) Chapter 9, Problem 7 (page 458)
$$
\dot{\bar{x}}=
\begin{pmatrix}
0 & 1 & 2 \\
0 & 1 & 1 \\
0 & 0 & 2
\end{pmatrix}
\bar{x}+
\begin{pmatrix}
1 \\
2 \\
1
\end{pmatrix} u
$$
and polynomial $p(\lambda)=\lambda^3+1$. Select $c^T=(1, 1, 1)$.\\
Confirm your hand calculation via MATLAB (use "place" or "acker" command depending on the situation). Assume this is a regulation problem and provide a MATLAB simulation that shows the behavior of the states and of the output of the systems form the following initial conditions $x(0)=[1,1,1]^T$\\
\noindent
\textbf{Problem 3:} Apply the corollary of Theorem 9.1 for system ({\em Linear Systems Theory}) Chapter 9, Problem 9 (page 458)
$$
\dot{\bar{x}}=
\begin{pmatrix}
2 & 1 \\
0 & 1 \\
\end{pmatrix}
\bar{x}+
\begin{pmatrix}
1 \\
1
\end{pmatrix} u
$$
and polynomial $p(\lambda)=\lambda^2+\lambda+1$. Select $c^T=(1, 1)$.\\
Confirm your hand calculation via MATLAB (use "place" or "acker" command depending on the situation). Assume this is a regulation problem and provide a MATLAB simulation that shows the behavior of the states and of the output of the systems form the following initial conditions $x(0)=[1,1,0]^T$\\
\noindent
\textbf{Problem 4:} Construct an observer (9.12) for system ({\em Linear Systems Theory}) Chapter 9, Problem 14 (page 459)
$$
\dot{\bar{x}}=
\begin{pmatrix}
0 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 2
\end{pmatrix}
\bar{x}+
\begin{pmatrix}
1 \\
1 \\
1
\end{pmatrix} u
$$
$$y=(1,1,1)\bar{x}$$
Confirm your hand calculation via MATLAB (use "place" or "acker" command depending on the situation). Show the behavior of the observer error dynamics by providing a MATLAB simulation of $\dot{\bar{e}}=(A-K_eC)\bar{e}$ assuming the following initial conditions $\bar{e}(0)=[0,0.5,1]^T$ \\
\noindent
\textbf{Problem 5:} Construct an observer (9.12) for system ({\em Linear Systems Theory}) Chapter 9, Problem 15 (page 459)
$$
\dot{\bar{x}}=
\begin{pmatrix}
2 & 1 \\
0 & 1 \\
\end{pmatrix}
\bar{x}+
\begin{pmatrix}
1 \\
1
\end{pmatrix} u
$$
$$y=(1,1)\bar{x}$$
Confirm your hand calculation via MATLAB (use "place" or "acker" command depending on the situation). Show the behavior of the observer error dynamics by providing a MATLAB simulation of $\dot{\bar{e}}=(A-K_eC)\bar{e}$ assuming the following initial conditions $\bar{e}(0)=[0.5, 0.5]^T$
\end{document}