Internal
problem
ID
[22069]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
1.
Basic
concepts
Problem
number
:
1.5
Date
solved
:
Thursday, October 02, 2025 at 08:23:23 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=y(x)*diff(diff(y(x),x),x) = 1+y(x)^2; dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],{x,2}]==y[x]^2+1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**2 + y(x)*Derivative(y(x), (x, 2)) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out