Internal
problem
ID
[173]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.7
(population
models).
Problems
at
page
82
Problem
number
:
3
Date
solved
:
Thursday, March 13, 2025 at 03:26:00 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(x(t),t) = 1-x(t)^2; ic:=x(0) = 3; dsolve([ode,ic],x(t), singsol=all);
ode=D[x[t],t]==1-x[t]^2; ic={x[0]==3}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t)**2 + Derivative(x(t), t) - 1,0) ics = {x(0): 3} dsolve(ode,func=x(t),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants