Matrices: Definitions and Operations

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

If matrix $A$ is of order $m \times n$, what does $m$ represent?

  • The position of an element in the matrix
  • The number of rows in the matrix (correct)
  • The number of diagonals in the matrix
  • The number of columns in the matrix

Which of the following matrices is an identity matrix?

  • A square matrix with all entries equal to 0
  • A matrix with all entries equal to 1
  • A square matrix with 1s on the main diagonal and 0s elsewhere (correct)
  • A matrix with entries increasing sequentially from left to right

Under what condition is matrix addition defined for two matrices, A and B?

  • When A and B have the same order (correct)
  • When A and B have the same number of columns
  • When A and B have the same number of rows
  • When A and B are square matrices

Given a matrix $A$, what is the transpose of $A$, denoted as $A^T$?

<p>The matrix obtained by interchanging the rows and columns of A (C)</p> Signup and view all the answers

For matrices A and B, what condition must be met for the matrix product AB to be defined?

<p>The number of columns in A must equal the number of rows in B (A)</p> Signup and view all the answers

If A and B are matrices such that the product AB is defined, is it always true that AB = BA?

<p>No, AB is generally not equal to BA. (A)</p> Signup and view all the answers

What is a zero matrix?

<p>A matrix with all elements equal to zero (D)</p> Signup and view all the answers

If $A$ is a square matrix, what is the main diagonal (also known as the leading diagonal)?

<p>The set of elements where the row index is equal to the column index (B)</p> Signup and view all the answers

What condition must a matrix meet to be considered a square matrix?

<p>The number of rows must equal the number of columns. (B)</p> Signup and view all the answers

For a square matrix A, when is A considered symmetric?

<p>When A is equal to its transpose. (C)</p> Signup and view all the answers

If a square matrix A satisfies $A^T A = I$, where $I$ is the identity matrix, what type of matrix is A?

<p>Orthogonal (C)</p> Signup and view all the answers

What is a permutation of an ordered set of numbers?

<p>A rearrangement of those numbers (C)</p> Signup and view all the answers

What is the sign of a permutation that involves an odd number of consecutive switches?

<p>-1 (C)</p> Signup and view all the answers

What is the determinant of a 2 x 2 matrix $\begin{pmatrix} a & b \ c & d \end{pmatrix}$?

<p>$ad - bc$ (D)</p> Signup and view all the answers

What does it mean for a matrix to be invertible?

<p>The matrix, when multiplied by another matrix, results in the identity matrix (B)</p> Signup and view all the answers

If a matrix A is invertible, what is the result of $AA^{-1}$?

<p>The identity matrix (D)</p> Signup and view all the answers

If a matrix does not have an inverse, what is it called?

<p>Singular (A)</p> Signup and view all the answers

Which of the following statements is true about the determinant of a matrix and its inverse, assuming the matrix is invertible?

<p>The determinant of the inverse is the reciprocal of the determinant of the matrix. (D)</p> Signup and view all the answers

What is a geometrical transformation?

<p>A way of changing points in space (B)</p> Signup and view all the answers

What is a linear transformation in the plane?

<p>A function that sends a point P(x, y) to a point Q(ax + by, cx + dy) (D)</p> Signup and view all the answers

What is a transformation matrix?

<p>A matrix that describes a linear transformation (D)</p> Signup and view all the answers

What are the points called whose coordinates stay the same after a transformation?

<p>Invariant points (B)</p> Signup and view all the answers

Which matrix represents a reflection in the x-axis?

<p>$\begin{pmatrix} 1 &amp; 0 \ 0 &amp; -1 \end{pmatrix}$ (A)</p> Signup and view all the answers

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

<p>$\begin{pmatrix} 0 &amp; 1 \ 1 &amp; 0 \end{pmatrix}$ (D)</p> Signup and view all the answers

What type of transformation is represented by the matrix $\begin{pmatrix} k & 0 \ 0 & k \end{pmatrix}$, where k is a non-zero real number?

<p>Dilation (scaling) (C)</p> Signup and view all the answers

If $k > 1$ in a dilation transformation represented by the matrix $\begin{pmatrix} k & 0 \ 0 & k \end{pmatrix}$, what type of transformation is it?

<p>Enlargement (A)</p> Signup and view all the answers

Given two transformation matrices $T_1$ and $T_2$, applying $T_1$ followed by $T_2$ to a point $P$ is equivalent to which matrix multiplication?

