Determine interval of absolute stability for modified euler

Assignment Help Simulation in MATLAB
Reference no: EM132292967

Question 1. Let θ ∈ [0, 1] be a constant and denote tn+θ = (1 - θ)tn + θtn+1. Consider the generalised midpoint method

yn+1 = yn + hf (tn+θ, (1 - θ)yn + θyn+1),

and the theta-method

yn+1 = yn + h[(1 - θ)f (tn, yn) + θf (tn+1, yn+1)],

for the solution of

(1) y' = f (t, y), t ∈ (a, b]
     y(a) = y0.

(a) Suppose that y ∈ C3[a, b]. Find the truncation error for each method and show that both methods are of order two iff θ = 1/2.

(b) Show that the methods are absolutely stable for any mesh-size h when θ ∈ [1/2, 1]. Determine the intervals of absolute stability of the methods when 0 ≤ θ < 1/2 .

(c) Consider the trapezoidal method, that is the θ-method for θ = 1/2. Consider the model problem

y' = λy, t > 0
y(0) = 1

with a real constant λ < 0. Show that the solution of the trapezoidal method is

yn = ((1 + 1/2λh)/(1 - 1/2λh))n,n ∈ N.

Rewrite the solution formula as

yn = exp((log(1 + 1/2λh) - log(1 - 1/2λh)/h)tn

and use Taylor polynomial expansions of log(1 ± u) about the point u = 0 to show that

(2) y(tn) - yn = -1/12h2λ3tneλtn + O(h4).

So for h small, the error is almost proportional to h2.

Question 2. Consider the initial value problem

(3) y'(t) = -y(t) + 2 cos(t), t ∈ (0, 1]
     y(0) = 1.

(a) Apply an appropriate method for solving first-order ordinary differential equations to show that the exact solution of the IVP (3) is y(t) = sin(t) + cos(t)). Write a Matlab function to implement it.

(b) Apply the forward Euler method to solve the above IVP numerically. Use the feuler.m Matlab function discussed in the IT sessions:

function [tnodes,y] = feuler(f, t_interval, N, y0)

y= y0;
yold=y0(:); %initial conditions

t0 = t_interval(1);
tN = t_interval(2);

h=(tN- t0)/N; %mesh-size

tnodes = linspace(t0, tN, N+1); %the nodes of the partition

for tn = tnodes(1:end-1)
ynew = yold+h*feval(f,tn,yold);

