Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask MATLAB Expert

Question 1 (From Chapter 1 of the Numerical Analysis part of the Text)

862_Two corridors of widths.png

The diagram above shows two corridors of widths a and b (a ≤ b) which meet at right angles. The longest rectangular object (desk or piano etc) of width w (w < a) that can be manoeuvred around the corner has a length l, given by:

l = (mb + a -w√(1+m2))√(1+1/m2)                         (1)

provided that the object cannot be moved vertically. The value of m can be found from the condition that in the interval [0, (a/b)1/3 ] m is the only root of the equation:

(b2 - w2 )m6 + w2m4 - 2abm3 + w2m2 + a2 - w2 = 0      (2)

(a) Write a program using MATLAB to solve Eq. (2) by the Regula Falsi method, and hence find m and l. As a test, for a = 50, b = 70, and w = 40, l = 87.4723. Discuss how the initial points should be chosen.

(b) For thin objects like a ladder, w ≈ 0. When w = 0 show that the method will not work if the interval [0, 1] is searched. Explain why this happens. Hint: solve Eq. (2) analytically for w = 0.

Question 2 : a) (from Chapter 2 of the Numerical Analysis part of the Text) Write a program that implements the LU factorisation algorithm 2.3, with partial pivoting, given in the Text and in the supplementary section with MATLAB versions of the algorithms. Your code should have separate functions for the factorization, forward and back-substitution steps. Check your code by analysing the problem solved on page 41 of the Text:

102_factorisation algorithm.png

b) (From Chapter 3 of the Numerical Analysis part of the Text) Implement the least squares fitting algorithm 3.2 given in the Lecture Notes and in the supplementary section with MATLAB versions of the algorithms. Use your LU factorisation program (from part (a) of this question) to solve the linear equations and a separate function to evaluate the various expressions. Check your program by analysing the problem given on pages 67-68 of the Text.

c) As an example for an application, you are given the following x-y data representing student attendance at lectures in a particular course:

point

x (week)

y (no of students at lecture)

1

1

64.0

2

2

68.0

3

3

60.0

4

5

55.0

5

6

62.0

6

9

64.0

7

10

52.0

8

11

57.0

Use your program to find the coefficients for a least squares fit to these data using the expansion:

f(x) = a0 + a1x + a2x2 + a3x3

Write your program in MATLAB so that it prints the value of f (x) at each of the x data points. How well does f(x) fit the data?

Question 3:

The SIR model - where "S" stands for susceptible, "I" for infected, and "R" for recovered - is one of the simplest mathematical models for the spread of an infectious disease among a population. The equations are:

dS/dt = -aS(t)I(t)

dI/dt = aS(t)I(t) - bI(t)

and

R(t) = Ntot - S (t) - I (t)

where t is time, Ntot is the total number of people in the population, a and b are constants. The constant b is related to the period of infection, p, by p = 1/b. Thus b = 1/3 means that the average period of infection is 3 days. The model also assumes that recovered individuals do not get re-infected.

Assume that a single infected person with a disease for which a = 0.0001 and b = 1/3 arrives on an island with a population of 10,000, making the total number of people Ntot = 10,001.

(a) Perform one step (with Δt = 1 day) of the numerical integration of these ODE's using the fourth order Runge-Kutta method (5.2) to calculate S (1), I(1) and R(1).

(b) By using the ode45 estimate the number of days required for the disease to ‘run its course', i.e. for I to be < 0.5. (ode45 - intrinsic MATLAB function to solve systems of ODEs.)

Question 4:

The torsion (twisting) of a long prismatic bar is governed by the following Poisson equation:

 ∂2Φ/∂x2 + ∂2Φ/∂y2 = - 2       (1)

where Φ is the torsion function whose value is zero at the edges of the bar.

460_Two corridors of widths1.png

To solve (1) for a bar with a rectangular cross-section, of any lengths a in the y-direction and b in the x-direction, the cross-section is to be divided into an equal number (n) internal nodes in both the x- and y- directions. For node (i,j) with i denoting the x-direction, the finite difference approximations to the two derivatives in (1) are:

2Φi,j/∂x2 ≈ Φi+1,j - 2Φi,j + Φi-1,j/hx2

and

2Φi, j/∂y2 ≈ Φi,j+1 - 2Φi,j + Φi, j-1 x/h2y           (2)

where hx is the x-distance between adjacent nodes and hy is the y-distance.

(a) Show that the use of (2) leads to the following equation for Φi,j :

