Internal
problem
ID
[23243]
Book
:
Ordinary
differential
equations
with
modern
applications.
Ladas,
G.
E.
and
Finizio,
N.
Wadsworth
Publishing.
California.
1978.
ISBN
0-534-00552-7.
QA372.F56
Section
:
Chapter
1.
Elementary
methods.
First
order
differential
equations.
Exercise
at
page
17
Problem
number
:
8
Date
solved
:
Thursday, October 02, 2025 at 09:25:13 PM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = a*x(t)^(5/6)/(-B*t+b)^(3/2); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]== a*x[t]^(5/6)/(b-B*t)^(3/2); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-a*x(t)**(5/6)/(-B*t + b)**(3/2) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)
Timed Out