Internal
problem
ID
[8860]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
3.0
Problem
number
:
2
Date
solved
:
Sunday, March 30, 2025 at 01:44:49 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(w(z),z) = -1/2-1/2*(1-12*w(z))^(1/2); ic:=w(1) = -1; dsolve([ode,ic],w(z), singsol=all);
ode=D[w[z],z] == -1/2 - Sqrt[1/4 - 3*w[z]]; ic={w[1] == -1}; DSolve[{ode,ic},w[z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") w = Function("w") ode = Eq(sqrt(1 - 12*w(z))/2 + Derivative(w(z), z) + 1/2,0) ics = {w(1): -1} dsolve(ode,func=w(z),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants