Internal
problem
ID
[26]
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.3.
Problems
at
page
27
Problem
number
:
9
Date
solved
:
Saturday, March 29, 2025 at 04:26:18 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(x),x) = x^2-y(x)-2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==x^2-y[x]-2; DSolve[ode,y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + y(x) + Derivative(y(x), x) + 2,0) ics = {} dsolve(ode,func=y(x),ics=ics)