Problem 16
Question
Exercise 18.1 .16 Find the particular solution, \(y_{p}=A \cos 0.3 t+B \sin 0.3 t,\) and \(y_{h},\) the solution to the homogeneous equation, for the systems below. a. $$ y^{\prime \prime}+3 y^{\prime}+2 y=\cos 0.3 t \quad \text { b. } \quad y^{\prime \prime}+0.1 y^{\prime}+0.12 y=\cos 0.3 t $$ $$ \text { c. } y^{\prime \prime}+0.05 y^{\prime}+0.0004 y=\cos 0.3 t $$ d. \(y^{\prime \prime}+0.13 y^{\prime}+0.0036 y=\cos 0.3 t\) The algebra to solve these problems is extensive and you will find the MATLAB code below helpful at least to read and at best to run. It is written for the case of distinct real roots, and the system is initially at rest: \(y(0)=0, y^{\prime}(0)=0 .\) NOTE: \(\omega \neq 0.3\) in the code. Solutions to \(y^{\prime \prime}+0.1 y^{\prime}+0.12 y=\cos \omega t, y(0)=0, y^{\prime}(0)=0,\) for \(\omega=0.1\) and \(0.2 .\) The blue curves are the solution; the green curves are the solutions to the homogeneous equation, \(y^{\prime \prime}+0.1 y^{\prime}+0.125 y=0,\) and the red curves are the particular solutions. The solution curves (blue) are asymptotic to the particular solutions (red).
Step-by-Step Solution
VerifiedKey Concepts
Particular Solutions
The particular solution takes on a form inspired by the inhomogeneous part of the equation, which is often a trigonometric, exponential, or polynomial function. In our exercise, the forcing function is cosine, prompting a particular solution of the form \(y_p = A \cos 0.3t + B \sin 0.3t\). This form is particularly effective for trigonometric inputs, and involves using derivatives to balance the equation all the way through.
To determine the coefficients \( A \) and \( B \), you need to substitute \( y_p \) and its derivatives into the original differential equation and equate coefficients. This method allows us to match the left and the right side of the equation perfectly, ensuring the solution is valid.
Homogeneous Equations
To solve the homogeneous equation, you must first find its characteristic equation. This is done by assuming a solution of the form \( y = e^{rt} \). Substituting this into the homogeneous equation results in a polynomial equation in terms of \( r \), known as the characteristic equation.
For example, a characteristic equation might look like \( r^2 + 3r + 2 = 0 \), which can be solved using standard algebraic techniques to find the roots \( r_1 \) and \( r_2 \). These roots indicate the form of the complementary solution. If the roots are distinct and real, the solution will be a linear combination of exponentials, such as \( y_h = C_1 e^{-2t} + C_2 e^{-t} \). This approach showcases the natural behaviour of the system without external forces.
Characteristic Equation
By solving this quadratic characteristic equation, you extract the roots, \( r_1 \) and \( r_2 \). These roots provide invaluable information.
- If the roots are real and distinct, the solution takes the form \( y_h = C_1 e^{r_1t} + C_2 e^{r_2t} \).
- If they are real and repeated, such as \( r_1 = r_2 \), the solution becomes \( y_h = (C_1 + C_2t)e^{r_1t} \).
- For complex roots, the solution is \( y_h = e^{\lambda t}(C_1 \cos \beta t + C_2 \sin \beta t) \), where \( \lambda + i\beta \) are the complex roots.