Matrix-vector product: representing matrix as vector of vectors seemingly leads to paradox when transposing...











up vote
0
down vote

favorite












I'm currently taking a university class on linear algebra. In some proofs, a given matrix $A in mathbb{R}^{mtimes n}$ is said to be able to be represented as a $1times n$ row vector of $m times 1$ column vectors, i.e.:
$$
A = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}]
$$



with $vec{a_i}$ the ith column of $A$. Naturally, the transpose of $A$, as used in most such proofs, would then be given by an $ntimes 1$ column vector of $1times m$ row vectors:
$$
A^T = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^T
$$

When performing matrix-vector multiplication of the form $Avec x$, I know the vector's amount of rows has to match the matrix's amount of columns. (In this case, $vec x$ would be an $n times 1$ column vector, and the result would be an $[m times n][n times 1] = [m times 1]$ column vector.)



Now, when considering $A$ as a row vector as in the first equation, we can see that this holds up, as the result would be $[1 times n][n times 1] = [1 times 1]$, though containing a sum of scaled $m times 1$ column vectors, so, after scaling and adding, an $m times 1$ column vector.
$$
Avec x = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}][x_1quad x_2 quaddotsquad x_n]^T = vec{a_1}cdot x_1 + vec{a_2}cdot x_2 + dots + vec{a_n}cdot x_n in mathbb{R}^{m times 1}
$$

My problem, then, arises when considering the same product, but swapping $A$ with $A^T$ (Edit: For clarity, this is not transposing $Ax$, but rather interchanging $A$ to see what happens.), thus $A^Tvec x$ with $vec x$ the same $n times 1$ column vector. Conventionally, this would be the product of an $n times m$ matrix with an $n times 1$ vector: impossible. However, when considering $A^T$ as an $n times 1$ column vector like in the second equation, this does seem to become possible, namely as the dot of two vectors of equal dimensions:
$$
A^Tboldsymbol{cdot}vec x = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^Tboldsymbol{cdot}[x_1quad x_2 quaddotsquad x_n]^T = vec{a_1^T}cdot x_1 + vec{a^T_2}cdot x_2 + dots + vec{a^T_n}cdot x_n in mathbb{R}^{1times n}
$$

This, to me, seems to be a paradox, as there obviously is a mismatch in the dimensions of $vec x$ (i.e. $n$) and the dimensions of the input space of $A^T$ (i.e. $m$), yet, rewriting $A^T$ as a vector, as is done with $A$, eliminates said mismatch, as it seems. Is it wrong to assume one can eliminate this mismatch? Is it wrong to assume the matrix-vector product of a matrix in $mathbb{R}^{ntimes 1}$ with a vector in $mathbb{R}^n$ to be equal to the dot product of two vectors in $mathbb{R}^n$? Is it wrong to write a matrix as a vector of vectors, or perhaps to transpose such a construction?










share|cite|improve this question
























  • If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
    – Qiaochu Yuan
    Nov 14 at 9:35












  • Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
    – Mew
    Nov 14 at 9:44

















up vote
0
down vote

favorite












I'm currently taking a university class on linear algebra. In some proofs, a given matrix $A in mathbb{R}^{mtimes n}$ is said to be able to be represented as a $1times n$ row vector of $m times 1$ column vectors, i.e.:
$$
A = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}]
$$



with $vec{a_i}$ the ith column of $A$. Naturally, the transpose of $A$, as used in most such proofs, would then be given by an $ntimes 1$ column vector of $1times m$ row vectors:
$$
A^T = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^T
$$

When performing matrix-vector multiplication of the form $Avec x$, I know the vector's amount of rows has to match the matrix's amount of columns. (In this case, $vec x$ would be an $n times 1$ column vector, and the result would be an $[m times n][n times 1] = [m times 1]$ column vector.)



Now, when considering $A$ as a row vector as in the first equation, we can see that this holds up, as the result would be $[1 times n][n times 1] = [1 times 1]$, though containing a sum of scaled $m times 1$ column vectors, so, after scaling and adding, an $m times 1$ column vector.
$$
Avec x = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}][x_1quad x_2 quaddotsquad x_n]^T = vec{a_1}cdot x_1 + vec{a_2}cdot x_2 + dots + vec{a_n}cdot x_n in mathbb{R}^{m times 1}
$$

