Internal
problem
ID
[10067]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
54
Date
solved
:
Sunday, March 30, 2025 at 03:00:26 PM
CAS
classification
:
[_Chini, [_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(y(x),x)-a^n*f(x)^(-n+1)*diff(g(x),x)*y(x)^n-diff(f(x),x)*y(x)/f(x)-f(x)*diff(g(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - a^n*f[x]^(1-n)*D[ g[x],x]*y[x]^n - D[ f[x],x]*y[x]/f[x] - f[x]*D[ g[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") n = symbols("n") y = Function("y") f = Function("f") g = Function("g") ode = Eq(-a**n*f(x)**(1 - n)*y(x)**n*Derivative(g(x), x) - f(x)*Derivative(g(x), x) + Derivative(y(x), x) - y(x)*Derivative(f(x), x)/f(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out