Matrix, Diagonalize calculation

Nemanjavuk69

Junior Member
Joined
Mar 23, 2022
Messages
71
Hello

Can someone explain to me how the final calculation in Example two is being calculated?

I have put a red circle around the part which I don't quite understand is being calculated. I am familiar with the "row\cdotcolumn" (dot product), however, it does not quite look like the dot product?

An example is 25k3k2\cdot5^k-3^k
When I do the dot product I get 5k2+0(1)5^k\cdot2+0\cdot(-1) where is the 3k3^k coming from?

1671915170654.png
 
Hello

Can someone explain to me how the final calculation in Example two is being calculated?

I have put a red circle around the part which I don't quite understand is being calculated. I am familiar with the "row\cdotcolumn" (dot product), however, it does not quite look like the dot product?

An example is 25k3k2\cdot5^k-3^k
When I do the dot product I get 5k2+0(1)5^k\cdot2+0\cdot(-1) where is the 3k3^k coming from?

View attachment 34679
There is no dot product here, just two ordinary matrix multiplications. Multiply PDkPD^k, then multiply the result by P1P^{-1}.

Show your work, so we can see what you are doing wrong.
 
There is no dot product here, just two ordinary matrix multiplications. Multiply PDkPD^k, then multiply the result by P1P^{-1}.

Show your work, so we can see what you are doing wrong.
Got ya, I did not know that. I will do my work and post it here. Thanks for letting me know!
 
There is no dot product here, just two ordinary matrix multiplications. Multiply PDkPD^k, then multiply the result by P1P^{-1}.

Show your work, so we can see what you are doing wrong.
Matrix multiplication should go right to left i.e. DkP1D^kP^{-1}, then PP?
 
There is no dot product here, just two ordinary matrix multiplications. Multiply PDkPD^k, then multiply the result by P1P^{-1}.

Show your work, so we can see what you are doing wrong.
I just did the calculatios, I got the exact same results beside I multiplied my 5k5^k and 3k3^k so I got the following matrix
[10k3k5k3k10k+6k5k+6k]\begin{bmatrix} 10^k-3^k & 5^k-3^k\\ -10^k+6^k & -5^k+6^k \end{bmatrix}
Is there a reason to why the textbook is not multiplying the numbers together?
 
Matrix multiplication should go right to left i.e. DkP1D^kP^{-1}, then PP?
I just verified by using the "Matrix Multiplication Theorem", you can go left to right or right to left AS LONG as you do not switch the order of the matrices. So doing(PD)P1(P \cdot D) \cdot P^{-1} is the same as doing P(DP1)P \cdot (D \cdot P^{-1})
 
I just verified by using the "Matrix Multiplication Theorem", you can go left to right or right to left AS LONG as you do not switch the order of the matrices. So doing(PD)P1(P \cdot D) \cdot P^{-1} is the same as doing P(DP1)P \cdot (D \cdot P^{-1})
Yes, you're correct. I've forgotten about that property. I tend to view matrix multiplication as function compositions. More natural to go right to left.
 
I just verified by using the "Matrix Multiplication Theorem", you can go left to right or right to left AS LONG as you do not switch the order of the matrices. So doing(PD)P1(P \cdot D) \cdot P^{-1} is the same as doing P(DP1)P \cdot (D \cdot P^{-1})
In other words, matrix multiplication is associative, though not commutative.
I just did the calculatios, I got the exact same results beside I multiplied my 5k5^k and 3k3^k so I got the following matrix
[10k3k5k3k10k+6k5k+6k]\begin{bmatrix} 10^k-3^k & 5^k-3^k\\ -10^k+6^k & -5^k+6^k \end{bmatrix}
Is there a reason to why the textbook is not multiplying the numbers together?
You are referring to 25k2\cdot5^k, and so on. Keep the order of operations in mind: you changed it to (25)k(2\cdot5)^k, which is different. You should know this long before you learn about matrices!

As it stands, it can't be simplified further than what they showed in the answer.
 
In other words, matrix multiplication is associative, though not commutative.

You are referring to 25k2\cdot5^k, and so on. Keep the order of operations in mind: you changed it to (25)k(2\cdot5)^k, which is different. You should know this long before you learn about matrices!

As it stands, it can't be simplified further than what they showed in the answer.
Yes, I see. Thank you @Dr.Peterson
 
Top