Internal
problem
ID
[23224]
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
9
Problem
number
:
13
Date
solved
:
Thursday, October 02, 2025 at 09:24:34 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
ode:=m*diff(diff(s(t),t),t) = 1/2*g*t^2; dsolve(ode,s(t), singsol=all);
ode=m*D[s[t],{t,2}]==1/2*g*t^2; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") m = symbols("m") g = symbols("g") s = Function("s") ode = Eq(-g*t**2/2 + m*Derivative(s(t), (t, 2)),0) ics = {} dsolve(ode,func=s(t),ics=ics)