Internal
problem
ID
[14495]
Book
:
Ordinary
Differential
Equations
by
Charles
E.
Roberts,
Jr.
CRC
Press.
2010
Section
:
Chapter
7.
Systems
of
First-Order
Differential
Equations.
Exercises
page
329
Problem
number
:
13
(c(ii))
Date
solved
:
Monday, March 31, 2025 at 12:28:36 PM
CAS
classification
:
system_of_ODEs
With initial conditions
ode:=[diff(y__1(x),x) = exp(-x)*y__1(x)-(1+x)^(1/2)*y__2(x)+x^2, diff(y__2(x),x) = y__1(x)/(x-2)^2]; ic:=y__1(3) = 1y__2(3) = 0; dsolve([ode,ic]);
ode={D[ y1[x],x]==Exp[-x]*y1[x]-Sqrt[x+1]*y2[x]+x^2,D[ y2[x],x]==y1[x]/(x-2)^2}; ic={y1[3]==1,y2[3]==0}; DSolve[{ode,ic},{y1[x],y2[x]},x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y__1 = Function("y__1") y__2 = Function("y__2") ode=[Eq(-x**2 + sqrt(x + 1)*y__2(x) - y__1(x)*exp(-x) + Derivative(y__1(x), x),0),Eq(Derivative(y__2(x), x) - y__1(x)/(x - 2)**2,0)] ics = {} dsolve(ode,func=[y__1(x),y__2(x)],ics=ics)
NotImplementedError :