<p>$T_2 T_1 P$ (D)</p> Signup and view all the answers

To find the image of a curve under a transformation, what is the general strategy?

<p>Find the inverse transformation, apply it to the coordinates of a general point (x', y'), and substitute the resulting expressions for x and y into the equation of the curve. (B)</p> Signup and view all the answers

Flashcards

What is a matrix?

A rectangular array of numbers, called entries or elements, arranged in rows and columns, enclosed in parentheses.

What indicates the order of a matrix?

Represented as m × n, where m is the number of rows and n is the number of columns.

What is the main diagonal of a matrix?

The set of entries aᵢⱼ where i = j, running from the top-left to the bottom-right of the matrix.

What is a row matrix?

A matrix with only one row; its order is 1 × n.

Signup and view all the flashcards

What is a column matrix?

A matrix with only one column; its order is m × 1.

Signup and view all the flashcards

What is a square matrix?

A matrix with the same number of rows and columns; its order is m × m.

Signup and view all the flashcards

What is an identity matrix?

An m × m matrix with 1s on the main diagonal and 0s everywhere else.

Signup and view all the flashcards

What is the zero matrix?

An m × n matrix with all entries equal to 0.

Signup and view all the flashcards

How do you obtain the matrix sum?

Adding corresponding entries of two matrices.

Signup and view all the flashcards

How do you obtain the matrix difference?

Subtracting corresponding entries of two matrices.

Signup and view all the flashcards

What is scalar multiplication?

Multiplying each entry of a matrix A by a scalar k.

Signup and view all the flashcards

How is the matrix product calculated?

Splitting first matrix into rows and the second into columns, then doing scalar product of row i with column j to find the ith jth entry

Signup and view all the flashcards

In matrix multiplication AB, which is pre/post multiplied?

B is pre-multiplied by A, and A is post-multiplied by B.

Signup and view all the flashcards

What is the transpose of a matrix?

Denoted by Aᵀ, is an n × m matrix formed by interchanging the rows and columns of A.

Signup and view all the flashcards

What is the nth power of a square matrix A?

Aⁿ = A × A × A... × A (n times)

Signup and view all the flashcards

What is a symmetric matrix?

A matrix A such that Aᵀ = A

Signup and view all the flashcards

What is a skew-symmetric matrix?

A matrix A such that Aᵀ = -A.

Signup and view all the flashcards

What is an orthogonal matrix?

A square matrix A such that AᵀA = Iₙ.

Signup and view all the flashcards

What is the solution to the 1 × 1 system?

ax = b, where x = b/a assuming a ≠ 0.

Signup and view all the flashcards

What is the solution to the 2 × 2 system?

x = (de - bf) / (ad - bc), y = (af - ce) / (ad - bc), assuming ad - bc ≠ 0.

Signup and view all the flashcards

What is a permutation?

A rearrangement of those numbers.

Signup and view all the flashcards

What is an even permutation?

One where the rearrangement involves an even number of consecutive switches starting from the original numbers.

Signup and view all the flashcards

What is an odd permutation?

One where the rearrangement involves an odd number of consecutive switches starting from the original numbers.

Signup and view all the flashcards

What is the sign of a permutation?

+1 for an even permutation and -1 for an odd permutation.

Signup and view all the flashcards

What is the Leibniz formula for the determinant?

det(A) = Σ (sign σ) ∏ aᵢ,σ(ᵢ)

Signup and view all the flashcards

What is the minor of entry aᵢⱼ?

The determinant of the (n-1) × (n-1) matrix formed from A by deleting the ith row and jth column of A.

Signup and view all the flashcards

What is the cofactor of entry aᵢⱼ?

The quantity Cᵢⱼ = (-1)ⁱ⁺ʲ Mᵢⱼ.

Signup and view all the flashcards

What is the Laplace expansion formula?

det(A) = Σ aᵢⱼ Cᵢⱼ

Signup and view all the flashcards

What is the determinant of a 1 × 1 matrix A = (a)?

det(A) = a

Signup and view all the flashcards

What is the determinant of a 2 x 2 matrix

det(A) = ad - bc

Signup and view all the flashcards

What is (AB)⁻¹?

B⁻¹A⁻¹

Signup and view all the flashcards

When Does An n x n matrix A have an inverse?

If there is a matrix (denoted A⁻¹) such that AA⁻¹ = A⁻¹A = Iₙ.

Signup and view all the flashcards

What is the adjugate of a square matrix A?

adj(A) = Cᵀ

