Internal
problem
ID
[7200]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
2.
First
order
differential
equations.
Section
2.4
Exact
equations.
Exercises
2.4
at
page
71
Problem
number
:
1
Date
solved
:
Wednesday, March 05, 2025 at 04:20:55 AM
CAS
classification
:
[_separable]
ode:=2*x-1+(3*y(x)+7)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x-1)+(3*y[x]+7)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x + (3*y(x) + 7)*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)