Processing math: 84%
Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

2.1: Matrix Operations

( \newcommand{\kernel}{\mathrm{null}\,}\)

Learning Objectives
  • Perform the matrix operations of matrix addition, scalar multiplication, transposition and matrix multiplication. Identify when these operations are not defined. Represent these operations in terms of the entries of a matrix.
  • Prove algebraic properties for matrix addition, scalar multiplication, transposition, and matrix multiplication. Apply these properties to manipulate an algebraic expression involving matrices.

You have now solved systems of equations by writing them in terms of an augmented matrix and then doing row operations on this augmented matrix. It turns out that matrices are important not only for systems of equations but also in many applications.

Recall that a matrix is a rectangular array of numbers. Several of them are referred to as matrices. For example, here is a matrix.

[123452876912]

Recall that the size or dimension of a matrix is defined as m×n where m is the number of rows and n is the number of columns. The above matrix is a 3×4 matrix because there are three rows and four columns. You can remember the columns are like columns in a Greek temple. They stand upright while the rows lay flat like rows made by a tractor in a plowed field.

When specifying the size of a matrix, you always list the number of rows before the number of columns. You might remember that you always list the rows before the columns by using the phrase Rowman Catholic.

Consider the following definition.

Definition 2.1.1: Square Matrix

A matrix A which has size n×n is called a square matrix . In other words, A is a square matrix if it has the same number of rows and columns.

There is some notation specific to matrices which we now introduce. We denote the columns of a matrix A by Aj as follows

A=[A1A2An] Therefore, Aj is the jth column of A, when counted from left to right.

The individual elements of the matrix are called entries or components of A. Elements of the matrix are identified according to their position. The (i,j)-entry of a matrix is the entry in the ith row and jth column. For example, in the matrix (???) above, 8 is in position (2,3) (and is called the (2,3)-entry) because it is in the second row and the third column.

In order to remember which matrix we are speaking of, we will denote the entry in the ith row and the jth column of matrix A by aij. Then, we can write A in terms of its entries, as A=[aij]. Using this notation on the matrix in (???), a23=8,a32=9,a12=2, etc.

There are various operations which are done on matrices of appropriate sizes. Matrices can be added to and subtracted from other matrices, multiplied by a scalar, and multiplied by other matrices. We will never divide a matrix by another matrix, but we will see later how matrix inverses play a similar role.

In doing arithmetic with matrices, we often define the action by what happens in terms of the entries (or components) of the matrices. Before looking at these operations in depth, consider a few general definitions.

Definition 2.1.2: The Zero Matrix

The m×n zero matrix is the m×n matrix having every entry equal to zero. It is denoted by 0.

One possible zero matrix is shown in the following example.

Example 2.1.1: The Zero Matrix

The 2×3 zero matrix is 0=[000000].

Note there is a 2×3 zero matrix, a 3×4 zero matrix, etc. In fact there is a zero matrix for every size!

Definition 2.1.3: Equality of Matrices

Let A and B be two m×n matrices. Then A=B means that for A=[aij] and B=[bij], aij=bij for all 1im and 1jn.

In other words, two matrices are equal exactly when they are the same size and the corresponding entries are identical. Thus [000000][0000] because they are different sizes. Also, [0132][1023] because, although they are the same size, their corresponding entries are not identical.

In the following section, we explore addition of matrices.

Addition of Matrices

When adding matrices, all matrices in the sum need have the same size. For example, [123452] and [148285] cannot be added, as one has size 3×2 while the other has size 2×3.

However, the addition [4635041123]+[0504414126] is possible.

The formal definition is as follows.

Definition 2.1.4: Addition of Matrices

Let A=[aij] and B=[bij] be two m×n matrices. Then A+B=C where C is the m×n matrix C=[cij] defined by cij=aij+bij

This definition tells us that when adding matrices, we simply add corresponding entries of the matrices. This is demonstrated in the next example.

Example 2.1.2: Addition of Matrices of Same Size

Add the following matrices, if possible. A=[123104],B=[523621]

Solution

Notice that both A and B are of size 2×3. Since A and B are of the same size, the addition is possible. Using Definition 2.1.4, the addition is done as follows. A+B=[123104]+[523621]=[1+52+23+31+60+24+1]=[646525]

Addition of matrices obeys very much the same properties as normal addition with numbers. Note that when we write for example A+B then we assume that both matrices are of equal size so that the operation is indeed possible.

Proposition 2.1.1: Properties of Matrix Addition

