Internal
problem
ID
[19022]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
II.
Equations
of
first
order
and
first
degree.
Exercise
II
(C)
at
page
12
Problem
number
:
21
Date
solved
:
Monday, March 31, 2025 at 06:33:36 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=diff(y(x),x) = (2*x-y(x)+1)/(x+2*y(x)-3); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(2*x-y[x]+1)/(x+2*y[x]-3); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (2*x - y(x) + 1)/(x + 2*y(x) - 3),0) ics = {} dsolve(ode,func=y(x),ics=ics)