Internal
problem
ID
[18743]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
III.
Equations
of
the
first
order
but
not
of
the
first
degree.
Problems
at
page
37
Problem
number
:
Ex.
6
Date
solved
:
Thursday, March 13, 2025 at 12:45:04 PM
CAS
classification
:
[[_homogeneous, `class C`], _Riccati]
ode:=diff(y(x),x)+2*x*y(x) = x^2+y(x)^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+2*x*y[x]==x^2+y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + 2*x*y(x) - y(x)**2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)