Skip to Content

Linear Algebra: Matrix Operations

Given matrix A which is [3, 1, 4] and matrix B which is [4, 2; 6, 3; 5, 8], multiply matrix A by matrix B, and determine the size and elements of the resultant matrix.

Given matrix A which is [347259]\begin{bmatrix}3 & 4 \\ 7 & 2 \\ 5 & 9\end{bmatrix} and matrix B which is [315697]\begin{bmatrix}3 & 1 & 5 \\ 6 & 9 & 7\end{bmatrix} , can matrix A be multiplied by matrix B? If so, find the size and elements of the resultant matrix.

Take the matrix with columns 1,11, 1 and 2,0-2, 0 (Matrix M1M_1) and another matrix with columns 0,10, 1 and 2,02, 0 (Matrix M2M_2). Determine the matrix that represents the total effect of applying M1M_1 then M2M_2 as a single transformation. Solve this without visual aids, using only the numerical entries in each matrix.

Multiply the 2x3 matrix A with the 3x2 matrix B using the row-column rule to obtain the 2x2 matrix AB.

Multiply the scalar 3 with the matrix [7510380]\begin{bmatrix} 7 & 5 & -10 \\ 3 & 8 & 0 \end{bmatrix}.

What is the transpose of matrix A?

What is B transpose going to be equal to?

Given a 2D integer array, return the transpose of the matrix.