Internal
problem
ID
[18583]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
63.
Problems
at
page
196
Problem
number
:
1
Date
solved
:
Saturday, February 22, 2025 at 09:30:38 PM
CAS
classification
:
[[_3rd_order, _missing_x]]
Solve
Time used: 0.025 (sec)
The characteristic equation is
The roots of the above equation are
Therefore the homogeneous solution is
The fundamental set of solutions for the homogeneous solution are the following
`Methods for third order ODEs: --- Trying classification methods --- trying a quadrature checking if the LODE has constant coefficients <- constant coefficients successful`
Solving time : 0.003
(sec)
Leaf size : 19
dsolve(diff(diff(diff(y(x),x),x),x)-diff(diff(y(x),x),x)-diff(y(x),x)+y(x) = 0,y(x),singsol=all)
Solving time : 0.003
(sec)
Leaf size : 25
DSolve[{D[y[x],{x,3}]-D[y[x],{x,2}]-D[y[x],x]+y[x]==0,{}},y[x],x,IncludeSingularSolutions->True]
Solving time : 0.191
(sec)
Leaf size : 15
Python version: 3.13.1 (main, Dec 4 2024, 18:05:56) [GCC 14.2.1 20240910] Sympy version 1.13.3
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - Derivative(y(x), x) - Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Eq(y(x), C3*exp(-x) + (C1 + C2*x)*exp(x))