Signup and view all the flashcards

What is a geometrical transformation?

A process of changing points in space.

Signup and view all the flashcards

What is a linear transformation in the plane?

A function that sends a point P(x, y) to a point Q(ax + by, cx + dy), where a, b, c, d ∈ R.

Signup and view all the flashcards

Study Notes

Matrices Overview

  • Matrices involve adding, subtracting, multiplying, and dividing numbers.
  • Prerequisites include elementary row operations.
  • They are used in solving systems of equations and describing geometric transformations.
  • Used to derive addition formulae and for balancing chemical equations.
  • They help analyze flight stopover data and model electrical circuits.
  • Utilized for formulating fundamental physical laws.

Basic Matrix Definitions

  • Matrices are rectangular arrays of numbers called entries or elements.
  • Entries are organized in rows and columns within parentheses.
  • Matrix order is defined as $m \times n$, where $m$ is the number of rows and $n$ is the number of columns.
  • $A = (a_{ij}){m \times n}$ represents a matrix where $a{ij}$ is the element in the $i$-th row and $j$-th column.
  • $a_{ij}$ denotes the element in row $i$ and column $j$, referred to as the $(i, j)^{th}$ entry of matrix A.
  • Course primarily focuses on $2 \times 2$ and $3 \times 3$ matrices.

Special Matrix Types

  • The main diagonal consists of entries $a_{ij}$ where $i = j$.
  • Special cases arise when $m = 1$ (row matrix) or $n = 1$ (column matrix).
  • A row matrix is a $1 \times n$ matrix written as $(a_{11} \ a_{12} \ ... \ a_{1(n-1)} \ a_{1n})$.
  • A column matrix is an $m \times 1$ matrix.
  • A column matrix is written as $\begin{pmatrix} a_{11} \ a_{21} \ \vdots \ a_{(m-1)1} \ a_{m1} \end{pmatrix}$.
  • Square matrices ($m = n$) have equal rows and columns.
  • A square matrix is written as
    $\begin{pmatrix} a_{11} & a_{12} & \dots & a_{1m} \ a_{21} & a_{22} & \dots & a_{2m} \ \vdots & \vdots & \ddots & \vdots \ a_{m1} & a_{m2} & \dots & a_{mm} \end{pmatrix}$.
  • Identity matrices ($I_m$) are $m \times m$ matrices with 1s on the main diagonal and 0s elsewhere.
  • An identity matrix can be written as $\begin{pmatrix} 1 & 0 & \dots & 0 \ 0 & 1 & \dots & 0 \ \vdots & \vdots & \ddots & \vdots \ 0 & 0 & & 1 \end{pmatrix}$.
  • Zero matrices ($O_{m \times n}$) are $m \times n$ matrices with all entries equal to 0.
  • A zero matrix can be written as $\begin{pmatrix} 0 & 0 & 0 & \dots & 0 \ 0 & 0 & 0 & \dots & 0 \ 0 & 0 & 0 & \dots & 0 \ \vdots & \vdots & \vdots & \ddots & \vdots \ 0 & 0 & 0 & & 0 \end{pmatrix}$.
  • $O_m$ denotes a square zero matrix.

Matrix Algebra: Addition, Subtraction, and Scalar Multiplication

  • Matrix sum of A and B involves adding corresponding entries: $(a + b){ij} = a{ij} + b_{ij}$.
  • Matrix difference involves subtracting corresponding entries: $(a - b){ij} = a{ij} - b_{ij}$.
  • Matrix addition and subtraction are only possible if A and B have the same order.
  • Scalar multiplication of A by k multiplies each entry of A by k: $(ka){ij} = ka{ij}$, where $k \in \mathbb{R}$.

Matrix Multiplication Definition

  • The matrix product of $A$ and $B$, where $A$ is of order $m \times n$ and $B$ is of order $n \times p$, is obtained as $(ab){ij} = \sum{k=1}^{n} a_{ik}b_{kj}$.
  • The number of columns in A must equal the number of rows in B.
  • To compute the matrix product AB, split A into rows and B into columns
  • The $(i, j)^{th}$ entry of AB, obtained from the 'scalar product' of the $i^{th}$ row of A with the $j^{th}$ column of B.
  • In general, $AB \ne BA$
  • In the context of forming $AB$, matrix $B$ is pre-multiplied by matrix $A$, while $A$ is post-multiplied by $B$

