2.1.26 Problem 27

Solved by factoring the differential equation
Maple
Mathematica
Sympy

Internal problem ID [10012]
Book : Own collection of miscellaneous problems
Section : section 1.0
Problem number : 27
Date solved : Thursday, November 27, 2025 at 10:05:00 AM
CAS classification : [_quadrature]

Solved by factoring the differential equation

Time used: 0.026 (sec)

Solve

\begin{align*} \frac {y^{\prime }}{x +y}&=0 \\ \end{align*}
Writing the ode as
\begin{align*} \left (\frac {1}{x +y}\right )\left (y^{\prime }\right )&=0 \end{align*}

Therefore we need to solve the following equations

\begin{align*} \tag{1} \frac {1}{x +y} &= 0 \\ \tag{2} y^{\prime } &= 0 \\ \end{align*}
Now each of the above equations is solved in turn.

Solving equation (1)

Solving for \(y\) from

\begin{align*} \frac {1}{x +y} = 0 \end{align*}

Failed to solve.

Solving equation (2)

Solve Since the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).

\begin{align*} \int {dy} &= \int {0\, dx} + c_1 \\ y &= c_1 \end{align*}
Figure 2.68: Slope field \(y^{\prime } = 0\)

Summary of solutions found

\begin{align*} y &= c_1 \\ \end{align*}
Maple. Time used: 0.001 (sec). Leaf size: 5
ode:=1/(x+y(x))*diff(y(x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_1 \]

Maple trace

Methods for first order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
trying 1st order linear 
<- 1st order linear successful
 

Maple step by step

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & \frac {\frac {d}{d x}y \left (x \right )}{x +y \left (x \right )}=0 \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & \frac {d}{d x}y \left (x \right ) \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & \frac {d}{d x}y \left (x \right )=0 \\ \bullet & {} & \textrm {Integrate both sides with respect to}\hspace {3pt} x \\ {} & {} & \int \left (\frac {d}{d x}y \left (x \right )\right )d x =\int 0d x +\mathit {C1} \\ \bullet & {} & \textrm {Evaluate integral}\hspace {3pt} \\ {} & {} & y \left (x \right )=\mathit {C1} \end {array} \]
Mathematica. Time used: 0.002 (sec). Leaf size: 7
ode=1/(x+y[x])*D[y[x],x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to c_1 \end{align*}
Sympy. Time used: 0.017 (sec). Leaf size: 3
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)
 
\[ y{\left (x \right )} = C_{1} \]