Matrices: Addition, Subtraction, Multiplication, Inverses, and Transformations

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

1/13

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts from the lecture notes on matrices, including matrix operations, dimensions, scalar multiplication, matrix multiplication, inverse matrices, and geometrical transformations.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

What is the dimension of a matrix?

The number of rows by the number of columns in the matrix (m x n).

2
New cards

How are matrices added or subtracted?

By adding or subtracting their corresponding elements. Matrices must have the same dimensions to be added or subtracted.

3
New cards

What is scalar multiplication of a matrix?

Multiplying each element of the matrix by a scalar (number).

4
New cards

Under what condition can two matrices A and B be multiplied together?

Only if the number of columns of A equals the number of rows of B.

5
New cards

What is the determinant of a 2x2 matrix M = [[a, b], [c, d]]?

det M = ad - cb

6
New cards

What is a singular matrix?

A matrix with a determinant of 0.

7
New cards

What is the identity matrix I?

A square matrix with 1s on the main diagonal and 0s elsewhere (e.g., [[1, 0], [0, 1]] for a 2x2 matrix).

8
New cards

What is the inverse of a matrix M?

A matrix M⁻¹ such that MM⁻¹ = M⁻¹M = I, where I is the identity matrix.

9
New cards

What is the formula for the inverse of a 2x2 matrix M = [[a, b], [c, d]]?

M⁻¹ = (1/det M) * [[d, -b], [-c, a]], provided det M ≠ 0.

10
New cards

How can inverse matrices be used to solve simultaneous equations?

By expressing the equations in matrix form AX = B, then solving for X as X = A⁻¹B.

11
New cards

What matrix represents a reflection in the line y = x?

[[0, 1], [1, 0]]

12
New cards

What matrix represents a rotation of 90° clockwise about the origin?

[[0, -1], [1, 0]]

13
New cards

What matrix represents an enlargement with scale factor n and centre O?

[[n, 0], [0, n]]

14
New cards

What are invariant points in a transformation?

Points that do not change position after the transformation.