maths.freeDifferential Equations › Higher order and systems › Method of undetermined coefficients

Method of undetermined coefficients

In mathematics, the method of undetermined coefficients is an approach to finding a particular solution to certain nonhomogeneous ordinary differential equations and recurrence relations.

Method of undetermined coefficients

In mathematics, the method of undetermined coefficients is an approach to finding a particular solution to certain nonhomogeneous ordinary differential equations and recurrence relations. It is closely related to the annihilator method, but instead of using a particular kind of differential operator (the annihilator) in order to find the best possible form of the particular solution, an ansatz or 'guess' is made as to the appropriate form, which is then tested by differentiating the resulting equation. For complex equations, the annihilator method or variation of parameters is less time-consuming to perform.

Undetermined coefficients is not as general a method as variation of parameters, since it only works for differential equations that follow certain forms.

Description of the method

Consider a linear non-homogeneous ordinary differential equation of the form

\(\sum_{i=0}^n c_i y^{(i)} + y^{(n+1)} = g(x)\)

where \(y^{(i)}\) denotes the i-th derivative of \(y\), and \(c_i\) denotes a function of \(x\).

The method of undetermined coefficients provides a straightforward method of obtaining the solution to this ODE when two criteria are met:

  1. \(c_i\) are constants.
  2. g(x) is a constant, a polynomial function, exponential function \(e^{\alpha x}\), sine or cosine functions \(\sin{\beta x}\) or \(\cos{\beta x}\), or finite sums and products of these functions (\({\alpha}\), \({\beta}\) constants).

The method consists of finding the general homogeneous solution \(y_c\) for the complementary linear homogeneous differential equation

\(\sum_{i=0}^n c_i y^{(i)} + y^{(n+1)} = 0,\)

and a particular integral \(y_p\) of the linear non-homogeneous ordinary differential equation based on \(g(x)\). Then the general solution \(y\) to the linear non-homogeneous ordinary differential equation would be

\(y = y_c + y_p.\)

If \(g(x)\) consists of the sum of two functions \(h(x) + w(x)\) and we say that \(y_{p_1}\) is the solution based on \(h(x)\) and \(y_{p_2}\) the solution based on \(w(x)\). Then, using a superposition principle, we can say that the particular integral \(y_p\) is

\(y_p = y_{p_1} + y_{p_2}.\)

Typical forms of the particular integral

In order to find the particular integral, we need to 'guess' its form, with some coefficients left as variables to be solved for. This takes the form of the first derivative of the complementary function. Below is a table of some typical functions and the solution to guess for them.

If a term in the above particular integral for y appears in the homogeneous solution, it is necessary to multiply by a sufficiently large power of x in order to make the solution independent. If the function of x is a sum of terms in the above table, the particular integral can be guessed using a sum of the corresponding terms for y.

Example 1

Find a particular integral of the equation

\(y'' + y = t \cos t.\)

The right side t cos t has the form

\(P_n e^{\alpha t} \cos{\beta t}\)

with n = 2, α = 0, and β = 1.

Since α + = i is a simple root of the characteristic equation

\(\lambda^2 + 1 = 0\)

we should try a particular integral of the form

\(\begin{aligned} y_p &= t \left [F_1 (t) e^{\alpha t} \cos{\beta t} + G_1 (t) e^{\alpha t} \sin{\beta t} \right ] \\ &= t \left [F_1 (t) \cos t + G_1 (t) \sin t \right ] \\ &= t \left [ \left (A_0 t + A_1 \right ) \cos t + \left (B_0 t + B_1 \right ) \sin t \right ] \\ &= \left (A_0 t^2 + A_1 t \right ) \cos t + \left (B_0 t^2 + B_1 t \right) \sin t. \end{aligned}\)

Substituting yp into the differential equation, we have the identity

