Internal
problem
ID
[146]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.6
(substitution
and
exact
equations).
Problems
at
page
72
Problem
number
:
42
Date
solved
:
Tuesday, September 30, 2025 at 03:47:13 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _exact, _rational]
ode:=1/2*(2*x^(5/2)-3*y(x)^(5/3))/x^(5/2)/y(x)^(2/3)+1/3*(3*y(x)^(5/3)-2*x^(5/2))/x^(3/2)/y(x)^(5/3)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=( (2*x^(5/2)-3*y[x]^(5/3))/( 2*x^(5/2)*y[x]^(2/3)) )+( (3*y[x]^(5/3)-2*x^(5/2))/( 3*x^(3/2)*y[x]^(5/3) ) )*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((-2*x**(5/2) + 3*y(x)**(5/3))*Derivative(y(x), x)/(3*x**(3/2)*y(x)**(5/3)) + (2*x**(5/2) - 3*y(x)**(5/3))/(2*x**(5/2)*y(x)**(2/3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : NoneType object is not subscriptable