Starting from:

$30

Matrix Computations Lab Session 4 Solution

MA-423 : Lab 2018 R. Alam







The purpose of this exercise is to compare classical and modified Gram-Schmidt schemes. Let x1; : : : ; xn be linearly independent vectors.Then CGS (classical Gram-Schmidt process) and MGS (modified Gram-Schmidt process) that orthonormalize x1; : : : ; xn are as follows:



for i = 1: n

qi: = xi




for j = 1: i − 1

rji: = qj∗xi /*(for CGS)/

rji: = qj∗qi /*( for MGS )/

qi: = qi − qj ∗ rji

end

rii: = ∥qi∥2

if rii = 0 then quit else

qi: = qi=rii

end




Your task is to write matlab functions implementing classical and modified Gram-Schmidt schemes:




function [Q, R] = cgs(A)




[Q, R] = cgs(A) employs



an isometry Q, an upper



function [Q, R] = mgs(A)




[Q, R] = mgs(A) employs



an isometry Q, an upper






classical Gram-Schmidt scheme to compute triangular matrix R such that A=QR.




modified Gram-Schmidt scheme to compute triangular matrix R such that A=QR.



Generate the test matrix A as follows.




[U, X] = qr(randn(80));




[V, X] = qr(randn(80));




S = diag( 2 .^ (-1:-1:-80));




A = U*S*V;




Now compute QR factorization of A using cgs, mgs and the matlab function qr:




[QC, RC] = cgs(A);




[QM, RM] = mgs(A);




[Q, R] = qr(A);




To test how close these matrices are to being unitary, compute norm( QC’*QC-eye(80)), norm( QM’*QM-eye(80)), norm( Q’*Q-eye(80)). Which method is worse? Which method gives better result?




To explain your results, plot the absolute values of the diagonal entries of RC, RM, R. Use com-mands




x= (1:80)’;




hold off




semilogy(x, abs(diag( RC ) ), ’bo’)




hold on




semilogy(x, abs(diag( RM ) ), ’rx’)




semilogy(x, abs(diag( R ) ), ’k+’)




title(’abs(diag(R)) for cgs, mgs and qr’)




gtext(’cgs=o, mgs = x, qr=+’)




What is your conclusion from this plot? Next, re-orthonormalise QC as follows:



1






[QQC, RRC] = cgs(QC);




RR= RRC*RC;




Again compute norm( QQC’*QQC-eye(80)), plot the absolute values of diagonal entries of RR, RM, R and comment on the results.




Comment: Due to rounding errors we cannot expect our algorithms to produce vectors which




are exactly orthogonal. At best we can hope that | Q(:; i); Q(:; j) | = O(u) for i ≠ j where u is the unit roundoff. Since the matrix Q ∈ Cm×n produced by each of the above algorithms is isometric, in exact arithmetic it must satisfy Q′ ∗ Q − eye(n; n) = 0: However, if they deviate slightly from orthonormality then Q′ ∗ Q − eye(n; n) will be close to zero. Therefore we take ∥Q′ ∗ Q − eye(n; n)∥2 as a measure of deviation from orthonormality. This acts as a criterion for analyzing the per-formance of any algorithm for producing orthonormal vectors. The Q produced by the Modified Gram-Schmidt (MGS) algorithm satisfies




∥Q′ ∗ Q − eye(n; n)∥2 ≈ u ∗ cond(V):




This indicates that although MGS is usually better than CGS in the presence of rounding error, it is unlikely to perform well when cond(V) is large, that is, when the columns of V are nearly linearly dependent. However if cond(V) satisfies 1 ≪ cond(V) ≪ 1=u; then u ∗ cond(V) ≪ 1 and in such a case MGS will return a Q which is quite close to being an isometry. If we are not satisfied with the value of ∥Q′ ∗Q−eye(n; n)∥2 after running MGS once then we may run it once again with the Q produced from the first run as the input matrix V: This process is call reorthogonalization.

ˆ

So, if Q is the matrix produced from the second run of the MGS then




ˆ′ ˆ

∥Q ∗ Q − eye(n; n)∥2 ≈ u ∗ cond(Q) ≈ u




as cond(Q) will be quite small. On the other hand, if we decide to do a reorthogonalization in the beginning itself, without waiting to check the deviation from orthonormality in the first run of the MGS algorithm, then the MGS algorithm may be modified to orthogonalize the vectors twice at each step. This leads to a new algorithm called Modified Gram Schmidt with Reorthogonal-ization. You may take a look at the code for this process on page 233 of Fundamentals of Matrix Computations by D. S. Watkins.







Take Home Problem. Write a function program [Q; R] = mgsrep(V) that performs Modified Gram Schmidt with Reorthogonalization by making appropriate changes to your function program mgs:










Consider the n-by-n Hilbert matrix H (use matlab command H = hilb (n) to generate H). Your task is to use different methods listed below to orthonormalize the columns of H for n = 7 and n = 12:



Classical Gram-Schmidt method (CGS).



Modified Gram-Schmidt method (MGS).



Modified Gram-Schmidt method applied twice.



(Take Home Problem) Modified Gram-Schmidt with reorthogonalization.



QR decomposition with reflectors. Use matlab command [Q,R] = qr(H, 0), which pro-duces an ’economy size’ QR decomposition of H with Q being an isometry.



Examine the deviation from orthonormality by computing ∥Q′∗Q −eye(n)∥2 in each case (matlab command norm(eye(n)-Q’*Q)). Also check the residual norm(H - Q*R).




Find the condition number of H and check whether or not the matrix Q obtained from the MGS program satisfies ∥Q′ ∗ Q − eye(n)∥2 ≈ u ∗ cond(H):

Did you get what you would expect in light of the values of unit roundoff u and cond(H)? Which among all the above methods produces the smallest deviation from orthonormality?




2






Analysis of \Filip" data set from NIST: The filip data set consists of several dozen obser-



vations of a variable y at different x: Your task is to model y by a polynomial p(x) of degree 10: You will find the filip dataset at the following URL:




http://www.itl.nist.gov/div898/strd/lls/data/Filip.shtml




This dataset is controversial because the NIST certified polynomial cannot be reproduced by many algorithms. You task is to report what matlab does with it.




Your first task is to download the data from the above website. Next, extract the value of x and y and load the data into matlab. Plot y versus x (plot it with ’.’) and then invoke Basic Fitting tool available under the Tools menu on the figure window. Select the 10th degree polynomial fit. (Ignore the warning that matlab may give.) From the Tools menu compute the coefficients of the polynomial fit. How do the coefficients compare with the certified values on NIST web page? How does the plotted fit compare with the graphic on the NIST Web page? The basic fit tools also displays the norm of the residuals ∥r∥: Compare
this with the NIST quantity ”Residual Standard Deviation”, which is √∥r∥ : Here p is the




n−p

degree of the polynomial and n is the number of data.




Next, examine the dataset by using the following methods to compute the polynomial fit. Explain all the warning messages you received during these computations.



∗ matlab Backslash command. ∗ Pseudoinverse (pinv).




∗ Normal equation (theoretically the LSP is of full rank).




∗ Certified coefficients: Obtain the coefficients from the NIST Web page.




Prepare a table giving coefficients of the polynomial fit and the norm of the residuals obtained by each method. Plot the polynomial fits. Use dots, ’.’ at the data values and plot the curves y = p(x) by evaluating p(x) at a few hundred points over the range of the x′s. Some plots may not be visibly distinct. Which methods produce which plots? Generate similar plots as given in the NIST web page.




4. Planetary Orbit: Consider the quadratic form q(x; y) := ax2 + bxy + cy2 + dx + ey + f: The set C := {(x; y) ∈ R2 : q(x; y) = 0} is a conic section. Cutting the surface z = q(x; y) by the place z = 0; one obtains the conic C: Write a matlab script using commands meshgrid and countor to generate C:




Suppose that a planet follows an elliptical orbit. Here are ten observations of its position in (x; y)




plane:







x
=
1:02
0:95
0:87
0:77
0:67
0:56
0:44
0:30
0:16
0:01




[
















]
y
=
[0:39
0:32
0:27
0:22
0:18
0:15
0:13
0:12
0:13
0:15]
Determine the conic section that fits this data (in the sense of least squares). This can be done by setting one of the coefficients, say, f = 1 (WHY?) and solving the resulting 10-by-5 over determined LSP using backslash command. Plot the orbit (that is the conic) with x on the x-axis and y on the y-axis. Superimpose the ten data points on the plot. Write a single matlab script that implements the above task.



Conclude that the LSP is nearly rank deficient. Your next task is to illustrate the effect of small perturbation in the data to the orbit of the planet. Perturb the data x and y by adding to each component a random number uniformly distributed in the interval [−0:005; 0:005]: Compute the new coefficients resulting from the perturbed data. Plot the new orbit on the same plot of the old orbit. Write a matlab script that implements the job. Run the script a couple of times and comment on your results.



End ***






3

More products