Simultaneous linear differential equations

Last Updated : 1 Nov, 2025

If two or more dependent variables are functions of a single independent variable and their derivatives are involved, they are called simultaneous differential equations.

These equations commonly arise in engineering to model interacting dynamic systems such as electrical circuits, mechanical linkages, or control systems.

simultaneous_linear_equations

Example :

dx/dt + 4y = t
dy/dt + 2x = e'

The method of solving such equations is based on the process of elimination, similar to solving algebraic simultaneous equations.

General Form

A system of simultaneous linear differential equations can be written as:

  • dx/dt = a11x + a12​y + f1​(t)
  • dy/dt = a21x + a22​y + f2​(t)

Where:

  • x, y are dependent variables,
  • t is the independent variable,
  • aij​ are constants or functions of t, and
  • f1(t), f2(t) are known functions.

Methods of Solution

Elimination Method – For simple 2×2 systems.

  • Eliminate one variable to reduce the system's higher-order differential equation.
  • Solve for one variable, then find the other.

Matrix Method – Using determinants or eigenvalues for constant coefficients.

  • Write the system as X' = AX
  • Solve using eigenvalues and eigenvectors of A.

Laplace Transform Method – For non-homogeneous equations and engineering applications.

  • Transform the system into algebraic equations, solve, then apply the inverse Laplace transform.

Solved Question on Simultaneous Linear Differential Equations

Question 1: Solve the system dx/dt + 2y = t, dy/dt + x = et

Solution:

dx/dt = t - 2y , dy/dt = et - x

Differentiate the first equation:

d2x/dt2 ​= 1 − 2dt/dy ( since = d/dt (t) = 1)

Differentiate first equation and substitute dy/dtdy/dtdy/dt:

x′′= 1 − 2(et −x) ⇒x′′− 2x =1−2et

  • Homogeneous: xh = C_1^{\sqrt{2t}} + C_2^{-\sqrt{2t}}
  • Particular: xp=−1/2 + et

y = t - x' /2 = -\frac{\sqrt{2}}{2} C_1 e^{\sqrt{2} t} + \frac{\sqrt{2}}{2} C_2 e^{-\sqrt{2} t} + 2t - 21 e^t

Question 2: Solve dx/dt = y, dy/dt = - x

Solution:

x" = y' = - x

x" + x = 0

x = C1cos t + C2sin t

y = dx/dt = - C1 sin t + C 2 cos t

Question 3: Solve the system: dx/dt + y = et, dy/dt − x = 0

Solution:

Write it as :

x' = et - y, y' = x

Differentiate first :

x" = et - y' = et - x
x" + x = et

Homogenpus: xh = C1 cost + C2 sint + 1/2

Particular A = 1/2
x = C1 cost + C2 sin t + 1/2 et

y = et - x' = C1 sint - C2 cost + 1/2et

x = C1​cost + C2​sint + 1/2et, y = C1​sint − C2​cost+1/2 ​et

Question 4: Solve and find constants if x(0) = 1, y(0) = 0: dx/dt = y , dy/dt = - x

Solution:

From Question 2:

x = C1cos t + C2sin t, y = - C1 sin t + C 2 cos t

At t = 0 :

x(0) = 1
C1 = 1

y(0) = 0
C2 = 1

x = cost , y = - sint

Unsolved Questions on Simultaneous Linear Differential Equations

Question 1: Solve dx​/dt = 2x + 3y, dy/dt ​= − 3x + 2y

Question 2: Solve using Laplace transform method: dx/dt ​+ 2y = e2t, dy/dt ​− 2x = 0.

Question 3: Solve dx/dt ​+ 4y = sint, dy​/dt − 4x = cost.

Question 4: Solve the system of simultaneous differential equations: dx/dt − 3y = et(t+1), dy/dt +3x = et(2t).

Comment