Chapter 5 - Introduction to Matrix Algebra

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/35

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:52 PM on 6/15/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

36 Terms

1
New cards

matrix

a rectangular array of elements in the form of rays and columns

2
New cards

order

the dimensions of a matrix; m x n if a matrix has m rows and n columns

3
New cards

What are the stipulations for matrix A to be equal to matrix B?

  • A and B have the same order

  • all corresponding entries are equal

4
New cards

Matrix Addition

Let A and B be m x n matrices. Then A + B is an m x n matrix where (A + B)ij = aij + bij. If the orders of A and B are not identical, A + B is not defined

5
New cards

Scalar Multiplication

Let A be an m x n matrix and c a scalar. Then cA is the m x n matrix obtained by multiplying c times each entry of A; that is (cA)ij = caij

6
New cards

Matrix Multiplication

Let A be an m x n matrix and let be an n x p matrix. The product of A and B, denoted by AB, is an m x p matrix whose ith row jth column entry is:

(AB)ij = ai1bj1 + ai2bj2 + … + ainbjn

for 1 ≤ i ≤ m and 1 ≤ j ≤ p

7
New cards

What is the order of AB for Am x n and Bn x p?

m x p

8
New cards

square matrix

any n x n matrix

9
New cards

0m x n

the notation of m x n matrices whose entries are all 0

10
New cards

AA or A2

the notation of a square matrix A multiplied by itself

11
New cards

diagonal matrix

a square matrix D where dij = 0 whener i ≠ j

12
New cards

identity matrix

the n x n diagonal matrix In whose diagonal components are all 1’s is called the identity matrix

13
New cards

Matrix Inverse

Let A be an n x n matrix. If there exists an n x n matrix B such that AB = BA = I, then B is a multiplicative inverse of A is denoted by A-1

14
New cards

True or false: a matrix can have multiple inverses

false; a matrix’s inverse, if it exists, is unique

15
New cards

Determinant of a 2 by 2 matrix

Let A = (ac bd). The determinant of a is the number det A = ad - bc

16
New cards

Inverse of 2 by 2 matrix

Let A = (ac bd). If det A ≠ 0, then A-1 = 1/detA (d-c -ba)

17
New cards

Commutative Law of Addition

A + B = B + A

18
New cards

Associative Law of Addition

A + (B + C) = (A + B) + C

19
New cards

Distributive Law of a Scalar over Matrices

c(A + B) = cA + cB, where c ∈ ℝ

20
New cards

Distributive Law of Scalars over a Matrix

(c1 + c2)A = c1A + c2A, where c1c2 ∈ ℝ

21
New cards

Associative Law of Scalar Multiplication

c1(c2A) = (c1 × c2)A where c1, c2 ∈ ℝ

22
New cards

Zero Matrix Annihilates all Products

0A = 0, where 0 is the zero matrix

23
New cards

Zero Scalar Annihilates all Products

0A = 0, where 0 on the left side is the scalar zero

24
New cards

Zero Matrix is an identity for Addition

A + 0 = A

25
New cards

Negation produces additive inverses

A + (-1)A = 0

26
New cards

Right Distributive Law of Matrix Multiplication

(B + C)A = BA + CA

27
New cards

Left Distributive Law of Matrix Multiplication

A(B + C) = AB + AC

28
New cards

Associative Law of Multiplication

A(BC) = (AB)C

29
New cards

Identity Matrix is a Multiplicative Identity

IA = A and AI = A

30
New cards

Involution Property of Inverse

if A-1 exists, (A-1)-1 = A

31
New cards

Inverse of Product Rule

if A-1 and B-1 exist, (AB)-1 = B-1A-1

32
New cards

Matrix Oddity #1

AB may be different from BA

33
New cards

Matrix Oddity #2

there exist matrices A and b such that AB = 0, and yet A ≠ 0 and B ≠ 0

34
New cards

Matrix Oddity #3

there exists matrices a where A ≠ 0, and yet A2 = 0

35
New cards

Matrix Oddity #4

there exists matrices A where A2 = A with A ≠ I and A ≠ 0

36
New cards

Matrix Oddity #5

there exists matrices A where A2 = I, where A ≠ I and A ≠ -I