Given a matrix (3 * 1) [ <mtable rowspacing="4pt" columnspacing="1em"> <mtr>

aggierabz2006zw

aggierabz2006zw

Answered question

2022-07-07

Given a matrix (3 * 1)
[ a b c ]
how can I obtain a matrix 3 * 3 of
[ a a a b a c b a b b b c c a c b c c ]

Answer & Explanation

Alexis Fields

Alexis Fields

Beginner2022-07-08Added 14 answers

The matrix A in the answer can be done by:
[ a b c ] [ 1 1 1 ] = [ a a a b b b c c c ]
and the matrix B:
[ 1 1 1 ] [ a b c ] = [ a b c a b c a b c ]
So:
M = [ a , b , c ] T [ 1 , 1 , 1 ] [ 1 , 1 , 1 ] T [ a , b , c ]
Lillianna Andersen

Lillianna Andersen

Beginner2022-07-09Added 3 answers

Let A = [ a a a b b b c c c ] and B = [ a b c a b c a b c ]
Then the desired matrix, M, is
M = A B

Do you have a similar question?

Recalculate according to your conditions!

New Questions in Linear algebra

Ask your question.
Get an expert answer.

Let our experts help you. Answer in as fast as 15 minutes.

Didn't find what you were looking for?