Internal
problem
ID
[8758]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
46
Date
solved
:
Wednesday, March 05, 2025 at 06:45:56 AM
CAS
classification
:
[_quadrature]
ode:=diff(f(x),x) = 1/f(x); dsolve(ode,f(x), singsol=all);
ode=D[ f[x],x]==f[x]^(-1); ic={}; DSolve[{ode,ic},f[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") f = Function("f") ode = Eq(Derivative(f(x), x) - 1/f(x),0) ics = {} dsolve(ode,func=f(x),ics=ics)