Internal
problem
ID
[6217]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
10
Date
solved
:
Sunday, March 30, 2025 at 10:43:29 AM
CAS
classification
:
[_separable]
ode:=u(v)*(1-v)+v^2*(1-u(v))*diff(u(v),v) = 0; dsolve(ode,u(v), singsol=all);
ode=u[v]*(1-v)+v^2*(1-u[v])*D[u[v],v]==0; ic={}; DSolve[{ode,ic},u[v],v,IncludeSingularSolutions->True]
from sympy import * v = symbols("v") u = Function("u") ode = Eq(v**2*(1 - u(v))*Derivative(u(v), v) + (1 - v)*u(v),0) ics = {} dsolve(ode,func=u(v),ics=ics)