Internal
problem
ID
[3168]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
20,
page
90
Problem
number
:
24
Date
solved
:
Tuesday, March 04, 2025 at 04:04:35 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=4*diff(diff(y(x),x),x)-4*diff(y(x),x)+y(x) = exp(1/2*x)*ln(x); dsolve(ode,y(x), singsol=all);
ode=4*D[y[x],{x,2}]-4*D[y[x],x]+y[x]==Exp[x/2]*Log[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - exp(x/2)*log(x) - 4*Derivative(y(x), x) + 4*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)