Internal
problem
ID
[8735]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
24
Date
solved
:
Sunday, March 30, 2025 at 01:29:11 PM
CAS
classification
:
[_separable]
Solve
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
The ode
is separable as it can be written as
Where
Integrating gives
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Solving Eq. (2)
The ode
is separable as it can be written as
Where
Integrating gives
ode:=y(x) = diff(y(x),x)*x+x^2*diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
Maple trace
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 trying simple symmetries for implicit equations <- symmetries for implicit equations successful
Maple step by step
ode=y[x]==x*D[y[x],x]+x^2*(D[y[x],x])^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2*Derivative(y(x), x)**2 - x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)