Internal
problem
ID
[9090]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
19
Date
solved
:
Sunday, March 30, 2025 at 02:06:45 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(y(x),x),x)^2+diff(y(x),x) = x; dsolve(ode,y(x), singsol=all);
ode=(D[y[x],{x,2}])^2+D[y[x],x]==x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + Derivative(y(x), x) + Derivative(y(x), (x, 2))**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [log(sqrt(-_X0 + x) + 1), sqrt(-_X0 + x)] No algorithms are implemented to solve equation C1 + x - 2*sqrt(-_X0 + x) + 2*log(sqrt(-_X0 + x) + 1)