Particular Solution Of Homogeneous Differential Equation

2 min read

Particular Solution of Homogeneous Differential Equation

When solving differential equations, especially linear ones, understanding the particular solution is crucial for constructing the general solution. So naturally, while the term "homogeneous differential equation" typically refers to equations of the form $ L(y) = 0 $, where $ L $ is a linear differential operator, the concept of a particular solution arises in the context of non-homogeneous equations of the form $ L(y) = g(x) $. This article clarifies the relationship between homogeneous and non-homogeneous equations, explains how to find the particular solution, and provides step-by-step methods to solve such equations effectively Most people skip this — try not to..


Introduction to Homogeneous and Non-Homogeneous Equations

A homogeneous linear differential equation is defined as an equation where the right-hand side (the non-derivative term) is zero. For example:
$ y'' + 3y' + 2y = 0 $
The solutions to this equation are called homogeneous solutions and form the basis of the general solution Surprisingly effective..

In contrast, a non-homogeneous linear differential equation includes a non-zero function on the right-hand side:
$ y'' + 3y' + 2y = e^x $
Here, $ e^x $ is the non-homogeneous term or forcing function. To solve this, we first find the homogeneous solution and then determine a particular solution that satisfies the non-homogeneous equation. The general solution is the sum of these two:
$ y = y_h + y_p $
where $ y_h $ is the homogeneous solution and $ y_p $ is the particular solution It's one of those things that adds up. Nothing fancy..


Finding the Particular Solution: Key Methods

There are two primary methods for finding the particular solution of a non-homogeneous differential equation:

  1. Method of Undetermined Coefficients
  2. Variation of Parameters

Method of Undetermined Coefficients

This method is effective when the non-homogeneous term $ g(x) $ is a polynomial, exponential, sine, cosine, or a combination of these functions. The steps are as follows:

  1. Solve the homogeneous equation to find $ y_h $.
  2. Assume a form for $ y_p $ based on $ g(x) $:
    • If $ g(x) $ is $ e^{ax} $, assume $ y_p = Ae^{ax} $.
    • If $ g(x) $ is $ \sin(bx) $ or $ \cos(bx) $, assume $ y_p = A\cos(bx) + B\sin(bx) $.
    • If $ g(x) $ is a polynomial of degree $ n $, assume $ y_p $ is a polynomial of degree $ n $.
  3. Check for overlap with $ y_h $: If the assumed form of $ y_p $ is part of $ y_h $, multiply by $ x $ to ensure linear independence.
  4. Substitute $ y_p $ into the original equation and solve for the unknown coefficients.

Example:
Solve $ y'' - y = e^{2x} $.

  • Homogeneous solution: $ y_h = C_1e^{x} + C_2e^{-x} $.
  • Assume $ y_p = Ae^{2x} $.
  • Substitute into the equation: $ (4A)e^{2x} - Ae^{2x} = e^{2x} $.
  • Solve: $ 3A = 1 \Rightarrow A = \frac{1}{3} $.
  • Particular solution: $ y_p = \frac{1}{3}e^{2x} $.
  • General solution: $ y = C_1e^{x} + C_2e^{-x} + \frac{1}{3}e^{2x} $.
Hot New Reads

Just Finished

Same World Different Angle

Keep the Momentum

Thank you for reading about Particular Solution Of Homogeneous Differential Equation. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home