Internal
problem
ID
[17936]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
143
(page
213)
Date
solved
:
Monday, March 31, 2025 at 04:51:53 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(x),x),x)+p__1*diff(y(x),x)+p__2*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+p1*D[y[x],x]+p2*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") p__1 = symbols("p__1") p__2 = symbols("p__2") y = Function("y") ode = Eq(p__1*Derivative(y(x), x) + p__2*y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)