Internal
problem
ID
[6541]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
12.
VARIATION
OF
PARAMETERS.
Supplementary
Problems.
page
109
Problem
number
:
Problem
12.15
Date
solved
:
Sunday, March 30, 2025 at 11:06:55 AM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=x^2*diff(diff(y(x),x),x)-x*diff(y(x),x) = x^3*exp(x); dsolve(ode,y(x), singsol=all);
ode=x^2*D[y[x],{x,2}]-x*D[y[x],x]==x^3*Exp[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**3*exp(x) + x**2*Derivative(y(x), (x, 2)) - x*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)