Internal
problem
ID
[3580]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
1,
First-Order
Differential
Equations.
Section
1.2,
Basic
Ideas
and
Terminology.
page
21
Problem
number
:
Problem
31
Date
solved
:
Sunday, March 30, 2025 at 01:51:48 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = (x^2*(1-y(x)^2)+y(x)*exp(y(x)/x))/x/(exp(y(x)/x)+2*x^2*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(x^2*(1-y[x]^2)+y[x]*Exp[y[x]/x])/(x*(Exp[y[x]/x]+2*x^2*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) - (x**2*(1 - y(x)**2) + y(x)*exp(y(x)/x))/(x*(2*x**2*y(x) + exp(y(x)/x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out