Internal
problem
ID
[183]
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
:
5
Date
solved
:
Saturday, March 29, 2025 at 04:38:40 PM
CAS
classification
:
[_separable]
ode:=3*y(x)+x^4*diff(y(x),x) = 2*x*y(x); dsolve(ode,y(x), singsol=all);
ode=3*y[x]+x^4*D[y[x],x]==2*x*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**4*Derivative(y(x), x) - 2*x*y(x) + 3*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)