Internal
problem
ID
[10012]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
27
Date
solved
:
Monday, March 09, 2026 at 03:02:44 AM
CAS
classification
:
[_quadrature]
Time used: 0.089 (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 zero order ode solverSolving for \(y\) from
Failed to solve.
Solving equation (2)
Entering first order ode quadrature solverSince the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).
Summary of solutions found
ode:=1/(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=1/(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(Derivative(y(x), x)/(x + y(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', '1st_linear', 'Bernoulli', '1st_power_series', 'lie_group', 'nth_algebraic_Integral', '1st_linear_Integral', 'Bernoulli_Integral')