2.3.22 Problem 22

Maple
Mathematica
Sympy

Internal problem ID [8880]
Book : Own collection of miscellaneous problems
Section : section 3.0
Problem number : 22
Date solved : Sunday, March 30, 2025 at 01:45:33 PM
CAS classification : [[_2nd_order, _missing_y]]

Maple. Time used: 0.034 (sec). Leaf size: 377
ode:=(x^2+1)*diff(diff(y(x),x),x)+1+diff(y(x),x)^2 = x; 
dsolve(ode,y(x), singsol=all);
 
y=1+i(ix2+12)i1+i(x+i)(12ix2)i2+222hypergeom([i2+222,i1+i2+1+i2+1],[i1+i+1],ix2+12)+4(12+ix2)i1+i1+i(12ix2)2+222c1(x+i)hypergeom([2+222,2+222+1],[i1+i+1],ix2+12)+8(HeunCPrime(0,i1+i,1,0,12i2,xix+i)c1(12+ix2)i1+iHeunCPrime(0,i1+i,1,0,12i2,xix+i)(ix2+12)i1+i4)(ix+1)(x+i)(4(12ix2)2+222(12+ix2)i1+ihypergeom([2+222,2+222+1],[i1+i+1],ix2+12)c1(12ix2)i2+222(ix2+12)i1+ihypergeom([i2+222,i1+i2+1+i2+1],[i1+i+1],ix2+12))dx+c2

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 differential order: 2; missing variables 
   -> Computing symmetries using: way = 3 
   -> Computing symmetries using: way = exp_sym 
-> Calling odsolve with the ODE, diff(_b(_a),_a) = -(_b(_a)^2-_a+1)/(_a^2+1), 
_b(_a) 
   *** Sublevel 2 *** 
   Methods for first order ODEs: 
   --- Trying classification methods --- 
   trying a quadrature 
   trying 1st order linear 
   trying Bernoulli 
   trying separable 
   trying inverse linear 
   trying homogeneous types: 
   trying Chini 
   differential order: 1; looking for linear symmetries 
   trying exact 
   Looking for potential symmetries 
   trying Riccati 
   trying Riccati sub-methods: 
      <- Abel AIR successful: ODE belongs to the 2F1 2-parameter class 
<- differential order: 2; canonical coordinates successful 
<- differential order 2; missing variables successful
 

Mathematica
ode=(1+x^2)*D[y[x],{x,2}]+1+(D[y[x],x])^2==x; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x + (x**2 + 1)*Derivative(y(x), (x, 2)) + Derivative(y(x), x)**2 + 1,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
TypeError : bad operand type for unary -: list