Internal
problem
ID
[10303]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
45
Date
solved
:
Wednesday, February 11, 2026 at 06:28:03 AM
CAS
classification
:
[_quadrature]
Solving Eq. (1)
Entering first order ode quadrature solverSince the ode has the form \(y^{\prime }=f(x)\), then we only need to integrate \(f(x)\).
ode:=x*sin(x)*diff(y(x),x)^2 = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables <- differential order: 1; missing y(x) successful
Maple step by step
ode=x*Sin[x]*D[y[x],x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*sin(x)*Derivative(y(x), x)**2,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', 'lie_group', 'nth_algebraic_Integral')