Internal
problem
ID
[6881]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Exercises
1.1
at
page
12
Problem
number
:
6
Date
solved
:
Wednesday, March 05, 2025 at 02:47:40 AM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=diff(diff(R(t),t),t) = -k/R(t)^2; dsolve(ode,R(t), singsol=all);
ode=D[R[t],{t,2}]==-k/R[t]^2; ic={}; DSolve[{ode,ic},R[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") k = symbols("k") R = Function("R") ode = Eq(k/R(t)**2 + Derivative(R(t), (t, 2)),0) ics = {} dsolve(ode,func=R(t),ics=ics)