0% found this document useful (0 votes)
7 views5 pages

Matrix Multiplication and Inversion Guide

Uploaded by

lizzard chiko
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)
7 views5 pages

Matrix Multiplication and Inversion Guide

Uploaded by

lizzard chiko
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

Knowledge World Tuition Centre

Presents
Matrices
MATRICES

Multiplication Formula: Row x Column

(a b) , (c d) are the Rows. a are the Columns.


a b b
c
c d d

Usually one Row multiplies more than one Column.

Important Note: When Multiplying Matrices with different orders, find the order of each matrix
and finally find the order of the final Answer.

Example

2x1 2x3 This means that the final Answer will have 2 Rows and 3 Columns.

2x3

Numeric Examples: Multiply the following


1. 2.
2 1 4 3 1 0 -2
cvcvcv
3 4 1 2 0 1 5

2x4+1x1 2x3+1x2 5+0 0 + 12


3x4+4x1 3x3+4x2 15 + 0 0+6

8+1 6+2
5 12
12 + 4 9+8
15 6

9 8
16 17

1|Page
Knowledge World Tuition Centre
Presents
Matrices

3. ( -1 2 -3)
5 -2
4 2
3 1

(-1 x 5 + 2 x 4 + (-3 x 3) -1 x -2 + 2 x 2 + (-3 x 1) )


( -6 3)
TASK 1
Multiply the following;
1. 2. ( -3 6)
4 3 1 5 2 1

1 2 6 7 2 6

DETERMINANT & INVERSE


Formulas;
Det: ad – bc a b Inverse = 1 d -d
c d Det -c a

Examples;
1. Find the determinant of 3 4
-1 -2
Solution
3 (-2) – 4 (-1)
-6 + 4
-2
2. Given that matrix Q =
a 2
3 -2

a. Find the value of a, given that the determinant of Q is 2,


b. Write Q-1

2|Page
Knowledge World Tuition Centre
Presents
Matrices
Solution
a. a (-2) – 2 (3) = 2
-2a – 6 = 2
-2a = 2 + 6
-2a = 8
-2 -2

a = -4
b. Q-1 = 1 -2 -2
2 -3 -4

[Link] that the determinant of matrix A = x – 2 x is 4,


2 1
a. Find x
b. A-1
Solution
a. 1 (x – 2) – x (2) = 4 b. A-1 = 1 1 6
x – 2 – 2x = 4 4
x – 2x = 4 + 2 -2 -8
- x=6
x = -6
TRANSPOSE
When you transpose a matrix, you simply change the Rows to become Columns and Vice
Versa.
Examples
Find the transpose of the following;
a. A = 4 3
b. B = 3 BT = (3 6)
-5 6
6

cv
AT = 4 -5 c. C = (1 -2 3)
cv
3 6 CT = 1
-2
3

3|Page
Knowledge World Tuition Centre
Presents
Matrices
[Link] AT = 1 , what is A?

-3 A = (1 -3 4)
4

TASK 2
1. Given that matrix A = 2 1 a. Calculate the value of the
determinant of A.
1 3 b. A-1
c. AT

2. The matrix A = 1 x a. Calculate the value of x if the


determinant of A is 5.
-1 2
b. A-1

PRACTICE QUESTIONS
1. Given that A = a. Find the determinant of A
3 -1
b. A-1
4 2

2. The determinant of the matrix k 5 is 14. Find k.

-1 2

3. Given that A = (2 2 -1), P = and Q = 2 -1


-1 -1
, Find
a. -2P 4 2 4 1
b. Determinant of Q
2 0
c. AP
d. AT

4|Page
Knowledge World Tuition Centre
Presents
Matrices

ANSWERS
TASK 1
1. 22 41 2. (6 33)

13 19

TASK 2
1. a. Det = 5 b. 1 3 -1 c. AT = 2 1
5 -1 2 1 3

2. a. x = 3 b. 1
5 2 -3
1 1

PRACTICE QUESTIONS
1. a. Det = 10 b. 1 2 1
10 -4 3

2. K = 4.5
3. a. b. Det = 6 c. (4 2) d. AT = 2
-2 2
2
-8 -4
-1
-4 0

5|Page

Common questions

Powered by AI

For a 3x3 matrix, the determinant is found by expanding along a row or column using minors and cofactors. This involves selecting a row or column and calculating the determinant of the resulting 2x2 submatrices, then summing these results, with each cofactor multiplied by the corresponding matrix element. This process is more complex than finding the determinant of a 2x2 matrix, which involves a single calculation using the formula ad - bc .

To find the inverse of a 2x2 matrix, calculate the determinant using the formula det = ad - bc for a matrix with elements (a b), (c d). If the determinant is non-zero, the inverse exists, and it is given by 1/det times the matrix with elements (d -b), (-c a). If the determinant is zero, the matrix does not have an inverse .

Matrix multiplication involves the dot product of rows and columns of matrices and is associative but not commutative. Scalar multiplication involves multiplying every element of the matrix by a scalar, maintaining matrix dimensions. These differences imply that matrix operations require specific rules, such as matching dimensions, while scalar multiplication is straightforward and less restrictive .

To multiply matrices with different orders, start by ensuring the number of columns in the first matrix matches the number of rows in the second matrix. Then, multiply corresponding elements and sum them to get each element of the resulting matrix. The resulting matrix will have the same number of rows as the first matrix and the same number of columns as the second matrix. For example, multiplying a 2x1 matrix by a 2x3 matrix results in a 2x3 matrix .

The determinant of a matrix becomes zero when its rows or columns are linearly dependent, meaning one can be expressed as a linear combination of others. This indicates the matrix cannot be inverted, lacks full rank, and maps to a lower-dimensional space, complicating operations such as solving linear equations and affecting geometric transformations .

Transposing a matrix involves swapping its rows and columns, effectively changing a matrix A into its transpose AT. This operation is significant because it can be used to simplify matrix expressions and solve equations in matrix algebra. It is also important in determining the symmetry of a matrix and in applications such as computer graphics and data transformations .

The transpose of a matrix is used in engineering and physics to solve problems involving coordinate transformations, where it aligns data for consistency in calculations. It also simplifies expressions for quadratic forms and makes differential equations like the Schrödinger equation manageable. In finite element analysis, transposes facilitate the integration of matrices over different dimensions .

A matrix is symmetric if it is equal to its transpose, meaning A = AT. This property simplifies many mathematical computations, as symmetric matrices have real eigenvalues and orthogonal eigenvectors, making them important in optimization problems and stable numerical computations. Additionally, symmetric matrices frequently appear in physics and statistics, providing computational efficiency and theoretical insights .

Transposing a row vector transforms it into a column vector by changing its single row into a single column. This transformation is useful in matrix operations as it allows conformability in multiplication, enabling the use of matrix and vector algebra to solve linear equations and perform dot products .

The inverse of a matrix is crucial in solving systems of linear equations, as it enables the explicit expression of solutions in the form x = A^-1b. It is extensively used in various fields such as economics for input-output models, computer graphics for transforming coordinates, and differential equations for system stability analysis. Matrix inversion provides a way to understand and solve complex mathematical and computational problems .

You might also like