Internal
problem
ID
[18454]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
1.
section
5.
Problems
at
page
19
Problem
number
:
4
Date
solved
:
Thursday, March 13, 2025 at 12:00:04 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)+diff(y(x),x)/x+k^2*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+1/x*D[y[x],x]+k^2*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(k**2*y(x) + Derivative(y(x), (x, 2)) + Derivative(y(x), x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)