Internal
problem
ID
[6571]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
2.
Solutions
of
differential
equations.
Supplemetary
problems.
Page
11
Problem
number
:
15
Date
solved
:
Sunday, March 30, 2025 at 11:07:40 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _Clairaut]
ode:=y(x) = x*diff(y(x),x)+diff(y(x),x)^4; dsolve(ode,y(x), singsol=all);
ode=y[x]==x*D[y[x],x]+(D[y[x],x])^4; 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) + y(x) - Derivative(y(x), x)**4,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out