Internal
problem
ID
[3531]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode,
second
edition,
2000
Section
:
1.6,
page
50
Problem
number
:
2
Date
solved
:
Sunday, March 30, 2025 at 01:46:17 AM
CAS
classification
:
[_linear]
ode:=x^2*diff(y(x),x)-4*x*y(x) = x^7*sin(x); dsolve(ode,y(x), singsol=all);
ode=x^2*D[y[x],x]-4*x*y[x]==x^7*Sin[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**7*sin(x) + x**2*Derivative(y(x), x) - 4*x*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)