Internal
problem
ID
[16065]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
8
Date
solved
:
Thursday, March 13, 2025 at 07:38:34 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = (4-7*x)*(2*y(x)-3)/(x-1)/(2*x-5); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==((4-7*x)*(2*y[x]-3))/((x-1)*(2*x-5)); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-(4 - 7*x)*(2*y(x) - 3)/((x - 1)*(2*x - 5)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)