Internal
problem
ID
[10299]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
41
Date
solved
:
Wednesday, April 29, 2026 at 07:51:33 AM
CAS
classification
:
[_quadrature]
Time used: 0.136 (sec)
Writing the ode as
Therefore we need to solve the following equations
Now each of the above equations is solved in turn.
Solving equation (1)
Entering first order ode quadrature solverSince the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\). Integrating gives
Solving equation (2)
Entering zero order ode solverSolving for \(y\) from
Solving gives
Summary of solutions found
ode:=x*y(x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature <- quadrature successful
Maple step by step
ode=x*y[x]*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Python version: 3.12.3 (main, Aug 14 2025, 17:47:21) [GCC 13.3.0] Sympy version 1.14.0
classify_ode(ode,func=y(x)) ('factorable', 'nth_algebraic', 'separable', '1st_exact', '1st_linear', 'Bernoulli', '1st_power_series', 'lie_group', 'nth_algebraic_Integral', 'separable_Integral', '1st_exact_Integral', '1st_linear_Integral', 'Bernoulli_Integral')