Internal
problem
ID
[8886]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
3.0
Problem
number
:
29
Date
solved
:
Friday, April 25, 2025 at 05:22:10 PM
CAS
classification
:
[[_homogeneous, `class D`]]
Time used: 0.193 (sec)
Solve
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
s0Converting
Converting
Solving for
Summary of solutions found
Time used: 0.139 (sec)
Solve
Applying change of variables
Which is now solved 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
Converting
Converting
Solving for
Summary of solutions found
ode:=diff(y(x),x) = 2*x^2*sin(y(x)/x)^2+y(x)/x; 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 homogeneous D <- homogeneous successful
Maple step by step
ode=D[y[x],x]== 2*x^2 * Sin[y[x]/x]^2 + y[x]/x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x**2*sin(y(x)/x)**2 + Derivative(y(x), x) - y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (2*x**3*sin(y(x)/x)**2 + y(x))/x cannot be solved by the factorable group method