Internal
problem
ID
[8741]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
30
Date
solved
:
Sunday, March 30, 2025 at 01:29:19 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, _dAlembert]
Time used: 0.119 (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
This ODE is now solved for
The ode
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Substituing the above solution for
Which simplifies to
Summary of solutions found
ode:=y(x) = x*diff(y(x),x)^2+diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: *** Sublevel 2 *** 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=y[x]==x*(D[y[x],x])^2+(D[y[x],x])^2; 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)**2 + y(x) - Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)