Matrix

tags: Mathematics

All Mathematics Formula by Abhyas here

Please see README if this is the first time you are here.

Matrix

Rectangular arrangement of

m×n numbers having
m
rows and
n
columns. Matrix is denoted by:
[]
or
()
or

General Form

A=[aij]m×n

aij is the general element

m×n is the order of matrix read as m corss n or m by n.

A=[a11a12a13a14a15a1na21a22a23a24a25a2na31a32a33a34a35a3nam1am2am3am4am5amn]m×n

Types of Matrices

  1. Row Matrix

    Matirx having one row. Order:

    1×n

  2. Column Matrix

    Matrix having one column. Order:

    m×1

  3. Square Matrix

    Square shaped. Order:

    m×m

  4. Rectangular Matrix

    Rectangular shaped. Order

    m×n,mn

  5. Diagonals

    a. Principal Dialognal

    All those elements

    aij where
    i=j

    eg.

    A=[PD11PD22PD33]3×3

    b. Following Diagonal

    All those Elements

    aij where
    j=mi+1

    eg.

    A=[FD13FD22FD31]3×3

  6. Diagonal Matrix

    Square matrix where except principal diagonal all other elements are

    0.

    A=[d1000d2000d3]3×3

    A=diag(d1,d2,d3)

    Property

    • An=diag(d1n,d2n,d3n)
    • A1=diag(d11,d21,d31)
  7. Triangular Matrix

    a. Upper Triangular Matrix

    Square matrix where except principal diagonal and elements above it where

    i<j, all other elements are 0.

    eg.

    A=[a11a12a130a22a2300a33]3×3

    b. Lower Triangular Matrix

    Square matrix where except principal diagonal and elements below it where

    i>j, all other elements are 0.

    eg.

    A=[a1100a21a220a31a32a33]3×3

  8. Scalar Matrix

    Diagonal Matrix where all diagonal elements are equal.

    eg.

    A=[k000k000k]3×3

  9. Identity Matrix

    Scalar matrix where all diagonal elements are

    1. It is denoted by
    Im
    where
    m
    is the order.

    eg.

    I3=[100010001]3×3.

  10. Trace of Matrix

    Sum of diagonal elements of a square matrix

    Tr(A)=a11+a22+a33+a44++amm

    Tr(A)=i=1naij

    Properties of Tract of Matrix

    1. Tr(A)=Tr(AT)
    2. Tr(kA)=kTr(A)
    3. Tr(AB)=Tr(BA)
    4. Tr(In)=n
  11. Singular Matrix

    Square matrix whose determinant is

    0.

    |A|=0

  12. Non Singular Matrix

    Determinant of matrix is not equal to

    0

    |A|0

  13. Sub Matrix

    Matrix obtained by deleting rows or columns or both in given matrix A.Similar as minor in Determinant.

  14. Idempotent Matrix

    Square matrix where

    A2=A

  15. Invoutary Matrix

    Square matrix where

    A2=I

  16. Nilpotent Matrix

    Square matrix of order

    m where
    Ak=0
    where
    k
    is minimum +ve integer and
    0
    is a null matrix

Algebra of Matrices

Equality

Two matrices are said to be equal if their order is same and corresponing elements are equal.

Addition and Subtracion

Two matrics having same order can be added or subtracted by adding or subtracting corresponing elements.

Scalar Multiplicaiton

kA if found by multiplying all the element of
A
by
k

Multiplication of two matrices

Condition

A×B is only possible if
columns(A)=rows(B)=p
(say)

Thus multiplication is possible for

Amp and
Bpn

Order of product will be

m×n

Method

Multiplicaiton is done by taking sum of

row(A)×column(B)

eg.

A=[123231024]3×3 and
B=[342023135]3×3

AB=[(1×3+2×0+3×1)]3×3

AB=[59751102126]3×3

Properties of Multiplication

  1. Generally
    ABBA
  2. (AB)C=A(BC)
    Associative
  3. A(B+C)=AB+AC
    Distributive
  4. Im×Am×n=Am×n=Am×n×In
  5. If A is a square matrix then
    An+1=An×A
  6. (A±B)2=(A±B)×(A±B)

    =A2±AB±BA+B2
  7. (A+B)(AB)=A2AB+BAB2
  8. If
    AB=0
    does not imply that
    A=0
    and/or
    B=0

Transpose of Matrix
AT
or
A

Change rows into columns or columns into rows.

eg.

A=[1234abcd]

AT=[122b3c4d]

Properties of Transpose

  1. (AT)T=A
  2. (A±B)T=AT±BT
  3. (ABC)T=CTBTAT
    [Remember, product is not commutative. ] Reversal Law
  4. Tr(A)=Tr(AT)
  5. If
    AT=AA
    is symetric matrix
    eg.
    A=[abbc]

    and
    AT=[abbc]

    A=ATA
    is a symetrix matrix
  6. If
    AT=AA
    is skew-symetric matrix
    eg.
    A=[0aba0cbc0]

    and
    AT=[0aba0cbc0]
    $
    A=ATA
    is a skew-symetrix matrix
  7. (kA)T=kAT
  8. For square matrix
    A
    , if
    AAT=ATA=I
    then A is Orthogonal Matrix

Matrix to sum of symetric and skew-symetric matrix

For given matrix

A do

A=12(A+AT)+12(AAT)

Cofactors of elemnets of Matrix

Minor of element multiplied by

(1)i+j

eg.

A=[145326010]

Cofactor of middle elelment 2 would be,

C22=(1)2+2|1500|

C22=|1500|

NOTE: minor is part of determinant. Find notes for minor.

Adjoint of a Matrix
adjA

A is a square matrix

Cij are the cofactors of
aij

adjA=[Cij]T

All Mathematics Formula by Abhays here


This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.