Matrix Transpose

  • The transpose of $A$ (order $m \times n$), denoted as $A^T$, is an $n \times m$ matrix formed by interchanging rows and columns of $A$.
  • $(a^T){ij} = a{ji}$

Matrix Power

  • A square matrix $A$ can be multiplied by itself any number of times.
  • $A^n = \underbrace{A \times A \times A \times \dots \times A}_{n \text{ times}}$

Basic Matrix Properties

  • Commutative Property of Addition: $A + B = B + A$
  • Associative Property of Addition: $(A + B) + C = A + (B + C)$
  • Distributive Properties: $k(A + B) = kA + kB$
  • Transpose of a sum: $(A + B)^T = A^T + B^T$
  • Transpose of a transpose: $(A^T)^T = A$
  • Transpose of a scalar multiple: $(kA)^T = kA^T$
  • Associative Property of Multiplication: $A(BC) = (AB)C$
  • Distributive Property: $A(B + C) = AB + AC$
  • Transpose of a product: $(AB)^T = B^T A^T$
  • Product of exponential matrices: $A^m A^n = A^{m+n} = A^n A^m$
  • Additive Identity Property: $A + O = O + A = A$
  • Multiplicative Identity Property: $AI = IA = A$
  • Multiplication by Zero Matrix: $AO = AO = O$
  • Identity and zero matrices behave like the numbers 1 and 0 in ordinary arithmetic and algebra.

Special Types of Matrices: Symmetric

  • A matrix $A$ is symmetric if $A^T = A$
  • Symmetric matrices must be square.

Special Types of Matrices: Skew-Symmetric

  • A matrix $A$ is skew-symmetric (aka anti-symmetric) if $A^T = -A$
  • Skew-symmetric matrices must be square with all diagonal entries equal to 0.
  • The sum of 2 skew-symmetric matrices is skew-symmetric.
  • Proof: If $A$ and $B$ are skew-symmetric, $(A+B)^T = A^T + B^T = -A - B = -(A+B)$

Orthogonal Matrices

  • A square matrix $A$ (of order $n \times n$) is orthogonal if $A^T A = I_n$, where $I_n$ is the identity matrix of order $n$.

Determinants

  • For a $1 \times 1$ system $ax = b$, the solution is $x = \frac{b}{a}$, assuming $a \ne 0$.
  • For a $2 \times 2$ system $\begin{cases} ax + by = e \ cx + dy = f \end{cases}$, the solutions are $x = \frac{de - bf}{ad - bc}$ and $y = \frac{af - ce}{ad - bc}$, assuming $ad - bc \ne 0$.
  • For a $3 \times 3$ system: $\begin{cases} ax + by + cz = j\ dx + ey + fz = k \ gx + hy + iz = l \end{cases}$, the solutions are $x = \frac{j(ei-fh) - k(bi - ch) + l(bf - ce)}{a(ei - fh) - b(di - fg) + c(dh - eg)}$, $y = \frac{j(fg-di) - k(cg - ai) + l(cd - af)}{a(ei - fh) - b(di - fg) + c(dh - eg)}$, $z = \frac{j(dh - ge) - k(ah - bg) + l(ae - bd)}{a(ei - fh) - b(di - fg) + c(dh - eg)}$ assuming $a(ei - fh) - b(di - fg) + c(dh - eg) \ne 0$.
  • A permutation, denoted by $\sigma$, of an ordered set of numbers ($1, 2, 3, \dots, n$) is a rearrangement of those numbers.
  • An even permutation involves an even number of consecutive switches.
  • An odd permutation involves an odd number of consecutive switches.
  • The sign of a permutation $\sigma$ ($sign \ \sigma$) is defined to be +1 for an even permutation and -1 for an odd permutation.
  • The determinant of an $n \times n$ matrix is given by the Leibniz formula.
  • $det(A) = |A| = \mathop{\sum}\limits_{\sigma} (sign \ \sigma) \prod_{i=1}^n a_{i,\sigma(i)}$
  • The minor of entry $a_{ij}$, denoted as $M_{ij}$, is the determinant of the $(n-1) \times (n-1)$ matrix formed by deleting the $i^{th}$ row and $j^{th}$ column of $A$
  • The cofactor of entry $a_{ij}$ is the quantity $C_{ij} = (-1)^{i+j} M_{ij}$
  • These formulas can be written using cofactors via the Laplace expansion theorem.
  • The determinant of an $n \times n$ matrix is given by the Laplace expansion formula
  • $det(A) = \sum_{j=1}^{n} a_{ij} C_{ij}$ for $(i = 1, 2, 3, \dots, n)$

