Internal
problem
ID
[8162]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Exercises
1.1
at
page
12
Problem
number
:
1
Date
solved
:
Friday, October 03, 2025 at 02:13:04 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=(1-x)*diff(diff(y(x),x),x)-4*x*diff(y(x),x)+5*y(x) = cos(x); dsolve(ode,y(x), singsol=all);
ode=(1-x)*D[y[x],{x,2}]-4*x*D[y[x],x]+5*y[x]==Cos[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-4*x*Derivative(y(x), x) + (1 - x)*Derivative(y(x), (x, 2)) + 5*y(x) - cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x*Derivative(y(x), (x, 2)) + 5*y(x) - cos(x) + Derivative(y(x), (x, 2)))/(4*x) cannot be solved by the factorable group method