MATRIX OPERATIONS
- Matrix Addition and Scalar Multiply:
- for
A, B and C
- A+B is defined by
(A+B)ij = aij + bij.
- rA for scalar r is defined by
(rA)ij = raij.
- Properties
- 1.
- A+B=B+A
- 2.
-
(A+B)+C=A+(B+C)
- 3.
- A+O=A, zero matrix, additive identity
- 4.
-
r(A+B)=rA+rB, scalar r
- 5.
-
(r+s)A=rA+sA, scalars r and s
- 6.
-
r(sA)=(rs)A, scalars r and s
- Matrix Multiply:
- for an
A,
B and
C
- Definition
,
or
;
needs mnp scalar multiplications.
- Properties
- 1.
-
A(BC) = (AB)C
- 2.
-
A(B+C) = AB+AC
- 3.
-
(B+C)A = BA+CA
- 4.
-
r(AB) = (rA)B = A(rB) = (AB)r, scalar r
- 5.
-
ImA = AIn, identity multiplication
- Commutativity:
- If AB = BA, then A and B are said to commute.
NOTE:
USUALLY!.
- Powers:
-
Ak = Ak-1A; A0 = I, A1 = A, A2 = AA,
A3 = A2A = AAA, etc.
Note: Compute
using
not
.
- Transpose:
-
(AT)ij = (A)ji;
(AB)T = BTAT.
- Scalar, Inner or Dot Product:
-
(sometimes denoted by
)
Note: if
is row i or A,
.
- Outer Product:
-
-
an ()
times a ()
is an
matrix,
-
- Outer product form for AB: if
is row i or B,
then
.
MATRIX INVERSES
- Inverse of A:
- For an
A
- Definition: if, for some
C,
AC = CA = I, then
A is invertible, and C is the inverse of A,
notated by A-1.
-
? If A is invertible, then
,
so
.
- Properties:
(A-1)-1 = A,
(AB)-1 = B-1A-1,
(AT)-1=(A-1)T.
- Finding A-1:
Alan C Genz
2000-06-22