Internal
problem
ID
[803]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Chapter
1
review
problems.
Page
78
Problem
number
:
33
(a)
Date
solved
:
Saturday, March 29, 2025 at 10:29:04 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _Bernoulli]
ode:=diff(y(x),x) = 1/4*(-3*x^2-2*y(x)^2)/x/y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == 1/4*(-3*x^2-2*y[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(Derivative(y(x), x) - (-3*x**2 - 2*y(x)**2)/(4*x*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)