Internal
problem
ID
[16077]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
12
Date
solved
:
Monday, March 31, 2025 at 02:39:02 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=y(x)-x+diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]-x)+D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)