Internal
problem
ID
[6232]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
25
Date
solved
:
Sunday, March 30, 2025 at 10:44:09 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=3*x^2*y(x)+x^3*diff(y(x),x) = 0; ic:=y(1) = 2; dsolve([ode,ic],y(x), singsol=all);
ode=3*x^2*y[x]+x^3*D[y[x],x]==0; ic={y[1]==2}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**3*Derivative(y(x), x) + 3*x**2*y(x),0) ics = {y(1): 2} dsolve(ode,func=y(x),ics=ics)