mind0nmath
- 19
- 0
How do i find the eigenvalues and eigenvectors for the linear operator T defined as
T(w,z) = (z,w)??
T(w,z) = (z,w)??
The discussion focuses on finding eigenvalues and eigenvectors for the linear operator T defined as T(w,z) = (z,w). Participants emphasize the importance of representing T as a matrix, specifically a 2x2 matrix with all entries as 1 for certain cases. The eigenvalues are derived from the characteristic polynomial, leading to the conclusion that the eigenvalues are ±1. The discussion also highlights that eigenvalues can be found without matrix representation by analyzing the transformation directly.
PREREQUISITES[V,D] = eig(A)Students and professionals in mathematics, particularly those studying linear algebra, as well as software developers using MATLAB for mathematical computations.
mind0nmath said:How do i find the eigenvalues and eigenvectors for the linear operator T defined as
T(w,z) = (z,w)??
One of the things you should have learned long ago is that you approach problems like this by looking at simple cases: if n= 2, this says T(x,y)= (x+ y, x+ y). In particular, T(1, 0)= (1, 1) and T(0,1)= (1, 1). Yes, the columns of the matrix representing this linear operator in the standard basis are all 1s. The matrix representing this linear operator in the standard basis consists of all 1s.mind0nmath said:how about for something like: T(x_1,x_2,...,x_n) = (x_1+x_2+...+x_n, x_1+x_2+...+x_n, ..., x_1+x_2+...+x_n). The matrix with respect to standard basis would have 1's everywhere? any clues to finding the eigenvalues/vectors?