My problem, then, arises when considering the same product, but swapping $A$ with $A^T$ (Edit: For clarity, this is not transposing $Ax$, but rather interchanging $A$ to see what happens.), thus $A^Tvec x$ with $vec x$ the same $n times 1$ column vector. Conventionally, this would be the product of an $n times m$ matrix with an $n times 1$ vector: impossible. However, when considering $A^T$ as an $n times 1$ column vector like in the second equation, this does seem to become possible, namely as the dot of two vectors of equal dimensions:
$$
A^Tboldsymbol{cdot}vec x = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^Tboldsymbol{cdot}[x_1quad x_2 quaddotsquad x_n]^T = vec{a_1^T}cdot x_1 + vec{a^T_2}cdot x_2 + dots + vec{a^T_n}cdot x_n in mathbb{R}^{1times n}
$$

This, to me, seems to be a paradox, as there obviously is a mismatch in the dimensions of $vec x$ (i.e. $n$) and the dimensions of the input space of $A^T$ (i.e. $m$), yet, rewriting $A^T$ as a vector, as is done with $A$, eliminates said mismatch, as it seems. Is it wrong to assume one can eliminate this mismatch? Is it wrong to assume the matrix-vector product of a matrix in $mathbb{R}^{ntimes 1}$ with a vector in $mathbb{R}^n$ to be equal to the dot product of two vectors in $mathbb{R}^n$? Is it wrong to write a matrix as a vector of vectors, or perhaps to transpose such a construction?










share|cite|improve this question
























  • If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
    – Qiaochu Yuan
    Nov 14 at 9:35












  • Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
    – Mew
    Nov 14 at 9:44















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm currently taking a university class on linear algebra. In some proofs, a given matrix $A in mathbb{R}^{mtimes n}$ is said to be able to be represented as a $1times n$ row vector of $m times 1$ column vectors, i.e.:
$$
A = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}]
$$



with $vec{a_i}$ the ith column of $A$. Naturally, the transpose of $A$, as used in most such proofs, would then be given by an $ntimes 1$ column vector of $1times m$ row vectors:
$$
A^T = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^T
$$

When performing matrix-vector multiplication of the form $Avec x$, I know the vector's amount of rows has to match the matrix's amount of columns. (In this case, $vec x$ would be an $n times 1$ column vector, and the result would be an $[m times n][n times 1] = [m times 1]$ column vector.)



Now, when considering $A$ as a row vector as in the first equation, we can see that this holds up, as the result would be $[1 times n][n times 1] = [1 times 1]$, though containing a sum of scaled $m times 1$ column vectors, so, after scaling and adding, an $m times 1$ column vector.
$$
Avec x = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}][x_1quad x_2 quaddotsquad x_n]^T = vec{a_1}cdot x_1 + vec{a_2}cdot x_2 + dots + vec{a_n}cdot x_n in mathbb{R}^{m times 1}
$$

My problem, then, arises when considering the same product, but swapping $A$ with $A^T$ (Edit: For clarity, this is not transposing $Ax$, but rather interchanging $A$ to see what happens.), thus $A^Tvec x$ with $vec x$ the same $n times 1$ column vector. Conventionally, this would be the product of an $n times m$ matrix with an $n times 1$ vector: impossible. However, when considering $A^T$ as an $n times 1$ column vector like in the second equation, this does seem to become possible, namely as the dot of two vectors of equal dimensions:
$$
A^Tboldsymbol{cdot}vec x = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^Tboldsymbol{cdot}[x_1quad x_2 quaddotsquad x_n]^T = vec{a_1^T}cdot x_1 + vec{a^T_2}cdot x_2 + dots + vec{a^T_n}cdot x_n in mathbb{R}^{1times n}
$$

This, to me, seems to be a paradox, as there obviously is a mismatch in the dimensions of $vec x$ (i.e. $n$) and the dimensions of the input space of $A^T$ (i.e. $m$), yet, rewriting $A^T$ as a vector, as is done with $A$, eliminates said mismatch, as it seems. Is it wrong to assume one can eliminate this mismatch? Is it wrong to assume the matrix-vector product of a matrix in $mathbb{R}^{ntimes 1}$ with a vector in $mathbb{R}^n$ to be equal to the dot product of two vectors in $mathbb{R}^n$? Is it wrong to write a matrix as a vector of vectors, or perhaps to transpose such a construction?










