Internal
problem
ID
[4087]
Book
:
Applied
Differential
equations,
Newby
Curle.
Van
Nostrand
Reinhold.
1972
Section
:
Examples,
page
35
Problem
number
:
1
Date
solved
:
Friday, April 25, 2025 at 08:58:33 AM
CAS
classification
:
[_quadrature]
Time used: 0.096 (sec)
Solve
Let
Isolating
Now we generate an ode in
Which is now solved for
Since the ode has the form
Now that we found solution
Eliminating
Which simplifies to
Summary of solutions found
Time used: 0.113 (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
Integrating gives
Singular solutions are found by solving
for
Substituing the above solution for
Which simplifies to
Summary of solutions found
ode:=y(x) = diff(y(x),x)+1/2*diff(y(x),x)^2; 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 <- differential order: 1; missing x successful
Maple step by step
ode=y[x]==D[y[x],x]+1/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(y(x) - Derivative(y(x), x)**2/2 - Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)