Let A,B and C be matrices. Then, the following properties hold.

  • Commutative Law of Addition A+B=B+A
  • Associative Law of Addition (A+B)+C=A+(B+C)
  • Existence of an Additive Identity There exists a zero matrix 0 such thatA+0=A
  • Existence of an Additive Inverse There exists a matrix A such thatA+(A)=0
Proof

Consider the Commutative Law of Addition given in (???). Let A,B,C, and D be matrices such that A+B=C and B+A=D. We want to show that D=C. To do so, we will use the definition of matrix addition given in Definition 2.1.4. Now, cij=aij+bij=bij+aij=dij Therefore, C=D because the ijth entries are the same for all i and j. Note that the conclusion follows from the commutative law of addition of numbers, which says that if a and b are two numbers, then a+b=b+a. The proof of the other results are similar, and are left as an exercise.

We call the zero matrix in (???) the additive identity. Similarly, we call the matrix A in (???) the additive inverse. A is defined to equal (1)A=[aij]. In other words, every entry of A is multiplied by 1.

In the next section we will study scalar multiplication in more depth to understand what is meant by (1)A.

Scalar Multiplication of Matrices

Recall that we use the word scalar when referring to numbers. Therefore, scalar multiplication of a matrix is the multiplication of a matrix by a number. To illustrate this concept, consider the following example in which a matrix is multiplied by the scalar 3. 3[123452876912]=[369121562421182736]

The new matrix is obtained by multiplying every entry of the original matrix by the given scalar.

The formal definition of scalar multiplication is as follows.

Definition 2.1.5: Scalar Multiplication of Matrices

If A=[aij] and k is a scalar, then kA=[kaij].

Consider the following example.

Example 2.1.3: Effect of Multiplication by a Scalar

Find the result of multiplying the following matrix A by 7. A=[2014]

Solution

By Definition 2.1.5, we multiply each element of A by 7. Therefore, 7A=7[2014]=[7(2)7(0)7(1)7(4)]=[140728]

Similarly to addition of matrices, there are several properties of scalar multiplication which hold.

Proposition 2.1.2: Properties of Scalar Multiplication

Let A,B be matrices, and k,p be scalars. Then, the following properties hold.

  • Distributive Law over Matrix Addition k(A+B)=kA+kB
  • Distributive Law over Scalar Addition (k+p)A=kA+pA
  • Associative Law for Scalar Multiplication k(pA)=(kp)A
  • Rule for Multiplication by 1 1A=A
Proof

The proof of this proposition is similar to the proof of Proposition 2.1.1 and is left an exercise to the reader.

Matrix Multiplication

The next important matrix operation we will explore is multiplication of matrices. The operation of matrix multiplication is one of the most important and useful of the matrix operations. Throughout this section, we will also demonstrate how matrix multiplication relates to linear systems of equations.

First, we provide a formal definition of row and column vectors.

Definition 2.1.6: Row and Column Vectors

Matrices of size n×1 or 1×n are called vectors. If X is such a matrix, then we write xi to denote the entry of X in the ith row of a column matrix, or the ith column of a row matrix.

The n×1 matrix X=[x1xn] is called a column vector. The 1×n matrix X=[x1xn] is called a row vector.

We may simply use the term vector throughout this text to refer to either a column or row vector. If we do so, the context will make it clear which we are referring to.

A linear combination of vectors is a sum consisting of those vectors multiplied by scalars. For example, [50122]=7[14]+8[25]+9[36] is a linear combination of three vectors.

It turns out that we can express any system of linear equations as a linear combination of vectors. In fact, the vectors that we will use are just the columns of the corresponding augmented matrix!

Definition 2.1.7: The Vector Form of a System of Linear Equations

Suppose we have a system of equations given by a11x1++a1nxn=b1am1x1++amnxn=bm We can express this system in vector form which is as follows: x1[a11a21am1]+x2[a12a22am2]++xn[a1na2namn]=[b1b2bm]

Notice that each vector used here is one column from the corresponding augmented matrix. There is one vector for each variable in the system, along with the constant vector.

The first important form of matrix multiplication is multiplying a matrix by a vector. Consider the product given by [123456][789] We will soon see that this equals 7[14]+8[25]+9[36]=[50122]

