程序代写代做代考 go Solution of Week 10 Lab (Prepared by Yuan Yin)

Solution of Week 10 Lab (Prepared by Yuan Yin)
November 6, 2020
1 Exercise 1:
1.1 Levenberg-Marquardt Method:
(a).
Run ‘bandem.m’ to see the output. (b).
• As one can see from the output, for the good guess, numf = 21 and numg = 11. However, for the bad guess, we need more function evaluations (numf = 77 and numg = 39), i.e. less efficient, to get the solution.
• For the good guess, λ starts from a small value and keeps decreasing. However, we know from lecture that a small λ signals a more like Gauss-Newton step. This actually makes sense since a good guess is close to the real solution, and Gauss-Newton method is expected. While for the bad guess, λ starts from a huge number. This is because initially, our guess is far from the solution, and we need to make the step more like Steepest Descent. As we move increasingly closer to the real root, we need to decrease the value of λ to make the step more like Gauss-Newton
• L-M better than Damped G-N better than Undamped G-N.
1.2 The Optimization toolbox:
(a).
• Run ‘bananaScript.m’ to see the ‘Stopping Criteria Details’.
• Why we can fool MATLAB into minimising the ‘banana’ function by calling lsqnonlin? —— This is because the ‘banana’ function happens to be the cost function of some other function! We can use lsqnonlin to minimise the cost function, i.e. find the min of the ‘banana’ function!
(b).
Read ‘healthScript.m’.
2 Exercise 2: Euler’s Method for a Scalar 1st Order ODE: 2.1 Error Propagation in Euler’s Method:
Run the codes and try to understand the outputs. 1

One Interesting Point You May like to Know:
In lecture, we know that when nearby solutions approach each other, ∂f < 0 and vice versa. However, why we have such relationship? Explanation: ∂y Suppose we change I.C. from y0 to y0 +ε, which generates our new solution, yε. We assume w.l.o.g. that the new solution is larger than the original one, i.e. yε − y = ∆y > 0.
⇒ d (yε −y) = d(∆y) = f(t,yε)−f(t,y) = ∂f ×∆y (A little bit hand waving, but will work if we dt dt ∂y
suppose ∆y is small.)
Since ∆y > 0, d(∆y) and ∂f are of the same sign.
Then ∂f < 0 ⇒ d(∆y) < 0 ⇒ nearby solutions approach each other as time evolves (and vice versa). ∂y dt 2.2 Accuracy and Stability: (a). Read the code. (b). Run the code and try to understand the outputs. Note that the aim of this part is to check that the output results are consistent with the theory, i.e. GE ∼ O(h), where h = tspan . n (c). If you are greedy, you can get a small taste of Lect 20 in advance: (1 + hJ) is called the propagation factor —— the Global Error at tk+1 = the Global Error at tk, propagated with factor (1+hJ), i.e. GEk+1 ∼ (1 + hJ)GEk. Note that J = ∂f . ∂y If we numerical errors to decrease, then we require |1 + hJ | < 1. • Since h = tspan > 0, errors must grow if J > 0. This is the reason why in the first figure,
n
errors blow up catastrophically no matter what values we choose for n;
• In the third figure, the error blows up when n = 10. This is because for y ̇ = −100(y−sin(t))+
cos(t),J=−100.Whenn=10,h=tspan=1.⇒|1+hJ|=|1+1 ×(−100)|=9>1. n10 10
2.3 Try Yourself:
[1]:
dt ∂y
%%file TryYourselfDriver.m
function TryYourselfDriver clc
y0 = 1;
tspan = [0, 2];
2

fname = @(t, y) y.^2;
n1 = 10;
n2 = 100;
[tvals,yvals1] = FixedEuler(fname,tspan,y0,n1);
yvals1
[tvals,yvals2] = FixedEuler(fname,tspan,y0,n2);
yvals2
fprintf(‘However, from first year math, y = 1/(1 – t).\n’);
exact_sol = 1 / (1 – 2);
fprintf(‘Thus, our exact solution at t = 2 should be %6.4f.\n\n’, exact_sol);
end
Created file ‘/Users/RebeccaYinYuan/MAST30028 Tutorial Answers Yuan Yin/WEEK
10/TryYourselfDriver.m’.
[2]: TryYourselfDriver
yvals1 =
1.0e+05 *
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0001
0.0002
0.0009
0.0166
5.5163
yvals2 =
1.0e+278 *
0.0000
0.0000
0.0000
0.0000
3

0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
4

0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
0.0000
1.3057
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
Inf
5

Inf
However, from first year math, y = 1/(1 – t).
Thus, our exact solution at t = 2 should be -1.0000.
What is going on?
From first year mathematics, the exact solution should be y = 1 . It is important to notice that
y exhibits an asymptotic behaviour at t = 1, i.e.
all.
∂y
1−t lim y→∞ and lim y→−∞.
t→1− t→1+
However, the Jacobian, J = ∂f = 2y, will explode near t = 1, meaning that NO method works at
Also, note that the situation for n = 100 is even worse than n = 10. This is because in n = 10 case, our step size is bigger, and we can step across the asymptote more quickly (i.e. The larger the step size, the more points we skip near t = 1.). In contrast, if n = 100, there are more points/steps distributed near t = 1, which makes J huge at many steps and the question becomes terribly conditioned.
3 Exercise 3: Euler’s Method for systems: 3.1 Converting to Systems:
(a).
θ ̈+ sin(θ) = 0 ⇒ θ ̈ = −sin(θ) By setting ω = θ ̇, we have a system of first order OEDs:
If we go one step further by setting
Then we have
(b).
Using the similar method as in part(a) above, we have:

 y ̇ = ω
 ω ̇ = η
