Internal
problem
ID
[22671]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
65
Problem
number
:
48
Date
solved
:
Thursday, October 02, 2025 at 09:03:35 PM
CAS
classification
:
[_separable]
ode:=diff(q(p),p) = p/q(p)*exp(p^2-q(p)^2); dsolve(ode,q(p), singsol=all);
ode=D[q[p],p]==p/q[p] * Exp[p^2-q[p]^2]; ic={}; DSolve[{ode,ic},q[p],p,IncludeSingularSolutions->True]
from sympy import * p = symbols("p") q = Function("q") ode = Eq(-p*exp(p**2 - q(p)**2)/q(p) + Derivative(q(p), p),0) ics = {} dsolve(ode,func=q(p),ics=ics)