Internal
problem
ID
[21185]
Book
:
A
Textbook
on
Ordinary
Differential
Equations
by
Shair
Ahmad
and
Antonio
Ambrosetti.
Second
edition.
ISBN
978-3-319-16407-6.
Springer
2015
Section
:
Chapter
3.
First
order
nonlinear
differential
equations.
Excercise
3.7
at
page
67
Problem
number
:
22
Date
solved
:
Thursday, October 02, 2025 at 07:16:09 PM
CAS
classification
:
[_exact, _rational]
With initial conditions
ode:=3*x^2-y(x)+(4*y(x)^3-x)*diff(y(x),x) = 0; ic:=[y(1) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=(3*x^2-y[x])+(4*y[x]^3-x)*D[y[x],x]==0; ic={y[1]==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*x**2 + (-x + 4*y(x)**3)*Derivative(y(x), x) - y(x),0) ics = {y(1): 1} dsolve(ode,func=y(x),ics=ics)
Timed Out