In general terms, [a11a12a13a21a22a23][x1x2x3]= x1[a11a21]+x2[a12a22]+x3[a13a23]=[a11x1+a12x2+a13x3a21x1+a22x2+a23x3] Thus you take x1 times the first column, add to x2 times the second column, and finally x3 times the third column. The above sum is a linear combination of the columns of the matrix. When you multiply a matrix on the left by a vector on the right, the numbers making up the vector are just the scalars to be used in the linear combination of the columns as illustrated above.

Here is the formal definition of how to multiply an m×n matrix by an n×1 column vector.

Definition 2.1.8: Multiplication of Vector by Matrix

Let A=[aij] be an m×n matrix and let X be an n×1 matrix given by A=[A1An],X=[x1xn]

Then the product AX is the m×1 column vector which equals the following linear combination of the columns of A: x1A1+x2A2++xnAn=nj=1xjAj

If we write the columns of A in terms of their entries, they are of the form Aj=[a1ja2jamj] Then, we can write the product AX as AX=x1[a11a21am1]+x2[a12a22am2]++xn[a1na2namn]

Note that multiplication of an m×n matrix and an n×1 vector produces an m×1 vector.

Here is an example.

Example 2.1.4: A Vector Multiplied by a Matrix

Compute the product AX for A=[121302122141],X=[1201]

Solution

We will use Definition 2.1.3 to compute the product. Therefore, we compute the product AX as follows. 1[102]+2[221]+0[114]+1[321]=[102]+[442]+[000]+[321]=[825]

Using the above operation, we can also write a system of linear equations in matrix form. In this form, we express the system as a matrix multiplied by a vector. Consider the following definition.

Definition 2.1.9: The Matrix Form of a System of Linear Equations

Suppose we have a system of equations given by a11x1++a1nxn=b1a21x1++a2nxn=b2am1x1++amnxn=bm Then we can express this system in matrix form as follows. [a11a12a1na21a22a2nam1am2amn][x1x2xn]=[b1b2bm]

The expression AX=B is also known as the Matrix Form of the corresponding system of linear equations. The matrix A is simply the coefficient matrix of the system, the vector X is the column vector constructed from the variables of the system, and finally the vector B is the column vector constructed from the constants of the system. It is important to note that any system of linear equations can be written in this form.

Notice that if we write a homogeneous system of equations in matrix form, it would have the form AX=0, for the zero vector 0.

You can see from this definition that a vector X=[x1x2xn] will satisfy the equation AX=B only when the entries x1,x2,,xn of the vector X are solutions to the original system.

Now that we have examined how to multiply a matrix by a vector, we wish to consider the case where we multiply two matrices of more general sizes, although these sizes still need to be appropriate as we will see. For example, in Example 2.1.1, we multiplied a 3×4 matrix by a 4×1 vector. We want to investigate how to multiply other sizes of matrices.

We have not yet given any conditions on when matrix multiplication is possible! For matrices A and B, in order to form the product AB, the number of columns of A must equal the number of rows of B. Consider a product AB where A has size m×n and B has size n×p. Then, the product in terms of size of matrices is given by (m×these must match!^n)(n×p)=m×p

Note the two outside numbers give the size of the product. One of the most important rules regarding matrix multiplication is the following. If the two middle numbers don’t match, you can’t multiply the matrices!

When the number of columns of A equals the number of rows of B the two matrices are said to be conformable and the product AB is obtained as follows.

Definition 2.1.10: Multiplication of Two Matrices

Let A be an m×n matrix and let B be an n×p matrix of the form B=[B1Bp] where B1,...,Bp are the n×1 columns of B. Then the m×p matrix AB is defined as follows: AB=A[B1Bp]=[(AB)1(AB)p] where (AB)k is an m×1 matrix or column vector which gives the kth column of AB.

Consider the following example.

Example 2.1.5: Multiplying Two Matrices

Find AB if possible. A=[121021],B=[120031211]

Solution

The first thing you need to verify when calculating a product is whether the multiplication is possible. The first matrix has size 2×3 and the second matrix has size 3×3. The inside numbers are equal, so A and B are conformable matrices. According to the above discussion AB will be a 2×3 matrix. Definition 2.1.5 gives us a way to calculate each column of AB, as follows.

[First column[121021][102],Second column[121021][231],Third column[121021][011]] You know how to multiply a matrix times a vector, using Definition 2.1.3 for each of the three columns. Thus [121021][120031211]= [193273]

Since vectors are simply n×1 or 1×m matrices, we can also multiply a vector by another vector.

Example 2.1.6: Vector Times Vector Multiplication

Multiply if possible [121][1210].

Solution

