Math Problem Statement

Outline of Student Process in Question 2 In this section, you will be debugging the following Gram Schmidt Orthonormalization and QR Decomposition process made by a student. Problem: Solve for its QR Decomposition of A =   3 −3 1 4 −4 7 0 3 3  

Solution: Finding the first column of Q:

⃗q1 =   3 4 0  

Finding the second column of Q:

proj ⃗q1 ( ⃗a2) = ( ⃗a2 · ⃗q1)⃗q1 ⃗z2 = ⃗a2 − proj ⃗q1 ( ⃗a2)

=   −3 −4 3   −   −3 −4 0   =   0 0 3  

⃗q2 =   0 0 3  

Finding the third column of Q:

proj{ ⃗q1, ⃗q2} ( ⃗a3) = ( ⃗a3 · ⃗q1)⃗q1 + ( ⃗a3 · ⃗q2)⃗q2

  −3 −4 3   ⃗z3 = ⃗a3 − proj{ ⃗q1, ⃗q2} ( ⃗a3)

=   1 −7 3   −   −3 −4 3   =   4 −3 0  

⃗q3 =   4 −3 0   And now, finding out that we still have to find the matrix R:

R =   ⃗a1 · ⃗q1 ⃗a1 · ⃗q2 ⃗a1 · ⃗q3 0 ⃗a2 · ⃗q2 ⃗a2 · ⃗q3 0 0 ⃗a3 · ⃗q3   =   25 0 0 0 9 0 0 0 −17   whats wrong w this

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Linear Algebra
Gram-Schmidt Orthonormalization
QR Decomposition

Formulas

Projection formula
Matrix dot product

Theorems

-

Suitable Grade Level

Undergraduate