Linear Algebra/OLD/Matrix Operations

From testwiki
Revision as of 20:15, 22 May 2019 by imported>Texvc2LaTeXBot (Replacing deprecated latex syntax mw:Extension:Math/Roadmap)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Zero Matrix

A zero matrix is a matrix with all its entries being zero. An example of a zero matrix is

M=[000000000]

Scalars

A scalar is a nonzero constant, which are used to scale the matrix.

If r is a scalar and A is matrix, then the scalar multiple rA is the matrix whose columns are r times the corresponding columns in A.

Here is an example,

r=4A=[2371]
rA=[4*24*34*74*1]=[812284]

A scalar is indirectly used when we subtract two matrices, because -B can be defined as (-1)B. This means when we subtract the matrix B from the matrix A, A-B is the same as A+(-1)B.

Addition and subtraction

Two matrices can only be added or subtracted if they have the same size. Matrix addition and subtraction are done entry-wise, which means that each entry in A+B is the sum of the corresponding entries in A and B.

Here is an example of matrix addition

A=[753405]B=[111132]
A+B=[7+15+13+1410+35+2]=[864337]

And an example of subtraction

A=[753405]B=[111132]
AB=[7151314+10352]=[642534]

Remember you can not add or subtract two matrices of different sizes.

The following rules applies to sums and scalar multiples of matrices.
Let A, B, and C be matrices of the same size, and let r and s be scalars.

  • A + B = B + A
  • (A + B) + C = A + (B + C)
  • A + 0 = A
  • r(A + B) = rA + rB
  • (r + s)A = rA + sA
  • r(sA) = (rs)A

Matrix Multiplication

Matrix multiplication is slightly less intuitive for the beginning student of linear algebra than is scalar multiplication. It is, however, no more difficult.

Definition

If A is a 1 by m matrix and B is an m by 1 matrix, then the product AB is given as

[a11a12a1m][b11b21bm1]=[a11b11+a12b21++a1mbm1]

This summation of terms can be expressed as a Riemann sum

[k=1ma1mbm1](1,1)

We can use this knowledge to determine if matrix multiplication can occur. For example, a 3×2 multiplied by a 2×3 matrix will yield a 3×3 matrix. If the number of columns of the first matrix is equal to the number of rows of the second matrix, multiplication can occur (as seen in the example mentioned).

Matrix multiplication is noncommutative, meaning a * b does not equal b * a. This is easy to see by looking at the example above.

Powers

If A is an n×n matrix and if k is a positive integer, then Ak denotes the product of k copies of A

Ak=AAk

If A is nonzero and if x is in n, then Ak𝐱 is the result of left-multiplying x by A repeatedly k times. If k = 0, then A0𝐱 should be x itself. Thus A0 is interpreted as the identity matrix.

Transpose

Given the m×n matrix A, the transpose of A is the n×m, denoted AT, whose columns are formed from the corresponding rows of A.

For example

A=[abcd]B=[3527691052]
AT=[acbd]BT=[3261557902]

The following rules applied when working with transposing

  1. (AT)T=A
  2. (A+B)T=AT+BT
  3. For any scalar r, (rA)T=rAT
  4. (AB)T=BTAT

The 4th rule can be generalize to products of more than two factors, as "The transpose of a product of matrices equals the product of their transposes in the reverse order." Meaning

(a1,a2,a3,...,an)T=anT,...,a3T,a2T,a1T

Template:BookCat