In this case we are multiplying a matrix of size 3×1 by a matrix of size 1×4. The inside numbers match so the product is defined. Note that the product will be a matrix of size 3×4. Using Definition 2.1.5, we can compute this product as follows [121][1210]=[First column[121][1],Second column[121][2],Third column[121][1],Fourth column[121][0]]

You can use Definition 2.1.3 to verify that this product is [121024201210]

Example 2.1.7: A Multiplication Which is Not Defined

Find BA if possible. B=[120031211],A=[121021]

Solution

First check if it is possible. This product is of the form (3×3)(2×3). The inside numbers do not match and so you can’t do this multiplication.

In this case, we say that the multiplication is not defined. Notice that these are the same matrices which we used in Example 2.1.2. In this example, we tried to calculate BA instead of AB. This demonstrates another property of matrix multiplication. While the product AB maybe be defined, we cannot assume that the product BA will be possible. Therefore, it is important to always check that the product is defined before carrying out any calculations.

Earlier, we defined the zero matrix 0 to be the matrix (of appropriate size) containing zeros in all entries. Consider the following example for multiplication by the zero matrix.

Example 2.1.8: Multiplication by the Zero Matrix

Compute the product A0 for the matrix A=[1234] and the 2×2 zero matrix given by 0=[0000]

Solution

In this product, we compute [1234][0000]=[0000]

Hence, A0=0.

Notice that we could also multiply A by the 2×1 zero vector given by [00]. The result would be the 2×1 zero vector. Therefore, it is always the case that A0=0, for an appropriately sized zero matrix or vector.

The ij-th Entry of a Matrix Product

Up to this point, we have used the entries of a matrix to describe the action of matrix addition and scalar multiplication. We can also study matrix multiplication using the entries of matrices.

What is the ijth entry of AB? It is the entry in the ith row and the jth column of the product AB.

Now if A is m×n and B is n×p, then we know that the product AB has the form [a11a12a1na21a22a2nam1am2amn][b11b12b1jb1pb21b22b2jb2pbn1bn2bnjbnp]

The jth column of AB is of the form [a11a12a1na21a22a2nam1am2amn][b1jb2jbnj] which is an m×1 column vector. It is calculated by b1j[a11a21am1]+b2j[a12a22am2]++bnj[a1na2namn]

Therefore, the ijth entry is the entry in row i of this vector. This is computed by ai1b1j+ai2b2j++ainbnj=nk=1aikbkj

The following is the formal definition for the ijth entry of a product of matrices.

Definition 2.1.11: The ijth Entry of a Product

Let A=[aij] be an m×n matrix and let B=[bij] be an n×p matrix. Then AB is an m×p matrix and the (i,j)-entry of AB is defined as (AB)ij=nk=1aikbkj Another way to write this is (AB)ij=[ai1ai2ain][b1jb2jbnj]=ai1b1j+ai2b2j++ainbnj

In other words, to find the (i,j)-entry of the product AB, or (AB)ij, you multiply the ith row of A, on the left by the jth column of B. To express AB in terms of its entries, we write AB=[(AB)ij].

Consider the following example.

Example 2.1.9: The Entries of a Product

Compute AB if possible. If it is, find the (3,2)-entry of AB using Definition 2.1.1. A=[123126],B=[231762]

Solution

First check if the product is possible. It is of the form (3×2)(2×3) and since the inside numbers match, it is possible to do the multiplication. The result should be a 3×3 matrix. We can first compute AB: [[123126][27],[123126][36],[123126][12]] where the commas separate the columns in the resulting product. Thus the above product equals [1615513155464214] which is a 3×3 matrix as desired. Thus, the (3,2)-entry equals 42.

Now using Definition 2.1.1, we can find that the (3,2)-entry equals 2k=1a3kbk2=a31b12+a32b22=2×3+6×6=42 Consulting our result for AB above, this is correct!

You may wish to use this method to verify that the rest of the entries in AB are correct.

Here is another example.

Example 2.1.10: Finding the Entries of a Product

Determine if the product AB is defined. If it is, find the (2,1)-entry of the product. A=[231762000],B=[123126]

Solution

This product is of the form (3×3)(3×2). The middle numbers match so the matrices are conformable and it is possible to compute the product.