share|cite|improve this question















I'm currently taking a university class on linear algebra. In some proofs, a given matrix $A in mathbb{R}^{mtimes n}$ is said to be able to be represented as a $1times n$ row vector of $m times 1$ column vectors, i.e.:
$$
A = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}]
$$



with $vec{a_i}$ the ith column of $A$. Naturally, the transpose of $A$, as used in most such proofs, would then be given by an $ntimes 1$ column vector of $1times m$ row vectors:
$$
A^T = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^T
$$

When performing matrix-vector multiplication of the form $Avec x$, I know the vector's amount of rows has to match the matrix's amount of columns. (In this case, $vec x$ would be an $n times 1$ column vector, and the result would be an $[m times n][n times 1] = [m times 1]$ column vector.)



Now, when considering $A$ as a row vector as in the first equation, we can see that this holds up, as the result would be $[1 times n][n times 1] = [1 times 1]$, though containing a sum of scaled $m times 1$ column vectors, so, after scaling and adding, an $m times 1$ column vector.
$$
Avec x = [vec{a_1}quadvec{a_2}quaddotsquad vec{a_n}][x_1quad x_2 quaddotsquad x_n]^T = vec{a_1}cdot x_1 + vec{a_2}cdot x_2 + dots + vec{a_n}cdot x_n in mathbb{R}^{m times 1}
$$

My problem, then, arises when considering the same product, but swapping $A$ with $A^T$ (Edit: For clarity, this is not transposing $Ax$, but rather interchanging $A$ to see what happens.), thus $A^Tvec x$ with $vec x$ the same $n times 1$ column vector. Conventionally, this would be the product of an $n times m$ matrix with an $n times 1$ vector: impossible. However, when considering $A^T$ as an $n times 1$ column vector like in the second equation, this does seem to become possible, namely as the dot of two vectors of equal dimensions:
$$
A^Tboldsymbol{cdot}vec x = [vec{a_1^T}quadvec{a_2^T}quaddotsquad vec{a_n^T}]^Tboldsymbol{cdot}[x_1quad x_2 quaddotsquad x_n]^T = vec{a_1^T}cdot x_1 + vec{a^T_2}cdot x_2 + dots + vec{a^T_n}cdot x_n in mathbb{R}^{1times n}
$$

This, to me, seems to be a paradox, as there obviously is a mismatch in the dimensions of $vec x$ (i.e. $n$) and the dimensions of the input space of $A^T$ (i.e. $m$), yet, rewriting $A^T$ as a vector, as is done with $A$, eliminates said mismatch, as it seems. Is it wrong to assume one can eliminate this mismatch? Is it wrong to assume the matrix-vector product of a matrix in $mathbb{R}^{ntimes 1}$ with a vector in $mathbb{R}^n$ to be equal to the dot product of two vectors in $mathbb{R}^n$? Is it wrong to write a matrix as a vector of vectors, or perhaps to transpose such a construction?







linear-algebra matrices vectors transpose






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Nov 22 at 16:38

























asked Nov 14 at 9:31









Mew

33




33












  • If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
    – Qiaochu Yuan
    Nov 14 at 9:35












  • Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
    – Mew
    Nov 14 at 9:44




















  • If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
    – Qiaochu Yuan
    Nov 14 at 9:35












  • Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
    – Mew
    Nov 14 at 9:44


















If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
– Qiaochu Yuan
Nov 14 at 9:35






If you transpose $Ax$ you get $x^T A^T$, not $A^T x$, which generally won't make sense. The product you write down in your last equation doesn't make sense either.
– Qiaochu Yuan
Nov 14 at 9:35














Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
– Mew
Nov 14 at 9:44






Yes, I know $(AB)^T = B^TA^T$, but that's not what I'm asking about.
– Mew
Nov 14 at 9:44












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










There are 2 wrong things:



1) Although you can write an $n times m$ matrix as a table with $m $ columns each of which is a column vector of $n $ entries, this does not mean you are allowed to consider that its dimension is $1 times m $. It is still $n times m$.



