Internal
problem
ID
[19571]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
IX.
Simultaneous
equations
Problem
number
:
Ex
7
page
150
Date
solved
:
Monday, March 31, 2025 at 07:33:49 PM
CAS
classification
:
system_of_ODEs
ode:=[t*diff(x(t),t) = t-2*x(t), t*diff(y(t),t) = t*x(t)+t*y(t)+2*x(t)-t]; dsolve(ode);
ode={t*D[x[t],t]==t-2*x[t],t*D[y[t],t]==t*x[t]+t*y[t]+2*x[t]-t}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(t*Derivative(x(t), t) - t + 2*x(t),0),Eq(-t*x(t) - t*y(t) + t*Derivative(y(t), t) + t - 2*x(t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)