The square root of a 2x2 matrix

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 11K views
onako
Messages
86
Reaction score
0
Given a symmetric 2x2 matrix, what would be the way to calculate the square root of it?
Here, http://www.jstor.org/stable/2689616?seq=2 , it is announced that a relatively simple formula
could be applied for the resulting matrix entries, but I could not access it further.

Thanks
 
Last edited by a moderator:
Physics news on Phys.org
A symmetric matrix B can be diagonalized.

Let [tex]B = P^{-1}DP[/tex], where P is the matrix with the eigenvector columns, and D is the matrix with the eigenvalues as diagonal entries.
You want a solution to [tex]X^2 = B[/tex], so it's reasonable to expect that X is on the form [tex]P^{-1}D^{\prime}P[/tex] for some diagonal matrix [tex]D^{\prime}[/tex].

Now, we try to solve the equation:

[tex]X^2 = (P^{-1}D^{\prime}P)^2 = P^{-1}D^{\prime 2}P = B = P^{-1}DP \Rightarrow D^{\prime 2 } = D[/tex].

Now you solve this easy equation for [tex]D^{\prime}[/tex], hence determining X.
 
In simple words:
* diagonalize the matrix (i.e. move to a basis of eigenvectors)
* take the square root (which is now simple because the square root of a diagonal matrix is the diagonal matrix obtained from taking the square root of the diagonal entries),
* convert back to the original basis (if desired)

The matrix has to be positive semidefinite, so has to have nonnegative eigenvalues. But actually, all of this is probably in your definition of "square root of a matrix"?
 
onako said:
Is he assuming that r_1,r_2 are the eigenvalues of A?
Since he writes "Step 1. Find the roots r_1,r_2 ( eigenvalues)", the answer is yes.
In step 3, is I the identity matrix?
Yes.