Internal
problem
ID
[100]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.5
(linear
equations).
Problems
at
page
54
Problem
number
:
28
Date
solved
:
Saturday, March 29, 2025 at 04:31:24 PM
CAS
classification
:
[_linear]
ode:=(1+2*x(y)*y)/diff(x(y),y) = y^2+1; dsolve(ode,x(y), singsol=all);
ode=(1+2*x[y]*y)*1/D[x[y],y]==1+y^2; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-y**2 + (2*y*x(y) + 1)/Derivative(x(y), y) - 1,0) ics = {} dsolve(ode,func=x(y),ics=ics)