Finding the Base Matrix A from Matrix A100

  • Thread starter Thread starter Anarza
  • Start date Start date
  • Tags Tags
    Base Matrix
Anarza
Messages
4
Reaction score
0

Homework Statement


If A100 is some 3x3 matrix, find the base matrix A.

2. Relevant information
Eigenvalues, diagonalization, etc.

The Attempt at a Solution


So far, I've been finding the eigenvalues and diagonalizing the matrix via A = P-1DP where D is the diagonal matrix and P is a matrix with A's eigenvalues. hoping to find the base matrix with powers of n. Any suggestions to guide me?

There was a similar discussion to this earlier, trying to reference that as well.
 
Physics news on Phys.org
I think your method sounds good. What problem are you having with it?
If A = P-1DP, then A2 = P-1DPP-1DP = P-1D2P, right?
 
  • Like
Likes Anarza
Anarza said:

Homework Statement


If A100 is some 3x3 matrix, find the base matrix A.

2. Relevant information
Eigenvalues, diagonalization, etc.

The Attempt at a Solution


So far, I've been finding the eigenvalues and diagonalizing the matrix via A = P-1DP where D is the diagonal matrix and P is a matrix with A's eigenvalues. hoping to find the base matrix with powers of n. Any suggestions to guide me?

There was a similar discussion to this earlier, trying to reference that as well.

Some matrices are not diagonalizable. What would you do in those cases?
 
  • Like
Likes Anarza
RUber said:
I think your method sounds good. What problem are you having with it?
If A = P-1DP, then A2 = P-1DPP-1DP = P-1D2P, right?

After finding the diagonal, the P matrix, and the inverse of P, I'm setting them equal to An (with the numeric digits in the diagonal also set to the nth power). The cross produce of these three matrices supposedly give me the power formula of the base matrix A.

Example: A 3x3 matrix of {{1,1,1},{2,2,2},{3,3,3}} turns out to be all the same digits to the nth power. I can see how this works moving forward, but it's not giving me the root matrix.
 
Ray Vickson said:
Some matrices are not diagonalizable. What would you do in those cases?

Hmm, I'm not quite sure. I did a check to make sure the one I'm dealing with is, but I would be interested in knowing what to do in other cases as well. The book I'm using gives examples on how to go forward from A to A100 via use of patterns, but those matricies are diagonalizable as well.
 
Anarza said:
After finding the diagonal, the P matrix, and the inverse of P, I'm setting them equal to An (with the numeric digits in the diagonal also set to the nth power). The cross produce of these three matrices supposedly give me the power formula of the base matrix A.

Example: A 3x3 matrix of {{1,1,1},{2,2,2},{3,3,3}} turns out to be all the same digits to the nth power. I can see how this works moving forward, but it's not giving me the root matrix.

I think your example may hint at Ray's question.
With a diagonalizable matrix A=P-1DP, you have found that A100=P-1D100P. And a diagonal matrix raised to a power is the same as each term in that matrix raised to the same power.
I question whether your example is diagonalizable, since your rows are all colinear.
 
  • Like
Likes Anarza
Anarza said:
Hmm, I'm not quite sure. I did a check to make sure the one I'm dealing with is, but I would be interested in knowing what to do in other cases as well. The book I'm using gives examples on how to go forward from A to A100 via use of patterns, but those matricies are diagonalizable as well.

Here is an example:
A = \pmatrix{11/10&amp;19/10&amp;21/10\\<br /> 1/10&amp; 19/10&amp; 11/10\\<br /> -1/10&amp;-9/10&amp;-1/10}
The eigenvalues of ##A## are ##1,1,9/10##, and there are only two eigenvectors; thus, ##A## is not diagonalizable. In fact, if
P = \pmatrix{1&amp;0&amp;1\\0&amp;1&amp;1\\-1&amp;1&amp;-1}, \; P^{-1} = \pmatrix{2&amp;-1&amp;1\\1&amp;0&amp;1\\-1&amp;1&amp;-1}
we have
A = P^{-1} J P \;\; \text{where} \;\; J = \pmatrix{1&amp;1&amp;0\\0&amp;1&amp;0\\0&amp;0&amp;9/10}
Here, ##J## is the Jordan canonical form of ##A##.

We have ##A^n = P^{-1} J^n P##, and ##J^n## is easily computed:
J^n = \pmatrix{1 &amp; n &amp; 0\\0 &amp; 1 &amp; 0\\0 &amp; 0 &amp; (9/10^n}

In general, if the Jordan canonical form of a matrix is
J = \pmatrix{a &amp; 1 &amp; 0\\0 &amp; a &amp; 0 \\ 0 &amp; 0 &amp; b}
then
J^n = \pmatrix{a^n &amp; n a^{n-1} &amp; 0 \\ 0 &amp; a^n &amp; 0 \\ 0 &amp; 0 &amp; b^n}
 
  • Like
Likes Anarza and RUber
Ray Vickson said:
Here is an example:
A = \pmatrix{11/10&amp;19/10&amp;21/10\\<br /> 1/10&amp; 19/10&amp; 11/10\\<br /> -1/10&amp;-9/10&amp;-1/10}
The eigenvalues of ##A## are ##1,1,9/10##, and there are only two eigenvectors; thus, ##A## is not diagonalizable. In fact, if
P = \pmatrix{1&amp;0&amp;1\\0&amp;1&amp;1\\-1&amp;1&amp;-1}, \; P^{-1} = \pmatrix{2&amp;-1&amp;1\\1&amp;0&amp;1\\-1&amp;1&amp;-1}
we have
A = P^{-1} J P \;\; \text{where} \;\; J = \pmatrix{1&amp;1&amp;0\\0&amp;1&amp;0\\0&amp;0&amp;9/10}
Here, ##J## is the Jordan canonical form of ##A##.

We have ##A^n = P^{-1} J^n P##, and ##J^n## is easily computed:
J^n = \pmatrix{1 &amp; n &amp; 0\\0 &amp; 1 &amp; 0\\0 &amp; 0 &amp; (9/10^n}

In general, if the Jordan canonical form of a matrix is
J = \pmatrix{a &amp; 1 &amp; 0\\0 &amp; a &amp; 0 \\ 0 &amp; 0 &amp; b}
then
J^n = \pmatrix{a^n &amp; n a^{n-1} &amp; 0 \\ 0 &amp; a^n &amp; 0 \\ 0 &amp; 0 &amp; b^n}

Ah, that actually makes sense! Thank you for going through the details.
 

Similar threads

Back
Top