Solving Clairaut ODEs
Description
Examples
The general form of Clairaut's ODE is given by:
Clairaut_ode := y(x)=x*diff(y(x),x)+g(diff(y(x),x));
Clairaut_ode≔y⁡x=x⁢ⅆⅆxy⁡x+g⁡ⅆⅆxy⁡x
where g is an arbitrary function of dy/dx. See Differentialgleichungen, by E. Kamke, p. 31. This type of equation always has a linear solution:
y(x) = _C1*x + g(_C1);
y⁡x=_C1⁢x+g⁡_C1
It is also worth mentioning that singular nonlinear solutions can be obtained by looking for a solution in parametric form. For more information, see odeadvisor/parametric.
with⁡DEtools,odeadvisor
odeadvisor
odeadvisor⁡Clairaut_ode
_Clairaut
ode≔y⁡x=x⁢diff⁡y⁡x,x+cos⁡diff⁡y⁡x,x
ode≔y⁡x=x⁢ⅆⅆxy⁡x+cos⁡ⅆⅆxy⁡x
ans≔dsolve⁡ode
ans≔y⁡x=arcsin⁡x⁢x+−x2+1,y⁡x=c__1⁢x+cos⁡c__1
Note the absence of integration constant _C in the singular solution present in the above.
See Also
DEtools
dsolve
quadrature
linear
separable
Bernoulli
exact
homogeneous
homogeneousB
homogeneousC
homogeneousD
homogeneousG
Chini
Riccati
Abel
Abel2A
Abel2C
rational
Clairaut
dAlembert
sym_implicit
patterns
odeadvisor,types
Download Help Document