Internal
problem
ID
[9016]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
32
Date
solved
:
Wednesday, March 05, 2025 at 07:14:45 AM
CAS
classification
:
[_quadrature]
Solve
Time used: 0.014 (sec)
Since the ode has the form
Summary of solutions found
Time used: 0.056 (sec)
Applying change of variables
Which is now solved The ode
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
Converting
Summary of solutions found
ode:=5*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
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
ode=5*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(5*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)