Ch 2.1 - Matrix Operations

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/13

flashcard set

Earn XP

Description and Tags

Flashcards covering key definitions and concepts from the Matrix Operations lecture, including matrix types, arithmetic, multiplication, and properties.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

Matrix factorizations

Techniques used to simplify matrix computations

2
New cards

Diagonal entries

The entries a11, a22, a33, … that form the main diagonal of a matrix A.

3
New cards

Diagonal matrix

A square n x n matrix whose non-diagonal entries are all zero.

4
New cards

Zero matrix (0)

An m x n matrix whose entries are all zero.

5
New cards

Equal matrices

Two matrices are equal if they have the same size and their corresponding entries are equal.

6
New cards

Sum of matrices (A + B)

For m x n matrices A and B, the m x n matrix whose columns (and entries) are the sums of the corresponding columns (and entries) in A and B, defined only when A and B are the same size.

7
New cards

Scalar multiple (rA)

For a scalar r and a matrix A, the matrix whose columns are r times the corresponding columns in A.

8
New cards

Matrix multiplication (AB)

The product of an m x n matrix A and an n x p matrix B, resulting in an m x p matrix whose columns are A multiplied by each column of B ([Ab1 Ab2 … Abp]). It represents the composition of linear transformations.

9
New cards

Row-column rule for computing AB

A method where the (i, j)-entry of AB is calculated as the sum of the products of corresponding entries from row i of A and column j of B.

10
New cards

Identity Matrix (In)

A square diagonal matrix (n x n) with ones on the main diagonal and zeros elsewhere, acting as the identity element for matrix multiplication (e.g., Im ⋅ A = A = A ⋅ In).

11
New cards

Commute (matrices)

Two matrices A and B that produce the same product regardless of order, i.e., AB = BA.

12
New cards

Powers of a Matrix (Ak)

For an n x n matrix A and a positive integer k, Ak denotes the product of k copies of A.

13
New cards

A0 (Matrix)

Interpreted as the identity matrix.

14
New cards

Transpose of a Matrix (AT)

For an m x n matrix A, it is the n x m matrix whose columns are formed from the corresponding rows of A.