Internal
problem
ID
[10075]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
77
Date
solved
:
Tuesday, September 30, 2025 at 06:52:03 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = 4*A*k*(x(t)/A)^(3/4)-3*k*x(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==4*A*k*(x[t]/A)^(3/4)-3*k*x[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") A = symbols("A") k = symbols("k") x = Function("x") ode = Eq(-4*A*k*(x(t)/A)**(3/4) + 3*k*x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)
TypeError : < not supported between instances of NoneType and x