Internal
problem
ID
[14606]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.4
page
61
Problem
number
:
17
Date
solved
:
Monday, March 31, 2025 at 12:40:17 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(theta(t),t) = 9/10-11/10*cos(theta(t)); ic:=theta(0) = 1; dsolve([ode,ic],theta(t), singsol=all);
ode=D[ theta[t],t]==1-Cos[ theta[t]] + (1+Cos[theta[t]])*(-1/10); ic={theta[0]==1}; DSolve[{ode,ic},theta[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") theta = Function("theta") ode = Eq(11*cos(theta(t))/10 + Derivative(theta(t), t) - 9/10,0) ics = {theta(0): 1} dsolve(ode,func=theta(t),ics=ics)