We want to find the (2,1)-entry of AB, that is, the entry in the second row and first column of the product. We will use Definition 2.1.1, which states (AB)ij=nk=1aikbkj In this case, n=3, i=2 and j=1. Hence the (2,1)-entry is found by computing (AB)21=3k=1a2kbk1=[a21a22a23][b11b21b31] Substituting in the appropriate values, this product becomes [a21a22a23][b11b21b31]=[762][132]=1×7+3×6+2×2=29

Hence, (AB)21=29.

You should take a moment to find a few other entries of AB. You can multiply the matrices to check that your answers are correct. The product AB is given by AB=[1313293200]

Properties of Matrix Multiplication

As pointed out above, it is sometimes possible to multiply matrices in one order but not in the other order. However, even if both AB and BA are defined, they may not be equal.

Example 2.1.11: Matrix Multiplication is Not Commutative

Compare the products AB and BA, for matrices A=[1234],B=[0110]

Solution

First, notice that A and B are both of size 2×2. Therefore, both products AB and BA are defined. The first product, AB is

AB=[1234][0110]=[2143]

The second product, BA is

[0110][1234]=[3412]

Therefore, ABBA.

This example illustrates that you cannot assume AB=BA even when multiplication is defined in both orders. If for some matrices A and B it is true that AB=BA, then we say that A and B commute. This is one important property of matrix multiplication.

The following are other important properties of matrix multiplication. Notice that these properties hold only when the size of matrices are such that the products are defined.

Proposition 2.1.3: Properties of Matrix Multiplication

The following hold for matrices A,B, and C and for scalars r and s,

\begin{align} A\left( rB+sC\right) &= r\left( AB\right) +s\left( AC\right) \label{matrixproperties1} \\[4pt] \left( B+C\right) A &=BA+CA \label{matrixproperties2} \\[4pt] A\left( BC\right) &=\left( AB\right) C \label{matrixproperties3} \end{align}

Proof

First we will prove \eqref{matrixproperties1}. We will use Definition 2.3.1 and prove this statement using the ij^{th} entries of a matrix. Therefore,

\begin{aligned} \left( A\left( rB+sC\right) \right) _{ij} &=\sum_{k}a_{ik}\left( rB+sC\right) _{kj} \\[4pt] &= \sum_{k}a_{ik}\left( rb_{kj}+sc_{kj}\right) \\[4pt] &=r\sum_{k}a_{ik}b_{kj}+s\sum_{k}a_{ik}c_{kj} \\[4pt] &=r\left( AB\right) _{ij}+s\left( AC\right) _{ij} \\[4pt] &=\left( r\left( AB\right) +s\left( AC\right) \right) _{ij} \end{aligned}

Thus A\left( rB+sC\right) =r(AB)+s(AC) as claimed.

The proof of Equation \eqref{matrixproperties2} follows the same pattern and is left as an exercise.

Statement Equation \eqref{matrixproperties3} is the associative law of multiplication. Using Definition 2.3.1,

\begin{align*}\left( A\left( BC\right) \right) _{ij} &=\sum_{k}a_{ik}\left( BC\right) _{kj} \\[4pt] &=\sum_{k}a_{ik}\sum_{l}b_{kl}c_{lj} \\[4pt] &=\sum_{l}\left( AB\right) _{il}c_{lj}=\left( \left( AB\right) C\right) _{ij}. \end{align*}

This proves \eqref{matrixproperties3}.

The Transpose of a Matrix

Another important operation on matrices is that of taking the transpose. For a matrix A, we denote the transpose of A by A^T. Before formally defining the transpose, we explore this operation on the following matrix.

\left[ \begin{array}{cc} 1 & 4 \\ 3 & 1 \\ 2 & 6 \end{array} \right] ^{T}= \ \ \left[ \begin{array}{ccc} 1 & 3 & 2 \\ 4 & 1 & 6 \end{array} \right] \nonumber

What happened? The first column became the first row and the second column became the second row. Thus the 3\times 2 matrix became a 2\times 3 matrix. The number 4 was in the first row and the second column and it ended up in the second row and first column.

The definition of the transpose is as follows.

Definition \PageIndex{12}: The Transpose of a Matrix

Let A be an m\times n matrix. Then A^{T}, the transpose of A, denotes the n\times m matrix given by

A^{T} = \left[ a _{ij}\right] ^{T}= \left[ a_{ji} \right]\nonumber

The \left( i, j \right)-entry of A becomes the \left( j,i \right)-entry of A^T.

Consider the following example.

Example \PageIndex{12}: The Transpose of a Matrix

Calculate A^T for the following matrix

