Section 6.5: Least-Squares Problems

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Definition: If 𝐴 is an 𝑚×𝑛 matrix and 𝑏∈ℝ𝑚, then a least-squares solution of 𝐴𝑥=𝑏 is 𝑥̂∈ℝ𝑛 such that?

||𝑏−𝐴𝑥̂||≤||𝑏−𝐴𝑥||

2
New cards

Inconsistent systems often arise in applications, meaning we cannot solve 𝐴𝑥=𝑏 (that is, 𝑏 is not in the range of 𝐴, or 𝑏∉𝐶𝑜𝑙𝐴.) Instead, we can find the value 𝑥̂ so that?

𝐴𝑥̂ is closest to 𝑏.

3
New cards

𝐴𝑇𝐴𝑥̂=?

𝐴𝑇𝑏

4
New cards

The system of equations 𝐴𝑇𝐴𝑥̂=𝐴𝑇𝑏 is called_____.

the normal equations for Ax=b

5
New cards

Theorem: The set of least-squares solutions of 𝐴𝑥=𝑏 coincides _______

with the nonempty set of solutions of the normal equations 𝐴𝑇𝐴𝑥=𝐴𝑇𝑏.

6
New cards

Theorem: Let 𝐴 be an 𝑚×𝑛 matrix. The following are equivalent:

a. 𝐴𝑥=𝑏 has a unique ______solution

b. The columns of 𝐴 are ______.

c. The matrix 𝐴𝑇𝐴 is ______.

When these are true, the least-squares solution is ?.

a. least-squares

b. linearly independent

c. invertible

𝑥̂=(𝐴𝑇𝐴)−1𝐴𝑇𝑏

7
New cards

Definition: The least-squares error is the distance ?

||𝑏−𝐴𝑥̂||

8
New cards

Theorem: Given an 𝑚×𝑛 matrix 𝐴 with linearly independent columns, let 𝐴=𝑄𝑅 be a 𝑄𝑅 factorization of 𝐴. Then for each 𝑏∈ℝ𝑚, the equation 𝐴𝑥=𝑏 has a unique least-squares solution given by ?.

𝑥̂=𝑅−1𝑄𝑇𝑏

9
New cards

Linear Regression: Given a set of data points, we want to find the line that best fits the data. That is, a line 𝑦=? that minimizes the error between the observed values (𝑥𝑖,𝑦𝑖) and the predicted values, called the “residuals.”

𝑦=𝛽0+𝛽1𝑥

10
New cards

(T/F) The general least-squares problem is to find an x that makes Ax as close as possible to b.

true

11
New cards

(T/F) If b is in the column space of A, then every solution of Ax=b is a least-squares solution.

true

12
New cards

(T/F) A least-squares solution of Ax=b is a vector that satisfies Axˆ=bˆ, where is the orthogonal projection of b onto Col A.

true

13
New cards

(T/F) A least-squares solution of Ax=b is a vector such that ∥b−Ax∥≤∥b−Axˆ∥ for all x in ℝn.

true

14
New cards

T/F) Any solution of ATAx=ATb is a least-squares solution of Ax=b.

true

15
New cards

(T/F) If the columns of A are linearly independent, then the equation Ax=b has exactly one least-squares solution.

true

16
New cards

(T/F) The least-squares solution of Ax=b is the point in the column space of A closest to b.

true

17
New cards

(T/F) A least-squares solution of Ax=b is a list of weights that, when applied to the columns of A, produces the orthogonal projection of b onto Col A.

true

18
New cards

(T/F) The normal equations always provide a reliable method for computing least-squares solutions.

false

19
New cards

(T/F) If A has a QR factorization, say A=QR, then the best way to find the least-squares solution of Ax=b is to compute xˆ=R−1QTb.

true