Internal
problem
ID
[10297]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
27
Date
solved
:
Tuesday, September 30, 2025 at 07:18:25 PM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x) = sin(x)+y(x)^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Sin[x]+y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**2 - sin(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -y(x)**2 - sin(x) + Derivative(y(x), x) cannot be solved by the lie group method