η ̇ = −3x2yη + sin(y)ω2 + cos(x)
{ ̇ θ=ω
ω ̇ = −sin(θ) []
⃗y = ωθ
[θ′] [ ω ] [ ⃗y(2) ]
y⃗′ = ω′ = −sin(θ) = −sin(⃗y(1))
2 … 2 2
… 2
y +3x yy ̈−sin(y)y ̇ ⇒ y = −3x yy ̈+sin(y)y ̇ +cos(x)
6

If we go one step further by setting
Then we have
(c).
Similarly,
⃗u(2) 

y ⃗u =  ω 
η ω  
⃗u(3)  η′ −3x2yη + sin(y)ω2 + cos(x) −3×2⃗u(1)⃗u(3) + sin(⃗u(1))⃗u(2)2 + cos(x)
y′  u⃗′ = ω′ = 
η  = 

x ̇ = ω
ω ̇=−x=− x
r3 223 (x +y )2
y ̇ = η
η ̇=−y=− y
r3 223 (x +y )2
If we go one step further by setting
Then we have
x ⃗u = ω
y η
x′  ω   ⃗u(2)    − x  − ⃗u(1) 
(x +y )2 = (⃗u(1) +⃗u(3) )2 ⃗′ω′2232 23
u = =
y′  η   ⃗u(4) 
η′ −y ⃗u(3) 223−3 (x +y )2 (⃗u(1)2+⃗u(3)2)2
3.2 Vectorized Euler’s Method
[1]:
%%file DriverVecEuler.m
function DriverVecEuler %% PART A
clc
f_partA = @(t, y) [y(2); -sin(y(1))];
t_span = [0, 20];
n = 2000;
y0_partA = [1, 0];
[tvals_partA,yvals_partA] = FixedEulerVec(f_partA, t_span, y0_partA,n);
% Is this system periodic?
% We need to produce a phase plot:
7

x_partA = yvals_partA(:, 1); % theta values y_partA = yvals_partA(:, 2); % theta dash values
figure(1);
plot(x_partA, y_partA);
xlabel(‘theta’);
ylabel(‘theta dash’);
fprintf(‘As one can see from the phase plot, the system A is periodic!\n\n’);
%% PART B
f_partB = @(t, y) [-(8 / 3) * y(1) + y(2) * y(3); -10 * y(2) + 10 * y(3); -y(1)␣ 􏰖→* y(2) + 28 * y(2) – y(3)];
t_span = [0, 20];
n = 2000;
y0_partB = [1, 1, 1];
[tvals_partB,yvals_partB] = FixedEulerVec(f_partB, t_span, y0_partB,n);
% Is this system periodic?
% We need to produce a phase plot:
x_partB = yvals_partB(:, 1); % y_(1) values y_partB = yvals_partB(:, 2); % y_(2) values z_partB = yvals_partB(:, 3); % y_(3) values
figure(2);
plot3(x_partB, y_partB, z_partB);
xlabel(‘y_(1)’);
ylabel(‘y_(2)’);
zlabel(‘y_(3)’);
fprintf(‘As one can see from the phase plot, the system B is periodic!\n\n’);
%% Note:
% Now you can change n to 20000 to investigate furthur! end
Created file ‘/Users/hailongguo/lib/Dropbox/Teaching/subject/UoM/2020/MAST30028/
other/MAST30028Tutorial Answers Yuan Yin/Tute Answers ipynb
files/DriverVecEuler.m’.
8

[3]: DriverVecEuler
As one can see from the phase plot, the system A is periodic! As one can see from the phase plot, the system B is periodic!
9

NOTE:
• Forθ ̈+sin(θ)=0:
From part (a) in section 3.1, we have:
[θ′] [ ω ] [ ⃗y(2) ] y⃗′ = ω′ = −sin(θ) = −sin(⃗y(1))
Therefore, our input ‘fname’ = @(t, y) [y(2); −sin(y(1))]
• For
If we set ⃗y = [y1; y2; y3], we have:
 y ̇ = − 8 y + y y 13123
y ̇2 = −10y2 + 10y3
y ̇3 = −y1y2 + 28y2 − y3
 − 8 ⃗y(1) + ⃗y(2)⃗y(3)  3
y⃗′ =  −10⃗y(2) + 10⃗y(3)  −⃗y(1)⃗y(2) + 28⃗y(2) − ⃗y(3)
10

Therefore, our input ‘fname’ = @(t, y) [− 8 ∗ y(1) + y(2) ∗ y(3); −10 ∗ y(2) + 10 ∗ y(3); −y(1) ∗ y(2) + 3
28 ∗ y(2) − y(3)]
11