Matrices
59 flashcards covering Matrices for the ACT Math section.
Matrices are essentially rectangular arrays of numbers arranged in rows and columns, like a grid that helps organize data or perform calculations. For example, you might use a matrix to represent a system of equations or to transform points in geometry. They're a fundamental tool in algebra and beyond, allowing you to add, subtract, multiply, or find inverses, which simplifies complex problems.
On the ACT Math section, matrices often appear in questions about basic operations like addition and multiplication, or solving systems of linear equations. Common traps include mixing up the order of matrix multiplication—since it isn't commutative—or confusing determinants with other properties. Focus on mastering the rules for operations and recognizing when matrices are used to model real-world scenarios, as these questions test your ability to apply concepts efficiently under time pressure.
A good tip: Always double-check the dimensions when multiplying matrices to ensure they're compatible.
Terms (59)
- 01
Matrix
A matrix is a rectangular array of numbers arranged in rows and columns, used to represent and solve systems of linear equations.
- 02
Order of a matrix
The order of a matrix is the number of rows by the number of columns, denoted as m x n for a matrix with m rows and n columns.
- 03
Element of a matrix
An element of a matrix is a specific number in the array, identified by its row and column position, such as a{ij} for the element in the i-th row and j-th column.
- 04
Row of a matrix
A row of a matrix is a horizontal set of elements in the array, and the matrix can have multiple rows.
- 05
Column of a matrix
A column of a matrix is a vertical set of elements in the array, and the matrix can have multiple columns.
- 06
Square matrix
A square matrix is a matrix where the number of rows equals the number of columns, such as a 2x2 or 3x3 matrix.
- 07
Identity matrix
An identity matrix is a square matrix with 1s on the main diagonal and 0s elsewhere, which acts as the multiplicative identity for matrices.
- 08
Zero matrix
A zero matrix is a matrix where all elements are zero, and it serves as the additive identity in matrix operations.
- 09
Matrix addition
Matrix addition is the operation of adding two matrices of the same order by adding their corresponding elements.
- 10
Matrix subtraction
Matrix subtraction is the operation of subtracting two matrices of the same order by subtracting their corresponding elements.
- 11
Scalar multiplication
Scalar multiplication involves multiplying each element of a matrix by a single number, called a scalar, to produce a new matrix.
- 12
Matrix multiplication
Matrix multiplication is the process of multiplying two matrices where the number of columns in the first equals the number of rows in the second, resulting in a new matrix.
- 13
Conditions for matrix addition
Two matrices can be added only if they have the same order, meaning the same number of rows and columns.
- 14
Conditions for matrix multiplication
Two matrices can be multiplied if the number of columns in the first matrix equals the number of rows in the second matrix.
- 15
Transpose of a matrix
The transpose of a matrix is obtained by swapping its rows and columns, so the element at position i,j in the original becomes i,j in the transpose.
- 16
Determinant of a matrix
The determinant is a scalar value computed from a square matrix that provides information about the matrix's invertibility and is used in solving systems of equations.
- 17
Determinant of a 2x2 matrix
For a 2x2 matrix with elements a, b, c, d, the determinant is calculated as (ad) - (bc).
- 18
Inverse of a matrix
The inverse of a square matrix is another matrix that, when multiplied by the original, results in the identity matrix, provided the original matrix is invertible.
- 19
Inverse of a 2x2 matrix
For a 2x2 matrix with elements a, b, c, d and non-zero determinant, the inverse is (1/determinant) times the matrix of elements d, -b, -c, a.
- 20
Augmented matrix
An augmented matrix is a matrix formed by appending a column of constants to the coefficient matrix of a system of linear equations, used for solving via row operations.
- 21
Row operations
Row operations are manipulations on the rows of a matrix, such as swapping rows, multiplying a row by a scalar, or adding a multiple of one row to another, used in Gaussian elimination.
- 22
Gaussian elimination
Gaussian elimination is a method to solve systems of linear equations by transforming the augmented matrix into row echelon form through row operations.
- 23
Row echelon form
Row echelon form is a matrix arrangement where all nonzero rows are above any rows of all zeros, and each leading entry is to the right of the leading entry above it.
- 24
Leading entry
A leading entry in a matrix row is the first nonzero element in that row, used as a pivot in row reduction processes.
- 25
Solving systems with matrices
Systems of linear equations can be solved using matrices by finding the inverse of the coefficient matrix and multiplying it by the constants vector.
- 26
Common error in matrix addition
A common error is attempting to add matrices of different orders, which is not defined and will lead to incorrect results.
- 27
Common error in matrix multiplication
A common error is multiplying matrices that are not conformable, meaning the number of columns in the first does not match the number of rows in the second.
- 28
Matrix as a representation
A matrix can represent a system of linear equations, where each row corresponds to an equation and each column to a variable.
- 29
Properties of matrix addition
Matrix addition is commutative and associative, meaning the order of addition does not affect the result.
- 30
Properties of matrix multiplication
Matrix multiplication is associative but not commutative, so the order of matrices matters in multiplication.
- 31
Diagonal matrix
A diagonal matrix is a square matrix where all elements outside the main diagonal are zero.
- 32
Trace of a matrix
The trace of a matrix is the sum of the elements on its main diagonal, though it's less commonly used on the ACT.
- 33
Upper triangular matrix
An upper triangular matrix is a square matrix where all elements below the main diagonal are zero.
- 34
Lower triangular matrix
A lower triangular matrix is a square matrix where all elements above the main diagonal are zero.
- 35
Example of a 2x2 matrix
A 2x2 matrix might look like [1 2; 3 4], representing a system with two equations and two variables.
For the matrix [1 2; 3 4], the element in row 1, column 2 is 2.
- 36
Example of matrix addition
Adding two 2x2 matrices involves adding corresponding elements, such as [1 2; 3 4] + [5 6; 7 8] = [6 8; 10 12].
Result: [6 8; 10 12]
- 37
Example of scalar multiplication
Multiplying a matrix by a scalar means multiplying each element by that number, like 2 times [1 2; 3 4] equals [2 4; 6 8].
Original: [1 2; 3 4], Result: [2 4; 6 8]
- 38
Example of matrix multiplication
Multiplying a 2x2 matrix by another 2x2 matrix involves dot products of rows and columns, such as [1 2; 3 4] times [5 6; 7 8] equals [19 22; 43 50].
First row, first column: 15 + 27 = 19
- 39
Example of transpose
The transpose of a matrix swaps rows and columns, so for [1 2; 3 4], the transpose is [1 3; 2 4].
Original: [1 2; 3 4], Transpose: [1 3; 2 4]
- 40
Example of determinant
For the 2x2 matrix [1 2; 3 4], the determinant is (14) - (23) = 4 - 6 = -2.
Matrix: [1 2; 3 4], Determinant: -2
- 41
Example of inverse
For the matrix [1 2; 3 4] with determinant -2, the inverse is (-1/2) times [-4 2; -3 1], resulting in [2 -1; 1.5 -0.5].
Inverse of [1 2; 3 4] is approximately [2 -1; 1.5 -0.5]
- 42
Non-invertible matrix
A matrix is non-invertible if its determinant is zero, meaning it does not have an inverse and represents a dependent or inconsistent system.
- 43
Commutative property in matrices
Matrix addition is commutative, but matrix multiplication is not, so A + B = B + A, but A B may not equal B A.
- 44
Distributive property in matrices
Matrix multiplication distributes over addition, so A(B + C) = AB + AC.
- 45
Identity for addition
The zero matrix is the additive identity, meaning adding it to any matrix leaves the matrix unchanged.
- 46
Identity for multiplication
The identity matrix is the multiplicative identity, meaning multiplying it by another matrix leaves that matrix unchanged.
- 47
Matrix equality
Two matrices are equal if they have the same order and their corresponding elements are identical.
- 48
Row matrix
A row matrix is a matrix with only one row, also known as a row vector.
- 49
Column matrix
A column matrix is a matrix with only one column, also known as a column vector.
- 50
Main diagonal
The main diagonal of a matrix consists of the elements where the row index equals the column index, from top left to bottom right.
- 51
Example of solving with inverse
To solve 2x + 3y = 5 and 4x + y = 6, represent as AX = B, find A inverse, and compute X = A inverse B.
For coefficients [2 3; 4 1], inverse times [5; 6] gives solution x=1, y=1.
- 52
Reduced row echelon form
Reduced row echelon form is a matrix where it is in row echelon form and each leading entry is 1 with zeros above and below it.
- 53
Inconsistent system
An inconsistent system of equations has no solution, which can be detected when row reduction leads to a row like [0 0 | 1].
- 54
Consistent system
A consistent system has at least one solution, indicated by no contradictory rows in the row-reduced matrix.
- 55
Dependent system
A dependent system has infinitely many solutions, occurring when rows in the row-reduced matrix are linearly dependent.
- 56
Pivot in a matrix
A pivot is the leading entry in a nonzero row of a matrix in row echelon form, used to eliminate entries below it.
- 57
Scaling a row
Scaling a row means multiplying all elements in that row by a nonzero scalar to simplify the matrix during row operations.
- 58
Adding multiples of rows
This row operation involves adding a multiple of one row to another to create zeros in desired positions.
- 59
Swapping rows
Swapping two rows in a matrix is a row operation used to position a pivot in the correct column.