HL AI - Matrices

5.0(1)
studied byStudied by 5 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

Matrix Order Notation

m x n (m rows, n columns)

2
New cards

Element of a Matrix Notation

aij (i indicating the row, j indicating the column)

3
New cards

Adding and Subtracting Matrices

add or subtract elements in the same position

4
New cards

Scalar Multiplication of Matrices

multiply each element by the scalar

5
New cards

What allows matrices to be multiplied?

the number of columns in the first matrix must be equal to the number of rows in the second matrix (eg. 2×3 and 3×3)

6
New cards

Multiplying Matrices

multiply the rows in matrix one by the columns in matrix two

<p>multiply the rows in matrix one by the columns in matrix two</p>
7
New cards

Properties of Matrices

knowt flashcard image
8
New cards

Inverse of a Matrix

a matrix that can be multiplied with the original matrix to form an identity matrix

9
New cards

Identity Matrix

a matrix which contains ones on its main diagonal while the rest of the matrix elements are zeros

<p>a matrix which contains ones on its main diagonal while the rest of the matrix elements are zeros</p>
10
New cards

Finding an Inverse Matrix

can be done on a GDC (put the matrix to the power of -1), or use the method pictured

<p>can be done on a GDC (put the matrix to the power of -1), or use the method pictured</p>
11
New cards

Determinant of a Matrix

ad - bc

<p>ad - bc</p>
12
New cards

Solving Systems of Equations

  1. rewrite the system of equations as a matrix equation (like pictured)

  2. multiply both sides by the inverse of the matrix on the side with the variables (in order to get the variable on their own)

  3. determine the answer

<ol><li><p>rewrite the system of equations as a matrix equation (like pictured)</p></li><li><p>multiply both sides by the inverse of the matrix on the side with the variables (in order to get the variable on their own)</p></li><li><p>determine the answer</p></li></ol>
13
New cards

Using Transformation Matrices

  1. create a position vector (x over y)

  2. use the formula booklet to create a transformation matrix

  3. multiply the 2×2 matrix with the 2×1 matrix to get a final position vector

14
New cards

Composite Transformations

transformations that happen one after the other (the transformation that comes first is written second, so AB means B happens first)

15
New cards

Finding the Area of a Transformed Image

if an object is transformed by matrix A, then: new area = DetA x original area