Internal
problem
ID
[17464]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
3.
Systems
of
two
first
order
equations.
Section
3.6
(A
brief
introduction
to
nonlinear
systems).
Problems
at
page
195
Problem
number
:
22
(iii)
Date
solved
:
Thursday, March 13, 2025 at 10:08:45 AM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(x(t),t) = 1/3*x(t)*(6*x(t)-9)^(1/2); ic:=x(0) = 3; dsolve([ode,ic],x(t), singsol=all);
ode=D[x[t],t]==1/3*x[t]*Sqrt[6*x[t]-9]; ic={x[0]==3}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-sqrt(6*x(t) - 9)*x(t)/3 + Derivative(x(t), t),0) ics = {x(0): 3} dsolve(ode,func=x(t),ics=ics)