Defines a second-order linear scalar ODE: y'' = a(t)y' + b(t)y + c(t).
Coefficient a(t) or constant a.
Coefficient b(t) or constant b.
Coefficient c(t) or constant c.
const ode = Chalkboard.diff.linear2(-1, -4, 0);const derivative = ode.rule(0, [3, 2]); // Evaluates a second-order linear equation Copy
const ode = Chalkboard.diff.linear2(-1, -4, 0);const derivative = ode.rule(0, [3, 2]); // Evaluates a second-order linear equation
Defines a second-order linear scalar ODE: y'' = a(t)y' + b(t)y + c(t).