Determinant Theorems

  • The determinant of a $1 \times 1$ matrix $A \equiv (a)$ is $|A| = a$
  • The determinant of a $2 \times 2$ matrix $A = \begin{pmatrix} a & b \ c & d \end{pmatrix}$ is $|A| = ad - bc$
  • The determinant of a $3 \times 3$ matrix $A = \begin{pmatrix} a & b & c \ d & e & f \ g & h & i \end{pmatrix}$ is $|A| = a \begin{pmatrix} e & f \ h & i \end{pmatrix} - b \begin{pmatrix} d & f \ g & i \end{pmatrix} + c \begin{pmatrix} d & e \ g & h \end{pmatrix}$

Determinant Properties

  • If $A$ and $B$ are $n \times n$ matrices and $k \in \mathbb{R}$:
    • $det(AB) = det(A)det(B)$
    • $det(kA) = k^n det(A)$
    • $det(A^T) = det(A)$

Inverse of a Matrix

  • An $n \times n$ matrix $A$ has an inverse if there exists a matrix $A^{-1}$ such that $AA^{-1} = A^{-1}A = I_n$.
  • If $A$ has an inverse, $A$ is invertible (non-singular).
  • If $A$ does not have an inverse, $A$ is non-invertible (singular).
  • A matrix has only one inverse.
  • The cofactor matrix of a square matrix A is the matrix $C$ such that its $(i,j)^{th}$ entry is $C_{ij}$
  • The adjugate (aka classical adjoint) of a square matrix $A$ is given by $adj(A) = C^T$
  • The inverse of a matrix A is $A^{-1} = \frac{adj(A)}{det(A)}$
  • A matrix is invertible if and only if $det(A) \ne 0$

Properties of Inverse Matrices

  • $(AB)^{-1} = B^{-1}A^{-1}$
  • $(A^{-1})^T = (A^T)^{-1}$
  • $det(A^{-1}) = \frac{1}{det(A)}$
  • $(kA)^{-1} = \frac{1}{k}A^{-1}$

Transformation Matrices

  • A geometrical transformation changes points in space.
  • This course focuses on transformations in the xy-plane.
  • A linear transformation in the plane maps a point P(x, y) to Q(ax + by, cx + dy) where (a, b, c, d ∈ ℝ).
  • Matrix Representation: $\begin{pmatrix} x' \ y' \end{pmatrix} = \begin{pmatrix} a & b \ c & d \end{pmatrix} \begin{pmatrix} x \ y \end{pmatrix}$ is a transformation matrix.
  • The matrix $\begin{pmatrix} a & b \ c & d \end{pmatrix}$ is called the transformation matrix.

Standard Transformations

  • Reflection in the x-axis: $\begin{pmatrix} 1 & 0 \ 0 & -1 \end{pmatrix}$
  • Reflection in the y-axis: $\begin{pmatrix} -1 & 0 \ 0 & 1 \end{pmatrix}$
  • Reflection in the line $y = x$: $\begin{pmatrix} 0 & 1 \ 1 & 0 \end{pmatrix}$
  • Anticlockwise rotation about the origin by angle θ: $\begin{pmatrix} cos \ \theta & -sin \ \theta \ sin \ \theta & cos \ \theta \end{pmatrix}$
  • Dilatation (scaling) with factor k: $\begin{pmatrix} k & 0 \ 0 & k \end{pmatrix}$, where $k \in \mathbb{R}$
  • If $k > 1$ the dilatation is an enlargement. If $k < 1$ then the dilatation is a reduction. If $k<0$, then the dilatation inverts

Combining Transformations

  • Transformation matrices are usually combined to yield the resultant transformation.

Invariant Points

  • An invariant point is a point whose coordinates stay the same after a transformation: $T\bold{x} = \bold{x}$

General equations

  • If an $n \times n$ system of equations $A \bold{x} = \bold{b}$, then $\bold{x} = A^{-1} \bold{b}$
  • A system of n equations in n unknowns has a solution if $det A \ne0 $

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Elementary Matrices in Linear Algebra
6 questions
Linear Algebra: 2.3 Invertible Matrices
15 questions
Mátrices na Álgebra Linear
19 questions

Mátrices na Álgebra Linear

HandsomeDidactic1649 avatar
HandsomeDidactic1649
Matrices: Linear Algebra
10 questions
Use Quizgecko on...
Browser
Browser