Internal
problem
ID
[8729]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
17
Date
solved
:
Friday, February 21, 2025 at 06:47:13 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _Clairaut]
Solve
Time used: 0.039 (sec)
This is Clairaut ODE. It has the form
Where \(g\) is function of \(y'(x)\). Let \(p=y^{\prime }\) the ode becomes
Solving for \(y\) from the above results in
The above ode is a Clairaut ode which is now solved.
We start by replacing \(y^{\prime }\) by \(p\) which gives
Writing the ode as
We now write \(g\equiv g\left ( p\right ) \) to make notation simpler but we should always remember that \(g\) is function of \(p\) which in turn is function of \(x\). Hence the above becomes
Then we see that
Taking derivative of (1) w.r.t. \(x\) gives
Where \(g'\) is derivative of \(g\left ( p\right ) \) w.r.t. \(p\).
The general solution is given by
Substituting this in (1) gives the general solution as
The singular solution is found from solving for \(p\) from
And substituting the result back in (1). Since we found above that \(g=-\frac {p^{2}}{4}\), then the above equation becomes
Solving the above for \(p\) results in
Substituting the above back in (1) results in
Summary of solutions found
`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`
Solving time : 0.025
(sec)
Leaf size : 18
dsolve(1/4*diff(y(x),x)^2-diff(y(x),x)*x+y(x) = 0,y(x),singsol=all)
Solving time : 0.008
(sec)
Leaf size : 25
DSolve[{(1/4)*(D[y[x],x])^2-x*D[y[x],x]+y[x]==0,{}},y[x],x,IncludeSingularSolutions->True]
Solving time : 1.668
(sec)
Leaf size : 10
Python version: 3.13.1 (main, Dec 4 2024, 18:05:56) [GCC 14.2.1 20240910] Sympy version 1.13.3
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*Derivative(y(x), x) + y(x) + Derivative(y(x), x)**2/4,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Eq(y(x), x**2 - (C1 + x)**2)