Internal
problem
ID
[8348]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
2.
First
order
differential
equations.
Section
2.1
Solution
curves
without
a
solution.
Exercises
2.1
at
page
44
Problem
number
:
41
Date
solved
:
Tuesday, September 30, 2025 at 05:29:30 PM
CAS
classification
:
[_quadrature]
ode:=m*diff(v(t),t) = m*g-k*v(t)^2; dsolve(ode,v(t), singsol=all);
ode=m*D[v[t],t]==m*g-k*v[t]^2; ic={}; DSolve[{ode,ic},v[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") g = symbols("g") k = symbols("k") m = symbols("m") v = Function("v") ode = Eq(-g*m + k*v(t)**2 + m*Derivative(v(t), t),0) ics = {} dsolve(ode,func=v(t),ics=ics)