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