Tag Archives: Euler’s Method

Differential Equations – Complex Roots

In order to achieve complex roots, we have to look at the differential equation:
Ay” + By’ + Cy = 0

Then we look at the roots of the characteristic equation:
Ar虏 + Br + C = 0

After solving the characteristic equation the form of the complex roots of r1 and r2 should be:
位 卤 渭i

We refer back to the characteristic equation, we then assume that all the solution to the differential equation will be:
y(t) = e^(rt)

By plugging in our two roots into the general formula of the solution, we get:
y1(t) = e^(位 + 渭i)t
y2(t) = e^(位 – 渭i)t

Since these two functions are still in complex form, and we started the differential equation with real numbers. It would best if our solution is also real numbers. In order to transform the complex solution into a real solution, we need to use the Euler’s Formula.
e^(i茻) = cos茻 + isin茻
Another form of the Euler’s Formula is:
e^(-i茻) = cos(-茻) + isin(-茻)
e^(-i茻) = cos茻 – isin(茻)

Now we split up both of the solutions into two parts one with real exponent and one with an imaginary exponent. Afterwards, we then applied Euler’s Formula.
y1(t) = e^(位t) e^(渭it) = e^(位t) [cos(渭t) + isin(渭t)]
y2(t) = e^(位t) e^(-渭it) = e^(位t) [cos(渭t) – isin(渭t)]

After doing all of that work, we are still left with a part of a complex solution. But we are able to get rid of the complex part. We can rewrite this solution as:
y(t) = c1y1(t) + c2y2(t)
y1(t) + y2(t) = 2e^(位t) cos(渭t)
Simply it further:
u(t) = 陆y1(t) + 陆y2(t) = e^(位t) cos(渭t)
Therefore:
c1 = c2 = 陆

We can get the second part of the solution by subtracting the two original solutions:
y1(t) – y2(t) = 2ie^(位t) sin(渭t)

At a glance, it still look like a complex solution, but looking at the two constants c1 and c2 we can result in a real solution by dividing it by 2i.
c1 = 陆i
c2 = -陆i

The second solution would be:
v(t) = 陆i y1(t) – 陆i y2(t) = e^(位t) sin(渭t)

All of the work just to achieve the two real solutions:
u(t) = e^(位t) cos(渭t)
v(t) = e^(位t) sin(渭t)

These two real solutions is also a general solution. So if the roots of the characteristic equation result in r1,2 = 位 卤 渭i, the general solution to this would be:
y(t) = c1 e^(位t) cos(渭t) + c2 e^(位t) sin(渭t)

EXAMPLE
y” – 10y’ + 29y = 0, y(0) = 1, y'(0) = 3

The characteristic equation would be:
r虏 – 10r + 29 = 0

The roots would be:
5 卤 2i

General Solution:
y(t) = e^(5t)[c1 cos(2t) + c2 sin(2t)]
y'(t) = 5e^(5t)[cos(2t) + c2 sin(2t)] + e^(5t)[-2 sin(2t) + 2c2 cos(2t)]

We use the initial values to find the constants.
y(0) = 1
We substitute all the t’s with 0’s and set it to equal 1.
y(0) = e^(5(0))[c1 cos(2(0)) + c2 sin(2(0))] = 1
1[c1(1) + c2(0)] = 1
“c1 = 1

y'(0) = 3
We substitute all the t’s with 0’s and set it to equal 3.
y'(0) = 5e^(5(0))[cos(2(0)) + c2 sin(2(0))] + e^(5(0))[-2 sin(2(0)) + 2c2 cos(2(0))] = 3
5[1 + 0] + 1[0 + 2c2] = 3
5 + 2c2 = 3
c2 = -1

Particular Solution:
y = e^(5t)[cos(2t) – sin(2t)]

If you still do not understand this study guide you may go visit these websites or you can personally ask me, they go into more detail solving the differential equation of complex root solutions with characteristic equation. Thank you.

Videos from Khan Academy
Part I

Part II

Part III

Euler’s Method Exercises

Hi everyone,

Here are some examples of Euler’s Method problems for you to try. 聽These are for practice only, they will not be collected.
NOTE: The first example is the one we solved in class on Thursday – I’m including it here for your reference.

Questions? Problems? Leave a comment on this post and I’ll respond here.

Example 1. 聽Given the initial value problem \frac{dy}{dt} = 3-2t-0.5y with y(0)=1, approximate聽the value of y(1). 聽Use 5 steps.

Example 2.聽 Consider聽y' = y \sin{t} -1. 聽Suppose y(0)=2. 聽What is y(3)? 聽Use a step size of h=0.5.

Example 3. If y'=\frac{x-4}{x-y+1}, use Euler’s method with 4 steps to approximate y(8) for the particular solution satisfying y(3)=3

Example 4.聽 Given \frac{dy}{dt}=e^\frac{t^2}{y^2+1} - y with y(-0.82)=0.97, estimate the value of y(1.28) using 6 steps.

Solutions to these examples are provided here for your reference – if you notice an error, please let me know by leaving a comment below (or sending an email).