Consider a matrix A = u * u^T where u = (1, 1, 1)^T. Note that u^T denotes the transpose of u. The largest eigenvalue of A is ____.

GATE 2018 · Engineering Mathematics · Eigen Value · medium

Answer: 3

  1. Recognize the rank-1 structure: A = uu^T with u = (1,1,1)^T is a 3x3 rank-1 matrix. It has eigenvalues {lambda_1, 0, 0} where lambda_1 = u^Tu.
  2. Compute the inner product u^Tu: u^Tu = 1^2 + 1^2 + 1^2 = 1 + 1 + 1 = 3.
  3. State the largest eigenvalue: The eigenvalues of A are {3, 0, 0}. The largest eigenvalue is 3.