Internal
problem
ID
[3244]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
35,
page
157
Problem
number
:
1
Date
solved
:
Sunday, March 30, 2025 at 01:23:42 AM
CAS
classification
:
[[_2nd_order, _quadrature]]
ode:=diff(diff(y(t),t),t) = cos(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]==Cos[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-cos(t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)