1. Homogeneous Initial Value Problem
Engineering StudentBackground
Analyzing a damped system governed by y'' − 3y' + 2y = 0 with initial state y(0) = 1 and initial derivative y'(0) = 0.
Problem
Determine the exact particular trajectory satisfying both initial conditions.
How to use
Set a = 1, b = -3, c = 2, select forcing 'None', and set x0 = 0, y0 = 1, y0prime = 0.
a = 1, b = -3, c = 2, forcing = 'none', x0 = 0, y0 = 1, y0prime = 0Outcome
Finds roots r₁ = 2 and r₂ = 1, computes yh = C1·e^(2x) + C2·e^x, and solves for C1 = -1 and C2 = 2 to output y = -e^(2x) + 2e^x.