Internal
problem
ID
[198]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Review
problems
at
page
98
Problem
number
:
20
Date
solved
:
Saturday, March 29, 2025 at 04:44:20 PM
CAS
classification
:
[_linear]
ode:=x*diff(y(x),x)+3*y(x) = 3/x^(3/2); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]+3*y[x]==3*x^(-3/2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x) + 3*y(x) - 3/x**(3/2),0) ics = {} dsolve(ode,func=y(x),ics=ics)