y =[y; ynew.'];
yold = ynew;

end

Plot the exact solution and the numerical approximations. Verify that the forward Euler method converges with order one by finding the Experimental Order of Convergence (EOC) (Use the code provided in the IT Sessions). Present your results in a table (see, for example, Table 1) and discuss them.

The Forward Euler Method

h                   Error: max1≤n≤N |y(tn) - yn|   EOC
0.5
0.25
0.125
0.0625
0.03125

Table 1: An example

(c) (i) Apply the implicit Euler method to solve the above initial value problem numerically. Use the imp euler.m Matlab function discussed in the IT sessions:
function [tnodes,y] = imp_euler(f, t_interval, N, y0) y= y0;
yold=y0(:); %initial conditions

t0 = t_interval(1);
tN = t_interval(2);

h=(tN- t0)/N; %mesh-size
tnodes = linspace(t0, tN, N+1); %the nodes of the partition

%options = optimset('Display','off');

for tnew = tnodes(2:end)
FixedPointFunction = @(x)odefun(x,tnew,f,yold,h);

%ynew = fsolve(FixedPointFunction,yold, options);

ynew = fsolve(FixedPointFunction,yold);

y =[y; ynew.'];

yold = ynew;
end

function rhs = odefun(x,tnew, f,yold,h)

rhs(:)= x(:)-h.*f(tnew,x)-yold(:);

Plot the exact solution and the numerical approximations. Verify that the implicit Euler method converges with order one by finding the Experimental Order of Convergence (EOC). Present your results in a table (see, for example, Table 1) and discuss them.

(ii) Use the Matlab function imp euler.m as the main ingredient for the implementation of the trapezoidal method

yn+1 = yn + h/2(f (tn, yn) + f (tn+1, yn+1) ,

in a Matlab function my trapezodial.m. Use the Matlab my trapezoidal.m to compute numer- ical approximations to the solution of (3). Verify that the trapezoidal method converges with

order two. Present your results in a table and discuss them. [10]

Question 3. (a) The Butcher table of the improved Euler is

6_table1.jpg

(i) Show that the interval of absolute stability for the improved Euler method is -2 < hλ < 0.

(ii) Show that this method is consistent.

(iii) Use Taylor expansions to show that this method converges with order two.

(iv) Write a Matlab function my improved euler.m to implement the improved Euler method. In- vestigate numerically your theoretical results and report your findings.

(b) The Butcher table of the modified Euler is

1418_table2.jpg

(i) Determine the interval of absolute stability for the modified Euler.

(ii) Write a Matlab function my modified euler.m to implement the modified Euler method. Inves- tigate experimentally the stability and discuss your findings.

(iii) Verify experimentally that the modified Euler method converges with order two. Present your results in a table.

(c) The Butcher table of Heun's method is

2194_table3.jpg

(i) Write a Matlab function my heun.m to implement the third order Heun's method and verify experimentally that the method has order of convergence equal to three with respect to h. Present the results in a table.

(d) The Butcher table of the Kutta's third order method is

2196_table4.jpg

Write a Matlab function my k3.m to implement the Kutta's third order method and verify experi- mentally that the method has order of convergence equal to three with respect to h.

(e) The Butcher table of the classic RK fourth-order method (RK4) is

695_table5.jpg

Write a Matlab function my rk4.m to implement the RK4 method and verify experimentally that the method has order of convergence equal to four with respect to h. Present the results in a table.

(f) Consider the solution of the IVP

(4) y' = (1/(1 + t2)) - 2y2, t ∈ (0, 1]

    y(0) = 0.

(i) Show that the analytical solution of the above IVP is y(t) = t/1+t2.

(ii) Apply all the aforementioned numerical methods to compute approximations to the solution of the IVP (4). Verify the values (to six decimal places) given in Table 1 for t1 with h = 0.1 and the methods shown. Comment on the numerical results. Plot all the numerical approximations

1795_table6.jpg

Table 2:

and the exact solution in the same graph.

Question 4. (Implicit - explicit Euler method.) We write an initial value problem in the form
        y' = f (t, y) + g(t, y), a ≤ t ≤ b,

               y(a) = y0,
i.e., we decompose the right-hand side of the ODE into two parts. With the usual notation, consider the following method for problem (5)

yn+1 = yn + hf (tn+1, yn+1) + hg(tn, yn), n = 0, . . . , N - 1,

with y0 := y0. Obviously, method (6) is a combination of the implicit and the explicit Euler methods, and it reduces to them, when g = 0 and f = 0, respectively. Prove that the order of accuracy of the new method is one, equal to the order of the methods we combined to construct it. Assume now that f satisfies the one-sided Lipschitz condition

∀t ∈ [a, b] ∀z, w ∈ R (f (t, z) - f (t, w))(z - w) ≤ 0,

and g satisfies the global Lipschitz condition with constant L, that is

∃L ≥ 0 ∀t ∈ [a, b] ∀z, w ∈ R |g(t, z) - g(t, w)| ≤ L|z - w|.

Prove d convergence (error estimate) of the method.

[Hint: Use the ODE to check that
y(tn+1)-y(tn) - hf (tn+1, y(tn+1)) - hg(tn, y(tn))
=y(tn+1) - y(tn) - hy'(tn+1) - h[G(tn+1) - G(tn)]

with G(t) := g(t, y(t)).]

[Comment: In some cases, when the functions f and g exhibit different behaviour, method (6) com- bines the advantages of both methods, from which it was constructed, without inheriting their draw- backs. For instance, if we use only the explicit Euler method, the constant in the error estimate nec- essarily depends also on f. On the other hand, if f is, e.g., linear, the computation of yn+1 in (6) is very easy, while if we use only the implicit Euler method and g is nonlinear, then to advance in time we
need to solve a nonlinear equation at every time level.]

Question 5. Consider the initial value problem

 y' = λy(t) + g'(t)) - λg(t), t ≥ 0,

 y(0) = y0,

where λ ∈ C, Re λ << 0.

(a) Show that f (t, y) := λy + g'(t)) - λg(t) satisfies a global Lipschitz condition with respect to the y-variable with Lipschitz constant L = |λ|.

(b) Show that the exact solution of (7) is given by

y(t) = g(t) + eλt(y0 - g(0)), t ≥ 0.

Note that the exact solution has two components, g(t) and eλt(y0 - g(0)). If g(t) does not change rapidly over time and λ << 0, i..e. the Lipschitz constant is large, the second component of the solution is negligible with respect the first one for t large enough. On the other hand, the second component, which generally is small and does not influence the behaviour of the solution y(t), changes rapidly for t in the vicinity of 0. Differential equations of the above form with λ negative but large in magnitude are examples of stiff differential equations. When we apply a numerical method to approximate the solution of stiff differential equations, the truncation error may be satisfactory small with not too small a value of h, but the large size of λ , depending on the stability properties of the numerical method, may force h to be much smaller in order that h¯ := λh is in the stability region.

(c) Consider the stiff problem

(8) y' = λy(t) + (1 - λ) cos(t) + (1 - λ) sin(t), t ≥ 0,

y(0) = 1,

whose exact solution is y(t) = sin(t) + cos(t). Notice that the exact solution does not depend on the parameter λ.

(i) Apply the forward Euler method to approximate the solution of the above IVP. Consider the problem (8) with λ = -1, -10, -50. Find an upper bound on the mesh-size h that guarantees stability for the forward Euler method applied to each of the three problems. Use the feuler.m Matlab function discussed in the IT sessions (see the code below) to investigate numerically your theoretical results. Consider the cases h = 0.5, 0.1, 0.01. Report the results for t = 1, 2, 3, 4, 5, as in Table 2. Report your findings.

(ii) Apply the backward Euler method to approximate the solution of the above IVP. Consider the problem (8) with λ = -1, -10, -50. Use the beuler.m Matlab function discussed in the IT sessions (see the code below) and consider again the cases h = 0.5, 0.1, 0.01. Report the results for t = 2, 4, 6, 8, 10 as in Table 2. Report your findings.

(iii) Apply the trapezoidal method to approximate the solution of (8). Consider again the cases h = 0.5, 0.1, 0.01 and report the results for t = 2, 4, 6, 8, 10 as in Table 2.

 y' = f (t, y), t ∈ (0, T ]
 y(0) = y0.

Use the Matlab my trapezoidal.m to find numerical approximations to the solution of (3). Verify that the trapezoidal method converges with order two. Present your results in a table. Report your findings.

Question 6. (a) Let M ∈ Rm×m be a negative semidefinite matrix, xT M x ≤ 0 for x ∈ Rm. Consider the initial value problem

y'(t) = M y(t), t ≥ 0,

y(0) = y0.

693_table7.jpg

Table 3: An example

(i) Show that the Euclidean norm "y(·)" is a decreasing function.

(ii) With the usual notation, consider the approximations yn, n ≥ 0, produced by the implicit Euler method with a fixed time-step h > 0. Show that the implicit Euler method mimics the continuous problem, in the sense that "yn+1" ≤ "yn", n ∈ N.

(iii) Consider the approximations yn, n ≥ 0, produced by the trapezoidal method with a fixed time-step h > 0. Show that the method mimics the continuous problem, in the sense that ||yn+1|| ≤ ||yn||, n ∈ N.

(b) Consider the initial value problem

x'(t) = -2x(t) + y(t), t ≥ 0,
y'(t) = 2x(t) - 2y(t), t ≥ 0,
x(0) = x0, y(0) = y0.

Show that the matrix 2070_Matrix.jpg is negative definite to conclude that x2(t) + y2(t) is decreasing. Verify numerically the theoretical results derived in (a).

Question 7. Determine the coefficients α1, α2, β2, β1, β0 of the general two-step method

yn+2 + α1yn+1 + α0yn = h(β2fn+2 + β1fn+1 + β0fn)

such that its order p be at least two, at least three, and at least four, respectively. Does there exist a method with p = 4? Does there exist a method with p = 5? Are the resulting methods stable?

Question 8. Determine the values of the parameter α for which the three-step method

yn+3 - (α + 1)2yn+2 + α (α2 + 2α + 2)yn+1 - α2(α + 1)yn = hf (tn+3, yn+3) is stable.

Reference no: EM132292967

Questions Cloud

Discuss the current government health care expenditures : Discuss the current government health care expenditures in the United States.
Experiences of other firms dealing with crises : With the second crash of Boeing 737 - Max leading to more than a hundred people losing lives, Boeing is facing an unprecedented challenge it has never faced
What are some limitations of financial statements analysis : This week we are learning about financial statement analysis and how to compute various ratios. This is a great way to understand how a company is doing.
Which statements are admissible and which are not admissible : Provide a Miranda analysis and determine which statements are admissible and which are not admissible.
Determine interval of absolute stability for modified euler : MA7006 - Numerical Methods: Convergence and stability theory - University of Chester - Determine the interval of absolute stability for the modified Euler
Examine the concept of time value of money in relation : Examine the pros and cons of a sinking fund from the viewpoint of both a firm and its bondholders.
What is efficiency and what is management : What is efficiency? What is management? Which of the following environments represents the highest level of environmental uncertainty?
Create a tax plan for the future redemption : Create a tax plan for the future redemption of the client's stock owned in the construction company that will not be taxed according to Section 301 of the IRC.
Prepare an analysis of a public company : Company paper analysis: Using the analytical tools each of you will learn, each student will prepare an analysis of a public company.

Reviews

len2292967

4/25/2019 2:05:06 AM

This piece of coursework represents 50% of the total assessment of this module. You must answer all the questions and type your answers in LATEX. Solutions to questions must contain a sufficient level of working to obtain full marks. A completely correct, full solution to a question will result in full marks for that question. You should include as much detail in your answers as possible: method marks are available should your final answer be incorrect. Without evidence of a method, it may prove impossible to give such marks. Reference any additional resources that you use (e.g. textbooks, online resources).

Write a Review

Simulation in MATLAB Questions & Answers

  Calculate the stress intensity factor

Use the three-parameter zone finite element method or the boundary collocation method to calculate the stress intensity factor K, at the crack tip for the plate

  Build a simulation using newtons laws of motion

Build a new and different simulation of your own using Newtons laws of motion and Show the code and describe how it works

  Write the specification of load mover

Write the specification of LOAD MOVER detailed of the whole design and precise for automatic control section and divide the design into various modules and Is the kernel required if yes which one?

  Design the automatic control section using statecharts

Aim of this project is to design an embedded system which can move loads from one place to another. The system can be operated manually, automatically and wirelessly.

  Need an expert who can model a drill in simulink

Need an expert who can model a drill in Simulink. Working model of a drill needing for an improvment to behave more realistically as a drill to drill through plastic block.

  Project is on load frequency control using fpid

Project is on load frequency control using FPID tuned using GA and PSO algorithm and the system is a two area system.

  Number of packets received with time

Let x be the number of packets received with time -

  Build a matlab based graphical user interface

Build a Matlab based graphical user interface (GUI) that operates in conjunction with a base Matlab/ Simulink simulation program. Any base simulation is considered acceptable.

  Build a matlab based graphical user interface

Build a Matlab based graphical user interface (GUI) that operates in conjunction with a base Matlab/ Simulink simulation program. Any base simulation is considered acceptable.

  Simulate the standardised sum of independent

Simulate the standardised sum of independent and identically distributed variates - Fit a linear regression model as in Q5, and plot your estimates for β0 and β1 as N increases, together with a line indicating their true values. Supply your code.

  Plot the original periodic square wave

Plot the original periodic square wave on the same graph. Comment on the difference between the original periodic square wave and its truncated Fourier series presentation.

  Use matlab to plot the function

Plot the original periodic square wave on the same graph. Comment on the difference between the original periodic square wave and its truncated Fourier series presentation.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd