Properties of Matrices (Chapter 1) - CENUMES 313

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

1/33

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts from Chapter 1: Properties of Matrices, including definitions of matrix types, transpose, and basic matrix algebra.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

34 Terms

1
New cards

What is a matrix?

A rectangular array of elements arranged in rows and columns, usually denoted by a boldface capital letter (e.g., A).

2
New cards

How is matrix size denoted?

As n × m, meaning n rows and m columns.

3
New cards

What do the subscripts a_ij denote?

The element in row i and column j of a matrix.

4
New cards

What is a square matrix?

A matrix with the same number of rows and columns (n = m).

5
New cards

What is the major diagonal?

The left-to-right downward-sloping line of elements from a11 to ann.

6
New cards

What is a diagonal matrix?

A square matrix with all elements zero except those on the major diagonal.

7
New cards

What is the identity matrix?

A diagonal matrix with ones on the main diagonal; denoted I.

8
New cards

What is a scalar matrix?

A square matrix where all diagonal entries are equal; the identity is a special case.

9
New cards

What is a symmetric matrix?

A square matrix satisfying aij = aji for all i, j (A = A^T).

10
New cards

What is a zero (null) matrix?

A matrix in which every element is zero.

11
New cards

What is a vector and how are vectors represented?

A special type of matrix with either one column (column vector) or one row (row vector); bold letters are often used (e.g., X for a column vector).

12
New cards

What is a column vector dimension?

n × 1.

13
New cards

What is a row vector dimension?

1 × m.

14
New cards

What is a triangular matrix?

A square matrix with all elements on one side of the major diagonal equal to zero.

15
New cards

What is an upper triangular matrix?

All elements below the major diagonal are zero.

16
New cards

What is a lower triangular matrix?

All elements above the major diagonal are zero.

17
New cards

What is a tridiagonal matrix?

A square matrix with nonzero elements only on the main diagonal and the two diagonals surrounding it; others are zero.

18
New cards

What is a banded matrix?

A matrix with nonzero elements only along certain diagonals.

19
New cards

What is a sparse matrix?

A matrix in which most elements are zero; common in large PDE problems.

20
New cards

What is the transpose of a matrix A?

A^T is the matrix obtained by swapping rows and columns, with aij^T = aji (size m×n if A is n×m).

21
New cards

What happens to the transpose of a column vector?

It becomes a row vector, and vice versa.

22
New cards

What is a symmetric square matrix property?

A = A^T; equivalently aij = aji.

23
New cards

What is matrix addition?

Addition of corresponding elements of two matrices of equal size: A + B.

24
New cards

What is matrix subtraction?

Subtraction of corresponding elements: A − B.

25
New cards

Are matrix additions associative and commutative?

Yes: associative (A + (B + C) = (A + B) + C) and commutative (A + B = B + A).

26
New cards

What is matrix multiplication?

Product AB defined when A is n×m and B is m×r; C = AB with cij = sum over k of aik b_kj; result is n×r.

27
New cards

When are matrices conformable for multiplication?

When the number of columns of A equals the number of rows of B (A: n×m, B: m×r).

28
New cards

What is the size of AB if A is 4×3 and B is 3×2?

AB is a 4×2 matrix.

29
New cards

Are square matrices commutative under multiplication?

Not in general; AB ≠ BA.

30
New cards

Is matrix multiplication associative?

Yes: A(BC) = (AB)C for conformable matrices.

31
New cards

What is the size of F^T if F is 3×5?

5×3.

32
New cards

How do you obtain a transpose in practice?

Flip elements across the main diagonal; aij moves to aji; diagonal elements stay on the diagonal.

33
New cards

What happens to diagonal elements under transposition?

Diagonal elements a_ii remain on the diagonal after transposition.

34
New cards

What does conformability mean for multiplication (example concept)?

The inner dimensions must match (A: n×m, B: m×r) so that the product AB is defined.