Internal
problem
ID
[9090]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
20
Date
solved
:
Friday, April 25, 2025 at 05:41:27 PM
CAS
classification
:
[[_2nd_order, _missing_y], [_2nd_order, _reducible, _mu_xy]]
Time used: 0.971 (sec)
Solve
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which is now solved for
This is reduced Riccati ode of the form
Comparing the given ode to the above shows that
Since
Since
Therefore the solution becomes
Substituting the value of
Letting
In summary, these are the solution found for
For solution
Since the ode has the form
In summary, these are the solution found for
Summary of solutions found
ode:=diff(diff(y(x),x),x)+diff(y(x),x)^2 = x; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying 2nd order Liouville trying 2nd order WeierstrassP trying 2nd order JacobiSN differential order: 2; trying a linearization to 3rd order trying 2nd order ODE linearizable_by_differentiation trying 2nd order, 2 integrating factors of the form mu(x,y) trying a quadrature checking if the LODE has constant coefficients checking if the LODE is of Euler type trying a symmetry of the form [xi=0, eta=F(x)] checking if the LODE is missing y -> Trying a Liouvillian solution using Kovacics algorithm <- No Liouvillian solutions exists -> Trying a solution in terms of special functions: -> Bessel <- Bessel successful <- special function solution successful <- 2nd order, 2 integrating factors of the form mu(x,y) successful
ode=D[y[x],{x,2}]+(D[y[x],x])^2==0; 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 + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : bad operand type for unary -: list