Solving Linear ODEs
Description
Examples
The general form of a first order linear ODE is given by the following:
linear_ode := diff(y(x),x)+f(x)*y(x)-g(x);
linear_ode≔ⅆⅆxy⁡x+f⁡x⁢y⁡x−g⁡x
where f(x) and g(x) are arbitrary functions. See Differentialgleichungen, by E. Kamke, p. 16. This type of ODE can be solved in a general manner by dsolve as follows:
with⁡DEtools,odeadvisor
odeadvisor
odeadvisor⁡linear_ode
_linear
dsolve⁡linear_ode
y⁡x=∫g⁡x⁢ⅇ∫f⁡xⅆxⅆx+c__1⁢ⅇ∫−f⁡xⅆx
See Also
DEtools
dsolve
quadrature
linear
separable
Bernoulli
exact
homogeneous
homogeneousB
homogeneousC
homogeneousD
homogeneousG
Chini
Riccati
Abel
Abel2A
Abel2C
rational
Clairaut
dAlembert
sym_implicit
patterns
odeadvisor,types
Download Help Document