Internal
problem
ID
[8774]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
62
Date
solved
:
Sunday, March 30, 2025 at 01:32:55 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=y(x)*diff(diff(y(x),x),x) = 1; dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],{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)*Derivative(y(x), (x, 2)) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)