Φi,j = (Φi+1,j + Φi-1,j)a'/2 + (Φi,j+1 + Φi,j-1)b'/2 + a'b'(a2 + b2)/(n+1)2      (3)

where a' = a2/a2 + b2  and b2/a2 + b2

(b) Equation (3) leads to the following form suitable for solution by an iterative technique:

Φ(k+1)i,j = Φ(k)i,j + resid                                                (4)

where the superscript indicates iteration number. The residual term, resid, is given by

resid = (Φ(k)i+1,j + Φ(k)i-1,j)a'/2 + (Φ(k)i,j+1 + Φ(k)i,j-1)b'/2 - Φ(k)i,j + a'b'(a2 + b2)/(n + 1)2Φ(k)      (5)

Write a MATLAB program to solve (4) and (5) for user inputs of n, lengths a and b, and maximum number of iterations. The program is to output the maximum value of Φ. As a test run your program for n = 50, a = 62cm and b = 75.5cm. Restrict maximum number of iterations to 1000 and set convergence tolerance, ε = 0.2.

Algorithm for Solving Equation (4) in a rectangular area b x a

In: Number of nodes in both directions, n
Lengths a and b
Maximum number of iterations, max_iter
Convergence tolerance, ε

Out: phi(n, n) - the approximate steady state torsion function

comment: initialise all elements of phi to zero

adash = a^2/(a^2+b^2) bdash = b^2/(a^2+b^2)

last = adashxbdashx(a^2+b^2)/(n+1)^2 do for k = 1, max_iter

maxresid = 0.0 do for i = 2, n+1

do for j = 2, n+1

resid = 0.5x(phi(i+1,j) + phi(i-1,j))xadash + 0.5x(phi(i,j+1) + phi(i,j-1))xbdash - phi(i,j) + last

if |resid| > maxresid then

maxresid = |resid|

endif

phi(i,j) = phi(i,j) + resid

enddo enddo

if |maxresid| < ε then

exit with solution in phi

endif enddo

error: maximum number of iterations exceeded

MATLAB, Engineering

  • Category:- MATLAB
  • Reference No.:- M91677580

Have any Question?


Related Questions in MATLAB

Question a safe prime is a prime number that can be written

Question : A safe prime is a prime number that can be written in the form 2p + 1 where p is also a prime number. Write a MATLAB script file that finds and displays all safe primes between 1 and 1000.

Lab assignment - matlab matrix relationallogical operators

Lab Assignment - MATLAB Matrix, Relational/Logical Operators and Plotting This laboratory exercise/assignment will involve you 1) practicing multiplication operators in MATLAB; 2) practicing relational and logical operat ...

Assignment matlab programmingusing appropriate matlab

Assignment: MatLab Programming Using appropriate MatLab syntax, write the code required to analyse and display the data as per the problem description. The order of the MatLab Program should be as follows: Variables and ...

Assignment details -need to write a code for connecting

Assignment Details - Need to write a code for connecting segments (Lines) a special case of TSP. The problem is to connect lines in 2d/ 3d space with path obstructions. Can you help me write the code for this? Hope you m ...

What comparison of means test was used to answer the

What comparison of means test was used to answer the question

Suppose that you have used some concept learning algorithm

Suppose that you have used some concept learning algorithm to learn a hypothesis h1 from some training data. You are interested in knowing the accuracy that the hypothesis can be expected to achieve on the underlying pop ...

Question 1 manipulate spectral imagehyperspectral images

Question 1. Manipulate spectral image Hyperspectral images can be seen as a generalisation of normal colour images such as RGB images. In a normal RGB colour image, there are 3 channels, i.e. channels for red colour, gre ...

Assignmentq1 find the laplace transforms of the following

Assignment Q.1 Find the Laplace transforms of the following functions: (a) t 2 + at + b and (b) sin(2nΠt/T) Q.2 Find f (t) for the following F(s) = α[ f (t)]. (i) 5/(s + 3), (ii) 1/s 2 + 25, (iii) 1/s(s+1) Q.3 Find the L ...

Suppose that a student has the option of enrolling for a

Suppose that a student has the option of enrolling for a single elective during a term. The student must select a course from a limited list of options: "English, " "History, " "Biology, " "Computer, " or "Math." Constru ...

Assignment -matlab codes and simulated model in

Assignment - Matlab codes and simulated model in simulink/matlab and truetime. 1. Matlab codes and simulink model for pid controller optimization using particle swarm optimization (PSO) my plant is integer order 1000/(s^ ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As