Matrix, Diagonalize calculation

Nemanjavuk69

Junior Member
Joined
Mar 23, 2022
Messages
67
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[imath]\cdot[/imath]column" (dot product), however, it does not quite look like the dot product?

An example is [math]2\cdot5^k-3^k[/math]
When I do the dot product I get [imath]5^k\cdot2+0\cdot(-1)[/imath] where is the [imath]3^k[/imath] 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[imath]\cdot[/imath]column" (dot product), however, it does not quite look like the dot product?

An example is [math]2\cdot5^k-3^k[/math]
When I do the dot product I get [imath]5^k\cdot2+0\cdot(-1)[/imath] where is the [imath]3^k[/imath] coming from?

View attachment 34679
There is no dot product here, just two ordinary matrix multiplications. Multiply [imath]PD^k[/imath], then multiply the result by [imath]P^{-1}[/imath].

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

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 [imath]PD^k[/imath], then multiply the result by [imath]P^{-1}[/imath].

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

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 [imath]5^k[/imath] and [imath]3^k[/imath] so I got the following matrix
[math]\begin{bmatrix} 10^k-3^k & 5^k-3^k\\ -10^k+6^k & -5^k+6^k \end{bmatrix}[/math]
Is there a reason to why the textbook is not multiplying the numbers together?
 
Matrix multiplication should go right to left i.e. [imath]D^kP^{-1}[/imath], then [imath]P[/imath]?
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[imath](P \cdot D) \cdot P^{-1}[/imath] is the same as doing [imath]P \cdot (D \cdot P^{-1})[/imath]
 
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[imath](P \cdot D) \cdot P^{-1}[/imath] is the same as doing [imath]P \cdot (D \cdot P^{-1})[/imath]
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[imath](P \cdot D) \cdot P^{-1}[/imath] is the same as doing [imath]P \cdot (D \cdot P^{-1})[/imath]
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 [imath]5^k[/imath] and [imath]3^k[/imath] so I got the following matrix
[math]\begin{bmatrix} 10^k-3^k & 5^k-3^k\\ -10^k+6^k & -5^k+6^k \end{bmatrix}[/math]
Is there a reason to why the textbook is not multiplying the numbers together?
You are referring to [imath]2\cdot5^k[/imath], and so on. Keep the order of operations in mind: you changed it to [imath](2\cdot5)^k[/imath], 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 [imath]2\cdot5^k[/imath], and so on. Keep the order of operations in mind: you changed it to [imath](2\cdot5)^k[/imath], 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