A matrix (plural matrices) is a rectangular array of numbers, functions, or any symbols. It can be written as
We denote this array by a single letter A (usually a capital boldfaced letter) or by \( \left( a_{i,j} \right) \) or \( \left[ a_{i,j} \right] , \) depending on what notation (parenthesis or brackets) is in use. The symbol \( a_{i,j} ,\) or sometimes \( a_{ij} ,\) in the ith row and jth column is called the \( \left( i, \, j \right) \) entry. We say that A has m rows and n columns, and that it is an \( m \times n \) matrix. We also refer to A as a matrix of size \( m \times n . \)
Any \( m \times n \) matrix can be considered as an array of \( n \) columns
Before we can discuss arithmetic operations for matrices, we have to define equality for matrices. Two matrices are equal if they have the same size and their corresponding elements are equal. A matrix with elements that are all 0’s is called a zero or null matrix. A null matrix usually is indicated as 0.
Another very important type of matrices are square matrices that have the same number of rows as columns. In particular, a square matrix having all elements equal to zero except those on the principal diagonal is called a diagonal matrix.
Constructing Matrices
Python offers several ways for constructing matrices. We discuss some of possible options.
In addition, Python offers matrices with different random distributions. Recall that a computer cannot generate indeed random numbers, but entries that look randomly. Therefore, in computer scuence, a random number generator is called a pseudorandom generator. To create a matrix of random integers in Python, randint() function of the numpy module is used. This function is used for random sampling i.e. all the numbers generated will be at random and cannot be predicted at hand.
The following code generate a 3×2 matrix with random entries from the interval [0, 1]:
Nevertheless, it is most common to define vectors and matrices by typing every row in brackets: For example, let's define a 2×3 matrix (with two rows and three columns) as
A[i][j] = new yields an expression in which the i-th part of A is replaced by new.
Diagonal Matrices
The command M.diagonal() gives the list of elements on the leading diagonal of matrix M.
The command M.diagonal(k) gives the elements on the k-th
diagonal of matrix M.
Example 1: Consider the 4×5 matrix
To see diagonal elements, we type:
Basic Commands
These introductory commands are very easy to use. The first two
command lines define the matrices, A
and M that we will be analyzing. The most important thing to understand is that to create a matrix
with multiple rows, you need to separate each row and surround it
with [], as shown in the example below.
The A.shape command tells you the dimensions for each matrix.
The commands
The second to last command just asks Python if the two matrices that we generated are the same, which, of course, they are not.
Transposition of Matrices
There is a special operation that transfers columns into rows and vice versa: it is called transposition. The transpose of a matrix was introduced in 1858 by the British mathematician Arthur Cayley (1821--1895). The transpose of a m × n matrix A is an n × m matrix AT (also denoted as \( {\bf A}' \) or \( {\bf A}^t \) ) created by any one of the following equivalent actions:
reflects A over its main diagonal (which runs from top-left to bottom-right);
writes the rows of A as the columns of \( {\bf A}^{\mathrm T} \)
Formally, the i-th row, j-th column element of AT is the j-th row, i-th column element of A:
Let A and B be \( m \times n \) matrices and c be a scalar. Then we have the following properties for transpose matrices:
1. \( \left( {\bf A}^{\mathrm T} \right)^{\mathrm T} = {\bf A} \)
2. \( \left( {\bf A} + {\bf B} \right)^{\mathrm T} = {\bf A}^{\mathrm T} + {\bf B}^{\mathrm T} \)
3. \( \left( {\bf A} \, {\bf B} \right)^{\mathrm T} = {\bf B}^{\mathrm T} \, {\bf A}^{\mathrm T} \)
4. \( \left( c \, {\bf B} \right)^{\mathrm T} = c\,{\bf B}^{\mathrm T} \)
5. \( {\bf A}\, {\bf A}^{\mathrm T} \) is a symmetric matrix.
A square matrix whose transpose is equal to its negative is called a skew-symmetric matrix; that is, A is skew-symmetric if
Complex entries
Let A be a m × n matrix with real or complex entries (they could be numbers or functions or other entities). Its complex conjugate, denoted by \( \overline{\bf A} , \) is again a m × n matrix, which is formed by taking the complex conjugate of each entry. Mathematica has a specific command to calculate complex conjugate:
Adjoint Matrices
If we take a transpose of the complex conjugate of m × n matrix A, we get the n × m matrix, called the adjoint matrix of A, which is denoted by \( {\bf A}^{\ast} = \overline{{\bf A}^{\mathrm T}} = \left( \overline{\bf A} \right)^{\mathrm T} . \)
% //TraditionalForm
A square complex matrix whose transpose is equal to the matrix with every entry replaced by its complex conjugate (denoted here with an overline) is called a self-adjoint matrix or a Hermitian matrix (equivalent to the matrix being equal to its conjugate transpose); that is, A is self-adjoint or Hermitian if \( {\bf A} = {\bf A}^{\ast} . \)
Building zero or diagonal matrices
Mathematica makes no distinction between vectors and matrices. For example, all n element column vectors are treated as n×1 matrices. This means that we can create a composition of row vectors in a column vector or vice versa.
If you wish to avoid building your matrix from brackets, Mathematica allows you to specify the size of a matrix through its toolbar. Navigate to Insert on the toolbar. Then click Table/Matrix -> New. A window will now appear allowing you to specify the size of your matrix. Under Make select Matrix(List of lists). Then specify the number of rows and columns you wish to input and click ok. Your specified matrix will now appear on your notebook for you to input information.
Suppose we need to build a zero matrix or the identity matrix:
\( \begin{pmatrix} 1&0&0 \\ 0&1&0 \\ 0&0&1 \end{pmatrix} \)
\( \begin{pmatrix} 1&0&0 \\ 0&1&0 \\ 0&0&1 \end{pmatrix} \)
To construct an \( n \times n \) zero square matrix, use the command Table[Table[0,{n}],{n}], where n specifies the dimension of the matrix.
For example,
Adding distinct size matrices
According to definition, we can add (or subtract) two matrices only when they are of the same size by adding (or subtracting) corresponding entries. However, sometimes we need to add two matrices of distinct sizes. It is natural to extend matrices to the largest of dimensions and fill extra entries by zeroes. It turns out that Mathematica accommodates such an operation, but you need to write a special subroutine in Wolfram language. To add two matrices (or sets of vectors) of different size by appending additional zeros to smallest vectors, we use the following script:
n = Length[A[[1]]]; m = Length[B[[1]]];
Which[n > m, B1 = Map[PadRight[#, n] &, B, 1], n < m,
A1 = Map[PadRight[#, m] &, A, 1], True,(*do nothing*)];
sum1 = Map[PadRight[#, Max[n, m] + 1] &,
Flatten[Table[A1[[i]] + B1[[j]], {i, 1, Length[A1]}, {j, 1, Length[B1]}],
1], 1]; Return[sum1[[All, 1 ;; Length[Part[sum1, 1]] - 1]]];]
Note: The inputs A_ and B_ represent the input
variables. However, we use A_?MatrixQ and B_?MatrixQ to
tell Mathematica to verify that these input variables are
matrices, not arbitrary inputs.
The same code but appending zero to the right of every vector.
Module[{A1, B1, n, m },
A1 = A; B1 = B;
n = Length[A[[1]]];
m = Length[B[[1]]];
Which[n > m, B1 = Map[PadRight[#, n] &, B, 1],
n < m, A1 = Map[PadRight[#, m] &, A, 1],
True, (* do nothing *)];
sum1 = Map[PadRight[#, Max[n, m] + 1] &,
Flatten[Table[
A1[[i]] + B1[[j]], {i, 1, Length[A1]}, {j, 1, Length[B1]}], 1],
1];
Return[sum1];
]
For instance, to add two sets of vectors, we apply:
B = {{a, b}, {c, d}, {e, f}};
AddSets[A, B]
Example
B = {{a, b}, {c, d}, {e, f}};
AddSets0[A, B]
0}, {4 + a, 5 + b, 6, 0}, {4 + c, 5 + d, 6, 0}, {4 + e, 5 + f, 6, 0}}