Internal
problem
ID
[16689]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
6.
Linear
equations
of
the
first
order.
The
Bernoulli
equation.
Exercises
page
54
Problem
number
:
136
Date
solved
:
Thursday, March 13, 2025 at 08:31:49 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=(1/2*exp(-y(x)^2)-x*y(x))*diff(y(x),x)-1 = 0; dsolve(ode,y(x), singsol=all);
ode=(Exp[-(y[x]^2)/2]-x*y[x])*D[y[x],x]-1==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x*y(x) + exp(-y(x)**2)/2)*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)