2) the dot product of vectors $a $ and $b $ is carried out as $a^T , b $ so dimensions must not be equal, the must be $1 times n $ and $n times 1$.






share|cite|improve this answer





















  • I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
    – Mew
    Nov 18 at 22:06












  • I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
    – Javi
    Nov 19 at 22:51










  • Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
    – Mew
    Nov 22 at 16:39













Your Answer





StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2998037%2fmatrix-vector-product-representing-matrix-as-vector-of-vectors-seemingly-leads%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote



accepted










There are 2 wrong things:



1) Although you can write an $n times m$ matrix as a table with $m $ columns each of which is a column vector of $n $ entries, this does not mean you are allowed to consider that its dimension is $1 times m $. It is still $n times m$.



2) the dot product of vectors $a $ and $b $ is carried out as $a^T , b $ so dimensions must not be equal, the must be $1 times n $ and $n times 1$.






share|cite|improve this answer





















  • I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
    – Mew
    Nov 18 at 22:06












  • I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
    – Javi
    Nov 19 at 22:51










  • Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
    – Mew
    Nov 22 at 16:39

















up vote
1
down vote



accepted










There are 2 wrong things:



1) Although you can write an $n times m$ matrix as a table with $m $ columns each of which is a column vector of $n $ entries, this does not mean you are allowed to consider that its dimension is $1 times m $. It is still $n times m$.



2) the dot product of vectors $a $ and $b $ is carried out as $a^T , b $ so dimensions must not be equal, the must be $1 times n $ and $n times 1$.






share|cite|improve this answer





















  • I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
    – Mew
    Nov 18 at 22:06












  • I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
    – Javi
    Nov 19 at 22:51










  • Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
    – Mew
    Nov 22 at 16:39















up vote
1
down vote



accepted







up vote
1
down vote



accepted






There are 2 wrong things:



1) Although you can write an $n times m$ matrix as a table with $m $ columns each of which is a column vector of $n $ entries, this does not mean you are allowed to consider that its dimension is $1 times m $. It is still $n times m$.



2) the dot product of vectors $a $ and $b $ is carried out as $a^T , b $ so dimensions must not be equal, the must be $1 times n $ and $n times 1$.






share|cite|improve this answer












There are 2 wrong things:



1) Although you can write an $n times m$ matrix as a table with $m $ columns each of which is a column vector of $n $ entries, this does not mean you are allowed to consider that its dimension is $1 times m $. It is still $n times m$.



2) the dot product of vectors $a $ and $b $ is carried out as $a^T , b $ so dimensions must not be equal, the must be $1 times n $ and $n times 1$.







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Nov 15 at 3:34









Javi

3829




3829












  • I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
    – Mew
    Nov 18 at 22:06












  • I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
    – Javi
    Nov 19 at 22:51










  • Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
    – Mew
    Nov 22 at 16:39




















  • I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
    – Mew
    Nov 18 at 22:06












  • I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
    – Javi
    Nov 19 at 22:51










  • Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
    – Mew
    Nov 22 at 16:39


















I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
– Mew
Nov 18 at 22:06






I guess the first remark solves my issue; i.e., a "vector of vectors" is a slippery term that does not behave like a regular vector, even though it is used fairly often to explain matrix multiplication (among other topics like orthogonal projection). The second remark is probably a misunderstanding of what I wrote, or perhaps of my use of transposes for $vec x$ as to not clutter the page with columns: when dotting $vec a$ and $vec b$ as $vec acdot vec b$, both vectors ought to be of identical dimensions, but of course, representing it as a matrix-vector product transposes $vec a$.
– Mew
Nov 18 at 22:06














I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
– Javi
Nov 19 at 22:51




I do believe that the second point holds, because in your question, when you interchange $A$ with $A^T$, the resulting expression $A^T vec{x}$ is a "matrix-vector product" as you call it, not a dot product, so dimensions really must not be identical.
– Javi
Nov 19 at 22:51












Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
– Mew
Nov 22 at 16:39






Ah, that's a notational error on my part, I see what you mean now. The intended expression was $A^Tboldsymbol{cdot}vec{x}$.
– Mew
Nov 22 at 16:39




















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2998037%2fmatrix-vector-product-representing-matrix-as-vector-of-vectors-seemingly-leads%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Quarter-circle Tiles

build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

Mont Emei