That's really good, and I'm particularly glad that you're asking about things that aren't quite clear.
Here's the deal... I try to explain better, and then when you've got it, you update the wiki page to make it clearer for someone else?
The first thing to note is that each eigenvector has an associated eigenvalue. Look at the example matrix A at the bottom of the wiki page:
v_2 is
0
0
1
And when we pre-multiply it by A it becomes:
0
0
2
So
(a) v_2 is indeed an eigenvector - its direction is unchanged
and
(b) its eigenvalue is 2, since it is increased in magnitude by a factor of 2.
For the choice of A shown as an example we got three eignevectors v_1, v_2, v_3. Someone chose to give them in order largest eigenvalue first. That is often done, but is not essential. With that choice for how to label the three vectors:
A x v_1 = 3 x v_1
A x v_2 = 2 x v_2
A x v_3 = 1 x v_3
I could just tell you that the diagonal matrix has 3,2 and 1 in that order on the diagonal, but it is better to actually see how it happens. Here's how it happens:
We put the three equations together by making a new matrix S with columns v_1, v_2, v_3 in that order. Now, you calculate:
A x S
Do it. What you'll get is a matrix like S, but with the first column multiplied by 3, the second column multiplied by 2 and the third multiplied by 1 (i.e. unchanged). That's not a surprise. It's because we chose A's eigenvectors as the columns.
Now consider
S x D
where D is a diagonal matrix, Diag(p,q,r) [That's just notation for a diagonal matrix with p as the first diagonal element, q as the second diagonal element, r as the third, and zero elsewhere]
Write it out, and you will see that S x D multiplies the columns of S, multiplying the first column by p, the second by q and the 3rd by r. Do check that that is so. You have to check that to understand what's going on. It doesn't matter what the values in S are, or the values p,q,r. It's always true. So if p, q, r are the eignevalues of A's eigenvectors, naturally in the same order as you put the vectors into S, we have:
S x Diag( p, q, r ) = A x S
S x Diag( 3, 2, 1 ) = A x S
That's because both formulas just multiply the columns of S (which are eigenvectors) by the corresponding eigenvalues. And provided S has an inverse:
Diag( 3, 2, 1 ) = S^{-1} x A x S
And we have the formula for the diagonalisation of A. Typically we will use the online calculator to find the eigenvectors (and hence S) and we'll also use the calculator to find the inverse of S.
So the quick answer is - put the eigenvalues along the diagonal, and you have the matrix D.
--James.