Diff Eq Solution 0Fc559
1. **State the problem:** Solve the differential equation $$y'' + 2y' + y = 0$$ with initial conditions $$y(0) = 2$$ and $$y'(0) = 10$$.
2. **Characteristic equation:** For a second-order linear homogeneous differential equation with constant coefficients, we use the characteristic equation:
$$r^2 + 2r + 1 = 0$$
3. **Solve the characteristic equation:**
$$r^2 + 2r + 1 = (r+1)^2 = 0$$
So, $$r = -1$$ is a repeated root.
4. **General solution:** For repeated roots $$r$$, the general solution is:
$$y = (C_1 + C_2 x)e^{rx} = (C_1 + C_2 x)e^{-x}$$
5. **Apply initial conditions:**
- At $$x=0$$, $$y(0) = C_1 = 2$$
- Derivative:
$$y' = C_2 e^{-x} - (C_1 + C_2 x)e^{-x} = (C_2 - C_1 - C_2 x)e^{-x}$$
At $$x=0$$:
$$y'(0) = (C_2 - C_1) = 10$$
Substitute $$C_1 = 2$$:
$$C_2 - 2 = 10 \implies C_2 = 12$$
6. **Final solution:**
$$y = (2 + 12x)e^{-x}$$