154 CHAPTER 2 TIME-DOMAIN ANALYSIS OF CONTINUOUS-TIME SYSTEMS
β Back to LINEAR SYSTEMS AND SIGNALS Overview
154 CHAPTER 2 TIME-DOMAIN ANALYSIS OF CONTINUOUS-TIME SYSTEMS
In this case the root Ξ» repeats twice. Observe that the characteristic modes in this case are eΞ»*t* and teΞ»*t* . Continuing this pattern, we can show that for the differential equation
the characteristic modes are eΞ»*t* , teΞ»*t* , t 2eΞ»*t* , β¦, t rβ1eΞ»*t* , and that the solution is
Consequently, for a system with the characteristic polynomial
the characteristic modes are eΞ»1*t* , teΞ»1*t* , β¦, t rβ1eΞ»1*t* , eΞ»r+1*t* , β¦, eΞ»Nt and the solution is
COMPLEX ROOTS
The procedure for handling complex roots is the same as that for real roots. For complex roots, the usual procedure leads to complex characteristic modes and the complex form of solution. However, it is possible to avoid the complex form altogether by selecting a real-form of solution, as described next.
For a real system, complex roots must occur in pairs of conjugates if the coefficients of the characteristic polynomial Q(Ξ») are to be real. Therefore, if Ξ± + jΞ² is a characteristic root, Ξ± β jΞ² must also be a characteristic root. The zero-input response corresponding to this pair of complex conjugate roots is
\n(2.7)
For a real system, the response y0(t) must also be real. This is possible only if c1 and c2 are conjugates. Let
This yields
=
=
(2.8)
Therefore, the zero-input response corresponding to complex conjugate roots Ξ± Β± jΞ² can be expressed in a complex form [Eq. (2.7)] or a real form [Eq. (2.8)].
EXAMPLE 2.1 Finding the Zero-Input Response
Find y0(t), the zero-input response of the response for an LTIC system described by
- (a) the simple-root system (D2 + 3D + 2)y(t) = Dx(t) with initial conditions y0(0) = 0 and yΛ0(0) = β5.
- (b) the repeated-root system (D2 + 6D + 9)y(t) = (3D + 5)x(t) with initial conditions y0(0) = 3 and yΛ0(0) = β7.
- (c) the complex-root system (D2 + 4D + 40)y(t) = (D + 2)x(t) with initial conditions y0(0) = 2 and yΛ0(0) = 16.78.
(a) Note that y0(t), being the zero-input response (x(t) = 0), is the solution of (D2 +3D+ 2)y0(t) = 0. The characteristic polynomial of the system is Ξ»2 + 3Ξ» + 2. The characteristic equation of the system is therefore Ξ»2 + 3Ξ» + 2 = (Ξ» + 1)(Ξ» + 2) = 0. The characteristic roots of the system are Ξ»1 = β1 and Ξ»2 = β2, and the characteristic modes of the system are eβt and eβ2*t* . Consequently, the zero-input response is
Differentiating this expression, we obtain
To determine the constants c1 and c2, we set t = 0 in the equations for y0(t) and yΛ0(t) and substitute the initial conditions y0(0) = 0 and yΛ0(0) = β5, yielding
Solving these two simultaneous equations in two unknowns for c1 and c2 yields
Therefore,
(2.9)
This is the zero-input response of y(t). Because y0(t) is present at t = 0β, we are justified in assuming that it exists for t β₯ 0.β
(b) The characteristic polynomial is Ξ»2 + 6Ξ» + 9 = (Ξ» + 3)2, and its characteristic roots are Ξ»1 = β3, Ξ»2 = β3 (repeated roots). Consequently, the characteristic modes of the system are eβ3*t* and teβ3*t* . The zero-input response, being a linear combination of the characteristic modes, is given by
β *y*0(t) may be present even before t = 0β. However, we can be sure of its presence only from t = 0β onward.
We can find the arbitrary constants c1 and c2 from the initial conditions y0(0) = 3 and yΛ0(0) = β7 following the procedure in part (a). The reader can show that c1 = 3 and c2 = 2. Hence,
(c) The characteristic polynomial is Ξ»2 + 4Ξ» + 40 = (Ξ» + 2 β j6)(Ξ» + 2 + j6). The characteristic roots are β2 Β± j6.β The solution can be written either in the complex form [Eq. (2.7)] or in the real form [Eq. (2.8)]. The complex form is y0(t) = c1eΞ»1*t* + c2eΞ»2*t* , where Ξ»1 = β2+j6 and Ξ»2 = β2βj6. Since Ξ± = β2 and Ξ² =6, the real-form solution is [see Eq. (2.8)]
Differentiating this expression, we obtain
To determine the constants c and ΞΈ, we set t = 0 in the equations for y0(t) and yΛ0(t) and substitute the initial conditions y0(0) = 2 and yΛ0(0) = 16.78, yielding
16.78 =
Solution of these two simultaneous equations in two unknowns ccos ΞΈ and csinΞΈ yields
ccos ΞΈ = 2 and csinΞΈ = β3.463
Squaring and then adding these two equations yield
Next, dividing csinΞΈ = β3.463 by ccos ΞΈ = 2 yields
and
Therefore,
For the plot of y0(t), refer again to Fig. B.11c.
β The complex conjugate roots of a second-order polynomial can be determined by using the formula in Sec. B.8-10 or by expressing the polynomial as a sum of two squares. The latter can be accomplished by completing the square with the first two terms, as follows:
EXAMPLE 2.2 Using MATLAB to Find Polynomial Roots
Find the roots Ξ»1 and Ξ»2 of the polynomial Ξ»2 + 4Ξ» + k for three values of k: (a) k = 3, (b) k = 4, and (c) k = 40.
(a) >> r = roots([1 4 3]).β r = -3 -1 For k = 3, the polynomial roots are therefore Ξ»1 = β3 and Ξ»2 = β1. (b) >> r = roots([1 4 4]).β r = -2 -2 For k = 4, the polynomial roots are therefore Ξ»1 = Ξ»2 = β2. (c) >> r = roots([1 4 40]).β r = -2.00+6.00i -2.00-6.00i For k = 40, the polynomial roots are therefore Ξ»1 = β2+j6 and Ξ»2 = β2βj6.
EXAMPLE 2.3 Using MATLAB to Find the Zero-Input Response
Consider an LTIC system specified by the differential equation
Using initial conditions y0(0) = 3 and yΛ0(0) = β7, apply MATLABβs dsolve command to determine the zero-input response when: (a) k = 3, (b) k = 4, and (c) k = 40.