Internal
problem
ID
[22048]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Examination
II.
page
256
Problem
number
:
1
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:23:10 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=k^2*diff(diff(y(x),x),x)+2*k*diff(y(x),x)+(k^2+1)*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=k^2*D[y[x],{x,2}]+2*k*D[y[x],x]+(k^2+1)*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*Derivative(y(x), (x, 2)) + 2*k*Derivative(y(x), x) + (k**2 + 1)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)