Internal
problem
ID
[8757]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
45
Date
solved
:
Sunday, March 30, 2025 at 01:30:31 PM
CAS
classification
:
[_dAlembert]
Time used: 0.141 (sec)
Solve
Let
Solving for
This has the form
Where
Taking derivative of (*) w.r.t.
Comparing the form
Hence (2) becomes
The singular solution is found by setting
Solving the above for
Substituting these in (1A) and keeping singular solution that verifies the ode gives
The general solution is found when
Inverting the above ode gives
This ODE is now solved for
Integrating gives
Now we need to eliminate
Eliminating
results in
Substituting the above into Eq (1A) and simplifying gives
Summary of solutions found
ode:=y(x)*diff(y(x),x) = 1-x*diff(y(x),x)^3; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables trying dAlembert <- dAlembert successful
Maple step by step
ode=D[y[x],x]*y[x]==1-x*(D[y[x],x])^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x)**3 + y(x)*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out