0% found this document useful (0 votes)
30 views1 page

M.2 Matrix Arithmetic

Uploaded by

pesquivias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views1 page

M.2 Matrix Arithmetic

Uploaded by

pesquivias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

M.

2 Matrix Arithmetic
M.2 Matrix Arithmetic

Transpose a Matrix
To take the transpose of a matrix, simply switch the rows and column of a matrix. The transpose of can be denoted as or .

For example

If a matrix is its own transpose, then that matrix is said to be symmetric. Symmetric matrices must be square matrices, with the same number of rows and columns.

One example of a symmetric matrix is shown below:

Matrix Addition
To perform matrix addition, two matrices must have the same dimensions. This means they must have the same number of rows and columns. In that case simply add each
individual components, like below.

For example

Matrix addition does have many of the same properties as "normal" addition.

In addition, if one wishes to take the transpose of the sum of two matrices, then

Matrix Scalar Multiplication


To multiply a matrix by a scalar, also known as scalar multiplication, multiply every element in the matrix by the scalar.

For example...

To multiply two vectors with the same length together is to take the dot product, also called inner product. This is done by multiplying every entry in the two vectors together and
then adding all the products up.

For example, for vectors x and y, the dot product is calculated below

Matrix Multiplication
To perform matrix multiplication, the first matrix must have the same number of columns as the second matrix has rows. The number of rows of the resulting matrix equals the
number of rows of the first matrix, and the number of columns of the resulting matrix equals the number of columns of the second matrix. So a 3 × 5 matrix could be multiplied by a 5
× 7 matrix, forming a 3 × 7 matrix, but one cannot multiply a 2 × 8 matrix with a 4 × 2 matrix. To find the entries in the resulting matrix, simply take the dot product of the
corresponding row of the first matrix and the corresponding column of the second matrix.

For example

Matrix multiplication has some of the same properties as "normal" multiplication , such as

However matrix multiplication is not communicative. That is to say A*B does not necessarily equal B*A. In fact, B*A often has no meaning since the dimensions rarely match up.
However, you can take the transpose of matrix multiplication. In that case .

Legend
[1] Link
↥ Has Tooltip/Popover
Toggleable Visibility

Source: [Link]

Links:

You might also like