What Is Particular Solution Of Differential Equation

5 min read

What isa particular solution of differential equation? In the study of differential equations, the term particular solution of differential equation refers to a specific function that satisfies the equation when combined with the appropriate constants. Unlike the general solution, which contains arbitrary constants representing an infinite family of solutions, the particular solution is obtained by applying initial or boundary conditions that uniquely determine those constants. This concept is central to modeling real‑world phenomena, from mechanical vibrations to population dynamics, because it bridges the gap between abstract mathematics and concrete predictions.

The Role of Particular Solutions in Differential Equations

General Solution vs. Particular Solution

A second‑order linear differential equation can often be written as

[a(x)y'' + b(x)y' + c(x)y = g(x) ]

The general solution consists of two parts: the homogeneous solution (the solution to the associated equation with (g(x)=0)) and a particular solution that addresses the non‑homogeneous term (g(x)). Symbolically,

[ y_{\text{general}}(x)=y_{\text{homogeneous}}(x)+y_{\text{particular}}(x) ]

The homogeneous part introduces arbitrary constants, while the particular solution is a single, well‑defined function once the forcing term (g(x)) is specified.

Why the Distinction Matters

  • Uniqueness: Adding initial or boundary conditions eliminates the arbitrary constants, leaving only the particular solution that fits the given scenario. - Physical Interpretation: In engineering, the particular solution often represents the steady‑state response of a system to external forces, whereas the homogeneous part describes transient behavior that eventually decays.
  • Computational Efficiency: Once a particular solution is identified, the full solution can be constructed without repeatedly solving the entire equation.

Methods for Finding a Particular Solution### 1. Method of Undetermined Coefficients

This technique works well when (g(x)) is a simple function such as a polynomial, exponential, sine, or cosine. The idea is to guess a form for the particular solution based on the shape of (g(x)) and then determine the unknown coefficients by substitution And it works..

  • Steps:

    1. Identify the type of (g(x)). 2. Propose a trial function with undetermined coefficients.
    2. Differentiate the trial function as needed.
    3. Substitute into the original equation and solve for the coefficients.
  • Example: For

[ y'' - 3y' + 2y = e^{x} ]

the trial solution might be (y_{p}=Ae^{x}). Substituting yields (A(e^{x}) - 3A(e^{x}) + 2A(e^{x}) = e^{x}), leading to (A=1). Hence, the particular solution of differential equation is (y_{p}=e^{x}) Not complicated — just consistent..

2. Variation of Parameters

When (g(x)) is more complicated, the variation of parameters method provides a systematic way to construct a particular solution using the known homogeneous solutions.

  • Procedure:

    1. Solve the homogeneous equation to obtain two linearly independent solutions (y_{1}(x)) and (y_{2}(x)).
    2. Assume a particular solution of the form (y_{p}=u_{1}(x)y_{1}(x)+u_{2}(x)y_{2}(x)), where (u_{1}) and (u_{2}) are functions to be determined.
    3. Impose the condition (u_{1}'y_{1}+u_{2}'y_{2}=0) to simplify calculations.
    4. Solve for (u_{1}') and (u_{2}') using the system derived from substituting (y_{p}) into the original equation.
    5. Integrate to find (u_{1}) and (u_{2}), then form (y_{p}).
  • Illustration: For

[ y'' + y = \tan x ]

the homogeneous solutions are (y_{1}=\sin x) and (y_{2}=\cos x). Applying variation of parameters yields a particular solution that involves integrals of (\tan x) multiplied by (\sin x) and (\cos x) But it adds up..

3. Laplace Transforms

In control theory and electrical engineering, taking the Laplace transform converts differential equations into algebraic equations. After solving for the transformed unknown function, the inverse Laplace transform reveals the particular solution directly.

  • Key Point: The inverse transform of the product of the Laplace of the forcing term and the transfer function gives the particular solution of differential equation in the time domain.

Worked Example: Solving a Non‑Homogeneous Equation

Consider the equation

[ y'' - y = x^{2} ]

  1. Homogeneous part: Solve (y'' - y = 0). The characteristic equation (r^{2}-1=0) gives (r=\pm1), so

[y_{\text{homogeneous}} = C_{1}e^{x}+C_{2}e^{-x} ]

  1. Particular part: Since the right‑hand side is a polynomial of degree 2, try a quadratic trial function (y_{p}=Ax^{2}+Bx+C).

    • Compute derivatives: (y_{p}'=2Ax+B), (y_{p}''=2A).

    • Substitute: (2A - (Ax^{2}+Bx+C) = x^{2}) Worth keeping that in mind..

    • Equate coefficients:

      • For (x^{2}): (-A = 1 \Rightarrow A = -1)
      • For (x): (-B = 0 \Rightarrow B = 0)
      • Constant term: (2A - C = 0 \Rightarrow C = 2A = -2)

    Thus, (y_{p}= -x^{2} - 2).

  2. Full solution:

[ y(x)=C_{1}e^{x}+C_{2}e^{-x} - x^{2} - 2 ]

If an initial condition such as (y(0)=3) is provided, the constants (C_{1

can be determined by substituting into the full solution.

Conclusion

In this article, we explored three methods for finding particular solutions to non-homogeneous differential equations: the method of undetermined coefficients, variation of parameters, and Laplace transforms. Each method is suited to different types of non-homogeneous terms and provides a systematic approach to constructing a particular solution. Day to day, the method of undetermined coefficients is useful for linear non-homogeneous terms, variation of parameters is more general and can handle more complex non-homogeneous terms, and Laplace transforms are particularly useful in control theory and electrical engineering applications. By choosing the appropriate method and following the outlined procedures, one can effectively solve non-homogeneous differential equations and find the particular solution that satisfies the given equation and initial conditions.

Coming In Hot

Fresh Out

Readers Also Loved

Don't Stop Here

Thank you for reading about What Is Particular Solution Of 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