Celeb Glow
updates | April 07, 2026

How to multiply a 3x3 matrix with a 1x3 matrix?

$\begingroup$

I have 2 matrices and have been trying to multiply them but to no avail. Then I found this online site and trying feeding it the values but yet no success.

- R' . T

is what i would like to do but R is a 3x3 (3 rows, 3 cols) matrix and T is a 1 x 3 matrix (1 row, 3 cols).

Any idea how to go ahead with this?

$\endgroup$

4 Answers

$\begingroup$

You can only multiply an $n\times m$ matrix by a $p\times q$ matrix, in that order, if $m=p$. That is, only if the number of columns of the first factor is equal to the number of rows of the second factor. So you cannot multiply a $3\times 3$ matrix by a $1\times 3$ matrix; on the other hand, you can multiply a $1\times 3$ matrix by a $3\times 3$ matrix (so you can do $TR$); or you can multiply the $3\times 3$ matrix by the transpose of $T$, which would be $3\times 1$.

You can try extending $T$ into a $3\times 3$ by adding two rows of zeros (that is what the site you linked to does), but then you are not really multiplying $R$ by $T$. All you are doing is multiplying the first column of $R$ by the first entry of $T$, the second column of $R$ by the second entry of $T$, and the third column of $R$ by the third entry of $T$.

So the real question is: where did the matrices come from and why are you trying to multiply them in that order? Perhaps it turns out you shouldn't be doing that product at all...

$\endgroup$ 9 $\begingroup$

The usual matrix multiplication is only defined for multiplying an $m\times n$ matrix with an $n\times R$ matrix. So the number of columns of the first matrix must be equal to the number of rows of the second for matrix multiplication to be defined. This is not satisfied by the matrices you have. So you cannot multiply them in that order. You can, however, multiply $T$ with $R$ i.e. the product $TR$ is defined but not $RT$.

$\endgroup$ 2 $\begingroup$

Suppose you have two matrices A and B. Let A be a 3x3 matrix and B be a 1x3 matrix.

As stated above, you can only multiply matrix C (mxn) by matrix D (pxq) if n=p. That is, the number of columns in C = the number of rows in D.

We see that for your problem, we have the following information, $m=n=q=3$ and $p=1$.

Thus we have that $ n \neq p$.

If you insist on multiplying these two matrices together, you could always take the transpose of matrix B, denoted $B^{T}$. (For information about transposed matrices, see [1].)

$B^{T}$ would be a 3x1 matrix. So you could in fact do $AB^{T}$.

For more on matrix multiplication in general, see [2]. I hope this is helpful!

[1] Weisstein, Eric W. "Transpose." From MathWorld--A Wolfram Web Resource.

[2] Weisstein, Eric W. "Matrix Multiplication." From MathWorld--A Wolfram Web Resource.

$\endgroup$ $\begingroup$

From what I can see, perhaps you have the R and Xw matrix switched around. If you had Xw*R, then I think it would be okay. Did you derive this formula or did you find it somewhere?

$\endgroup$ 1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy