Internal
problem
ID
[6266]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.2,
Separable
Equations.
Exercises.
page
46
Problem
number
:
11
Date
solved
:
Wednesday, March 05, 2025 at 12:28:02 AM
CAS
classification
:
[_separable]
ode:=x*diff(v(x),x) = 1/3*(1-4*v(x)^2)/v(x); dsolve(ode,v(x), singsol=all);
ode=x*D[v[x],x]==(1-4*v[x]^2)/(3*v[x]); ic={}; DSolve[{ode,ic},v[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") v = Function("v") ode = Eq(x*Derivative(v(x), x) - (1 - 4*v(x)**2)/(3*v(x)),0) ics = {} dsolve(ode,func=v(x),ics=ics)