Internal
problem
ID
[14986]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
5,
Trivial
differential
equations.
Exercises
page
33
Problem
number
:
5.1
(ii)
Date
solved
:
Thursday, October 02, 2025 at 09:58:06 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x) = 1/(x^2-1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==1/(x^2-1); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 1/(x**2 - 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)