Sale!

NUMERICAL COMPUTATION CSCI3656 Homework 8 Solved

Original price was: $35.00.Current price is: $30.00.

Category:

Description

5/5 - (1 vote)

 CSCI3656 Homework 8

NUMERICAL COMPUTATION

The purpose of this homework is to see the relationship between the condition number and the numerical
error when solving linear least-squares problems.

First, implement the following methods for least-squares, which you’ll use in the next exercise.
1. Method of Normal Equations (uses the Cholesky factorization)

2. Method based on the Thin QR factorization
Next, load the given matrix into memory. Call the matrix A,
A =

a1 · · · an

, (1)
where ai ∈ R
m is the ith column of A. Define the matrices A1, . . . , An as:
Ak =

a1 · · · ak

, k = 1, . . . , n. (2)
That is, Ak contains the first k columns of the matrix A (that you loaded into memory).

Now, generate the error data that you’ll analyze. For k from kmin = 40 to kmax = 65:
1. Report the size, rank, and condition number of Ak.

2. Generate 100 random vectors bi ∈ R
m. For each bi
,
(a) Use the built-in equation solver1
to compute the least-squares minimizers given Ak and bi
.
Call this vector xtrue, because we’re just gonna trust the software on this one.

(b) Use your Normal Equation solver to compute the least-squares minimizer, xNE. Compute
the relative error with xtrue:
errNE
k,i =
kxNE − xtruek2
kxtruek2
(3)

(c) Use your QR solver to compute the least-squares minimizer, xQR. Compute the relative
error with xtrue:
err
QR
k,i =
kxQR − xtruek2
kxtruek2
(4)

3. For each of QR and Normal Equations, compute the average error over all the bi
.
Make two plots on a semilogy scale:
• the average error versus k for both QR and the Normal Equations,

• the condition number of Ak versus k.

Now tell me what’s going on. More specifically:

1. What is the relationship between the error using QR versus the Normal Equations?
1
numpy.linalg.lstsq in Python, linsolve in Matlab

2. What is the relationship between the errors and the condition number of Ak?

3. Suppose your matrix A is ill-conditioned. Which method is more favorable?
BONUS (10 POINTS): Take kmax up to 100. Something should break. What broke and why did it
break? Any fixes?

BONUS (10 POINTS):

Repeat this exercise (define the Ak’s, etc.) with some other tall matrix you find
in the wild.

There are lots of examples from data science. What are the results? Why was the matrix
you chose interesting?

Any origin stories for the matrix (like, insight from the data that generated it)
for why the condition number behaves the way it does?
2