Numerical approximation of the eigenvalues and the eigenvector

Click For Summary
SUMMARY

The discussion focuses on the numerical approximation of eigenvalues and eigenvectors using iterative methods. The matrix A defined as A = [[2, 1], [1, 2]] has eigenvalues 3 and 1, with corresponding eigenvectors (1,1) and (-1,1). The iterative method involves defining sequences of vectors {vk} and {uk}, starting with u0 = (1,1). After four iterations, the participant calculated v5 = (242, 244) and was guided to identify the maximum absolute entry of vk+1, which is 244, leading to u5 = (242/244, 1).

PREREQUISITES
  • Understanding of eigenvalues and eigenvectors
  • Familiarity with iterative numerical methods
  • Basic knowledge of matrix operations
  • Proficiency in vector normalization techniques
NEXT STEPS
  • Study the power iteration method for eigenvalue approximation
  • Learn about the Rayleigh quotient for better eigenvector estimates
  • Explore convergence criteria for iterative methods in linear algebra
  • Investigate the implications of choosing different initial vectors in numerical methods
USEFUL FOR

Students and professionals in mathematics, engineering, and computer science focusing on numerical linear algebra, particularly those working on eigenvalue problems and iterative methods.

junsugal
Messages
6
Reaction score
0

Homework Statement



This problem will guide you through the steps to obtain a numerical approximation of the eigenvalues, and eigenvectors of A using an example.

We will define two sequences of vectors{vk} and {uk}
(a) Choose any vector u \in R2 as u0
(b) Once uk has been determined, the vectors vk+1 and uk+1 are determined as follows:
i. Set vk+1 = Auk
ii. Find the entry of maximum absolute value of vk+1 let's say it is the j-th entry of vk+1
iii. Set uk+1 = vk+1/vjk+1
(c) The sequence {Uk} will converge to an eigenvector for A.

Let A =
2 1
1 2
Use the above method to approximate an eigenvector for A using only 4 iterations, that is finding v5.
Find the eigenvectors for A using the method learned in class and compare.

Homework Equations





The Attempt at a Solution



I assume u0 is (1,1)
From A, i found the eigenvalues which is 3 and 1.
And the corresponding eigenvectors is (1,1) and (-1,1)
Then i get uk as (3k-1, 3k+1)

Now, to the next step, I get my vk+1 as ( 2*(3k-1)+3k+1, 3k-1 + 2*(3k+1))
Plugging in k as 4 as I want to get v5
I get v5 as (242, 244)
And from this step the instruction said to find the entry of maximum absolute value of vk+1 and I don't know how. I am not even sure if what I've done is correct.

Please correct me if I am wrong and please explain on what to do next.
Thanks in advance!
 
Physics news on Phys.org
You chose u_0=(1,1), you would get u_k=(3^k,3^k). Even if you got v_5=(242,244) somehow, the max abs entry is obviously 244, because |244|>|242|. So u_5=(242/244,1).
Now find another less clever and more random u_0 and try again
 

Similar threads

Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
9
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 33 ·
2
Replies
33
Views
3K
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
15K