MATHEMATICA tutorial, Part 2.1: Matrices
https://www.cfm.brown.edu/people/dobrush/am34/Mathematica/ch1/matrix.htmlMathematica offers several ways for constructing matrices: Table [f, {i,m}, {j,n}] Build an m×n matrix where f is a function of i and j that gives the value of the i,j entry. Array [f, {m,n}] Build an m×n matrix whose i,j entry is f [i,j] ConstantArray [a, …
Matrix Operations—Wolfram Language Documentation
reference.wolfram.com › language › guideThe Wolfram Language's matrix operations handle both numeric and symbolic matrices, automatically accessing large numbers of highly efficient algorithms. The Wolfram Language uses state-of-the-art algorithms to work with both dense and sparse matrices, and incorporates a number of powerful original algorithms, especially for high-precision and symbolic matrices.
Matrix multiplication - Wikipedia
https://en.wikipedia.org/wiki/Matrix_multiplicationIn mathematics, particularly in linear algebra, matrix multiplication is a binary operation that produces a matrixfrom two matrices. For matrix multiplication, the number of columns in the first matrix must be equal to the number of rows in the second matrix. The resulting matrix, known as the matrix product, has the number of rows of the first and the number of columns of the second matrix. The produc…