Internal
problem
ID
[7767]
Book
:
An
introduction
to
Ordinary
Differential
Equations.
Earl
A.
Coddington.
Dover.
NY
1961
Section
:
Chapter
6.
Existence
and
uniqueness
of
solutions
to
systems
and
nth
order
equations.
Page
238
Problem
number
:
5(b)
Date
solved
:
Sunday, March 30, 2025 at 12:23:06 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
With initial conditions
ode:=diff(diff(y(x),x),x)+sin(y(x)) = 0; ic:=y(0) = 0, D(y)(0) = beta; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],{x,2}]+Sin[y[x]]==0; ic={y[0]==0,Derivative[1][y][0] ==\[Beta]}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(y(x)) + Derivative(y(x), (x, 2)),0) ics = {y(0): 0, Subs(Derivative(y(x), x), x, 0): beta} dsolve(ode,func=y(x),ics=ics)
TypeError : property object is not iterable