Internal
problem
ID
[18499]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
33.
Problems
at
page
91
Problem
number
:
8
(eq
69)
Date
solved
:
Monday, March 31, 2025 at 05:38:20 PM
CAS
classification
:
[_separable]
ode:=diff(n(x),x) = (n(x)^2+1)*x; dsolve(ode,n(x), singsol=all);
ode=D[n[x],x]==(n[x]^2+1)*x; ic={}; DSolve[{ode,ic},n[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = Function("n") ode = Eq(-x*(n(x)**2 + 1) + Derivative(n(x), x),0) ics = {} dsolve(ode,func=n(x),ics=ics)