Internal
problem
ID
[10298]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
40
Date
solved
:
Monday, March 09, 2026 at 03:29:43 AM
CAS
classification
:
[_quadrature]
Time used: 0.108 (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)\).
Solving equation (2)
Entering zero order ode solverSolving for \(y\) from
Solving gives
Summary of solutions found
ode:=y(x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Classification methods on request Methods to be used are: [exact] ---------------------------- * Tackling ODE using method: exact --- Trying classification methods --- trying exact <- exact successful
Maple step by step
ode=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(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')