Internal
problem
ID
[8922]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
4.0
Problem
number
:
29
Date
solved
:
Sunday, March 30, 2025 at 01:54:02 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _dAlembert]
Time used: 0.212 (sec)
Solve
Let
Solving for
This has the form
Where
Solving ode 1A
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
Solving ode 2A
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
Which simplifies to
The solution
was found not to satisfy the ode or the IC. Hence it is removed. The solution
was found not to satisfy the ode or the IC. Hence it is removed.
Summary of solutions found
ode:=(y(x)-2*diff(y(x),x)*x)^2 = 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 simple symmetries for implicit equations Successful isolation of dy/dx: 3 solutions were found. Trying to solve each res\ ulting ODE. *** Sublevel 2 *** Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: trying exact Looking for potential symmetries trying an equivalence to an Abel ODE trying 1st order ODE linearizable_by_differentiation -> Solving 1st order ODE of high degree, Lie methods, 1st trial -> Computing symmetries using: way = 2 -> Computing symmetries using: way = 2 -> Solving 1st order ODE of high degree, 2nd attempt. Trying parametric methods trying dAlembert <- dAlembert successful <- dAlembert successful
Maple step by step
ode=(y[x]-2*x*D[y[x],x])^2== 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((-2*x*Derivative(y(x), x) + y(x))**2 - Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out