x ˙ = [ − 8 0 . 6 7 9 . 6 1 1 9 . 4 − 1 2 0 . 4 ] x
Where
x = [ x 1 ( t ) x 2 ( t ) ] T x ˙ = [ d t d x 1 d t d x 2 ] T x ( 0 ) = [ 1 2 ] T
The goal is to solve this system of equations numerically, using the Implicit Euler Integration scheme. Use a time step h = 0 . 1 s . By Applying the method, the above set of differential equations can be converted into a set of difference equations of the form:
x k + 1 = A x k
Compute the eigen values of the matrix A . Let each of them be λ 1 and λ 2 .
Enter your answer as ⌊ 1 0 0 ( λ 1 + λ 2 ) ⌋ .
Note: ⌊ . ⌋ denotes the Floor function and k denotes the time series index.
Bonus: Plot the solutions and comment on why you get such a result, after comparing it with the closed form solution of the differential equations. Vary the value of the time step h and report your observations with reasoning. How is this method different from the Explicit Euler Integration scheme? Quantitatively compare both methods.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Problem Loading...
Note Loading...
Set Loading...
The one-dimensional version of implicit Euler is:
x k + 1 = x k + x ˙ k + 1 Δ t
The difference between this and explicit Euler is that the derivative term comes from the present processing interval, rather than from the previous one. Long story short, the implicit Euler method is more numerically stable than the explicit method, but it is much more computationally expensive to implement for non-linear systems. For linear systems, you still get the stability benefits, but with very little extra processing required. I've always found that to be interesting.
For this problem, the implicit Euler integration looks like:
[ x 1 k + 1 x 2 k + 1 ] = [ x 1 k x 2 k ] + Δ t [ α γ β σ ] [ x 1 k + 1 x 2 k + 1 ]
Re-arranging this a bit results in:
[ 1 − α Δ t − γ Δ t − β Δ t 1 − σ Δ t ] [ x 1 k + 1 x 2 k + 1 ] = [ x 1 k x 2 k ]
Pre-multiply both sides by the inverse of this matrix to get it into the requested form. The answer consists of the eigenvalues of the following matrix.
[ 1 − α Δ t − γ Δ t − β Δ t 1 − σ Δ t ] − 1