Internal
problem
ID
[8726]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
14
Date
solved
:
Wednesday, March 05, 2025 at 06:14:02 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = ln(1+y(x)^2)/ln(x^2+1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == Log[1+y[x]^2]/Log[1+x^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - log(y(x)**2 + 1)/log(x**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)