\(\begin{aligned} t \cos t &= y_p'' + y_p \\ &= \left [ \left(A_0 t^2 + A_1 t \right ) \cos t + \left (B_0 t^2 + B_1 t \right ) \sin t \right ]'' + \left[\left(A_0 t^2 + A_1 t \right ) \cos t + \left(B_0 t^2 + B_1 t \right ) \sin t \right ] \\ &= \left [2A_0 \cos t + 2 \left (2A_0 t + A_1 \right )(-\sin t) + \left (A_0 t^2 + A_1 t \right )(-\cos t) + 2B_0 \sin t + 2 \left (2B_0 t + B_1 \right ) \cos t + \left (B_0 t^2 + B_1 t \right )(- \sin t) \right ] \\ &\qquad +\left[\left(A_0 t^2 + A_1 t \right ) \cos t + \left(B_0 t^2 + B_1 t \right ) \sin t \right ] \\ &= [4B_0 t + (2A_0 + 2B_1)] \cos t + [-4A_0 t + (-2A_1 + 2B_0)] \sin t. \end{aligned}\)

Comparing both sides, we have

\(\begin{cases} 1 = 4B_0\\ 0 = 2A_0 + 2B_1 \\ 0 = -4A_0 \\ 0 = -2A_1 + 2B_0 \end{cases}\)

\(A_0 = 0, \quad A_1 = B_0 = \frac{1}{4}, \quad B_1 = 0.\)

\(y_p = \frac {1} {4} t \cos t + \frac {1}{4} t^2 \sin t.\)

Condensed: the full section is in Wikipedia.

Example 2

Consider the following linear nonhomogeneous differential equation:

\(\frac{dy}{dx} = y + e^x.\)

This is like the first example above, except that the nonhomogeneous part (\(e^x\)) is not linearly independent to the general solution of the homogeneous part (\(c_1 e^x\)); as a result, we have to multiply our guess by a sufficiently large power of x to make it linearly independent.

Here our guess becomes:

\(y_p = A x e^x.\)

By substituting this function and its derivative into the differential equation, one can solve for A:

\(\frac{d}{dx} \left( A x e^x \right) = A x e^x + e^x\)

\(A x e^x + A e^x = A x e^x + e^x\)

\(A = 1.\)

So, the general solution to this differential equation is:

\(y = c_1 e^x + xe^x.\)

Example 3

Find the general solution of the equation:

\(\frac{dy}{dt} = t^2 - y\)

\(t^2\) is a polynomial of degree 2, so we look for a solution using the same form,

\(y_p = A t^2 + B t + C,\)

Plugging this particular function into the original equation yields,

\(2 A t + B = t^2 - (A t^2 + B t + C),\)

\(2 A t + B =(1-A)t^2 -Bt -C,\)

\((A-1)t^2 + (2A+B)t + (B+C) = 0.\)

which gives:

\(A-1 = 0, \quad 2A+B =0, \quad B+C=0.\)

Solving for constants we get:

\(y_p = t^2 - 2 t + 2\)

To solve for the general solution,

\(y= y_p + y_c\)

where \(y_c\) is the homogeneous solution \(y_c = c_1 e^{-t}\), therefore, the general solution is:

\(y= t^2 - 2 t + 2 + c_1 e^{-t}\)

Tani ti. Asnjë kalkulator nuk e zgjidh këtë, por pjesët e saj janë të llogaritura. Provo një më poshtë, ose shkruaj tënde.

Mbaje punën tënde

Një llogari e lirë shtohet shënime në çdo mësim, një regjistrim të asaj që ju keni përfunduar, problemet tuaja të zgjidhura në një vend, dhe një mësues që ju mund të pyesni rreth kësaj faqeje. Matematika vetë është e hapur për të gjithë, të regjistruar apo jo.

Regjistrohu Hyr

Simbolet e përdorura këtu

Prek çdo simbol për përkufizimin e plotë, një fotografi dhe se çfarë do të thotë çdo shkronjë në të.

Pyetja që bëjnë njerëzit

What is a differential equation?

An equation whose unknown is a function, relating it to its own derivatives. "The rate of growth is proportional to the population" is y′ = ky, and solving it means finding y as a function of time.

Why does the solution have arbitrary constants?

Integrating loses information: many functions share the same derivative. An n-th order equation has n constants, fixed by n initial or boundary conditions.

Pjesa e kësaj faqeje është adaptuar nga Wikipedia (CC BY-SA 4.0). E përmbledhur dhe ri-shkruar këtu; gabimet janë tona.

Më shumë në Differential Equations