Internal
problem
ID
[8797]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
84
Date
solved
:
Sunday, March 30, 2025 at 01:37:36 PM
CAS
classification
:
[_Riccati]
Time used: 0.791 (sec)
Solve
In canonical form the ODE is
This is a Riccati ODE. Comparing the ODE to solve
With Riccati ODE standard form
Shows that
Using the above substitution in the given ODE results (after some simplification)in a second order ODE to solve for
But
Substituting the above terms back in equation (2) gives
Unable to solve. Will ask Maple to solve this ode now.
Solution obtained is
Taking derivative gives
Doing change of constants, the solution becomes
Which simplifies to
Summary of solutions found
ode:=diff(y(x),x) = x^2+y(x)^2-1; dsolve(ode,y(x), singsol=all);
Maple trace
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 Special trying Riccati sub-methods: trying Riccati to 2nd Order -> Calling odsolve with the ODE, diff(diff(y(x),x),x) = (-x^2+1)*y(x), y(x) *** Sublevel 2 *** Methods for second order ODEs: --- Trying classification methods --- 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 -> elliptic -> Legendre -> Whittaker -> hyper3: Equivalence to 1F1 under a power @ Moebius <- hyper3 successful: received ODE is equivalent to the 1F1 ODE <- Whittaker successful <- special function solution successful <- Riccati to 2nd Order successful
Maple step by step
ode=D[y[x],x]==x^2+y[x]^2-1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 - y(x)**2 + Derivative(y(x), x) + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : bad operand type for unary -: list