A = \left[ \begin{array}{rrr} 1 & 2 & -6 \\ 3 & 5 & 4 \end{array} \right] \nonumber

Solution

By Definition \PageIndex{1}, we know that for A = \left[ a_{ij} \right], A^T = \left[ a_{ji} \right]. In other words, we switch the row and column location of each entry. The \left( 1, 2 \right)-entry becomes the \left( 2,1 \right)-entry.

Thus, A^T = \left[ \begin{array}{rr} 1 & 3 \\ 2 & 5 \\ -6 & 4 \end{array} \right] \nonumber

Notice that A is a 2 \times 3 matrix, while A^T is a 3 \times 2 matrix.

The transpose of a matrix has the following important properties.

Proposition \PageIndex{4}: Properties of the Transpose of a Matrix

Let A be an m\times n matrix, B an n\times p matrix, and r and s scalars. Then

  1. \left(A^{T}\right)^{T} = A\nonumber
  2. \left( AB\right) ^{T}=B^{T}A^{T} \nonumber
  3. \left( rA+ sB\right) ^{T}=rA^{T}+ sB^{T} \nonumber
Proof

First we prove 2. From Definition \PageIndex{1},

\begin{aligned} \left(AB\right)^{T} &= \left[ (AB) _{ij} \right] ^{T}=\left[ (AB)_{ji} \right]=\sum_{k}a_{jk}b_{ki}= \sum_{k}b_{ki}a_{jk} \\[4pt] &= \sum_{k}\left[ b_{ik}\right]^{T}\left[ a_{kj}\right]^{T}=\left[ b_{ij}\right] ^{T} \left[ a_{ij}\right]^{T} = B^{T}A^{T} \end{aligned}

The proof of Formula 3 is left as an exercise.

The transpose of a matrix is related to other important topics. Consider the following definition.

Definition \PageIndex{13}: Symmetric and Skew Symmetric Matrices

An n\times n matrix A is said to be symmetric if A=A^{T}. It is said to be skew symmetric if A=-A^{T}.

We will explore these definitions in the following examples.

Example \PageIndex{13}: Symmetric Matrices

Let

A=\left[ \begin{array}{rrr} 2 & 1 & 3 \\ 1 & 5 & -3 \\ 3 & -3 & 7 \end{array} \right] \nonumber

Use Definition \PageIndex{2} to show that A is symmetric.

Solution

By Definition \PageIndex{2}, we need to show that A = A^T. Now, using Definition \PageIndex{1},

A^{T} = \left[ \begin{array}{rrr} 2 & 1 & 3 \\ 1 & 5 & -3 \\ 3 & -3 & 7 \end{array} \right]\nonumber

Hence, A = A^{T}, so A is symmetric.

Below is a video example that goes over the the product of a matrix with its transpose.

Example \PageIndex{14}

Let A=\left[ \begin{array}{rrr} 6 & -1 \\ -2 & 4 \\ 1 & 3 \end{array} \right]. Find A^TA.

Solution
  • Video Length: 4 minutes 46 seconds.
  • Context: This video demonstrates using the transpose of a matrix in a calculation.
Proposition \PageIndex{5}

Let A be an m\times n matrix. Then

  1. A^T A is a symmetric matrix.
  2. A A^T is a symmetric matrix.
Proof

We prove statement 1. To show that A^T A is symmetric, we must show that it is equal to its transpose. Notice that

(A^T A)^T = A^T (A^T)^T = A^T A

Since A^T A)^T = A^T A, A^T A is symmetric.

Proof of statement 2 is similar.

Example \PageIndex{15}: A Skew Symmetric Matrix

Let

A=\left[ \begin{array}{rrr} 0 & 1 & 3 \\ -1 & 0 & 2 \\ -3 & -2 & 0 \end{array} \right] \nonumber

Show that A is skew symmetric.

Solution

By Definition \PageIndex{2},

A^{T} = \left[ \begin{array}{rrr} 0 & -1 & -3\\ 1 & 0 & -2\\ 3 & 2 & 0 \end{array} \right] \nonumber

You can see that each entry of A^T is equal to -1 times the same entry of A. Hence, A^{T} = - A and so by Definition \PageIndex{2}, A is skew symmetric.


This page titled 2.1: Matrix Operations is shared under a CC BY 4.0 license and was authored, remixed, and/or curated by Doli Bambhania, Fatemeh Yarahmadi, and Bill Wilson.

Support Center

How can we help?

2: Matrices
2.1E: Exercises for Section 2.1