Is there any mathematical operation that would extract the elements of the main diagonal as a vector? i.e. multiply it by certain vectors or something like that. I'm using this in the context of linear systems.
In the specific case I'm looking at I have a relationship between the elements of three vectors as follows:
a=[a1a2a3a4] , b=[b1b2b3b4] , and c=[c1c2c3c4]
I also know that: ci=aibi for i∈[1,4]
Now I want to express this relationship as a vector equation. I understand that ab⊤ would give a square matrix with the elements of c on its main diagonal, but is there anyway to extract them as a vector?
EDIT: Let me clarify a bit. If I multiply a by b⊤ I get the following matrix:
ab⊤=[a1b1a1b2a1b3a1b4a2b1a2b2a2b3a2b4a3b1a3b2a3b3a3b4a4b1a4b2a4b3a4b4]
The elements which have been made bold are the ones I'm interested in extracting as a vector. This vector would be c.
If I multiply this by the all-ones vector, as some of the answers have suggested, I would get:
ab⊤1=[a1b1a1b2a1b3a1b4a2b1a2b2a2b3a2b4a3b1a3b2a3b3a3b4a4b1a4b2a4b3a4b4][1111]=[a1b1+a1b2+a1b3+a1b4a2b1+a2b2+a2b3+a2b4a3b1+a3b2+a3b3+a3b4a4b1+a4b2+a4b3+a4b4]
Which is not the vector I'm looking for (it isn't equal to c).
EDIT 2: Multiplying by the 1 vector would obviously work if all off diagonal elements become zero. So if anyone knows of a way to do that without modifying the elements of the main diagonal that would also answer my question.
EDIT 3: The other question pointed out in the comments area is essentially the same and I have received similar answers but I was hoping for a simpler solution. I haven't marked it as duplicate to allow people to contribute in the future.
I was hoping for a solution that would be linear in b which I would substitute in place of c into the equation I'm trying to solve. In that case b would be my only unknown and I would be able to get an algebraic solution.
Answer
Well, it’s not pretty, but this will do it:
4∑i=1aTeibTeiei where the ei are the standard basis vectors. Each term of the sum extracts the ith components of a and v and multiplies them together. You can also think of it as multiplying the projection of b onto ei by ai or vice-versa.
No comments:
Post a Comment