Skip to main content
Mathematics LibreTexts

2.1: Introduction to Matrices

  • Page ID
    37846
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Learning Objectives

    In this section, you will learn to:

    1. Add and subtract matrices.
    2. Multiply a matrix by a scalar.
    3. Multiply two matrices.

    A matrix is a 2 dimensional array of numbers arranged in rows and columns. Matrices provide a method of organizing, storing, and working with mathematical information. Matrices have an abundance of applications and use in the real world. Matrices provide a useful tool for working with models based on systems of linear equations. We’ll use matrices in sections 2.2, 2.3, and 2.4 to solve systems of linear equations with several variables in this chapter.

    Matrices are used in encryption, which we will explore in section 2.5 and in economic modelling, explored in section 2.6. We use matrices again in chapter 4, in optimization problems such as maximizing profit or revenue, or minimizing cost. Matrices are used in business for scheduling, routing transportation and shipments, and managing inventory.

    Just about any application that collects and manages data can apply matrices. Use of matrices has grown as the availability of data in many areas of life and business has increased. They are important tools for organizing data and solving problems in all fields of science, from physics and chemistry, to biology and genetics, to meteorology, and economics. In computer science, matrix mathematics lies behind animation of images in movies and video games.

    Computer science analyzes diagrams of networks to understand how things are connected to each other, such as relationships between people on a social website, and relationships between results in line search and how people link from one website to another. The mathematics to work with network diagrams comprise the field of “graph theory”; it relies on matrices to organize the information in the graphs that diagram connections and associations in a network. For example, if you use Facebook or Linked-In, or other social media sites, these sites use network graphs and matrices to organize your relationships with other users.

    Introduction to Matrices

    A matrix is a rectangular array of numbers. Matrices are useful in organizing and manipulating large amounts of data. In order to get some idea of what matrices are all about, we will look at the following example.

    Example \(\PageIndex{1}\)

    Fine Furniture Company makes chairs and tables at its San Jose, Hayward, and Oakland factories. The total production, in hundreds, from the three factories for the years 2014 and 2015 is listed in the table below.

    2014 2015
    CHAIRS TABLES CHAIRS TABLES
    SAN JOSE 30 18 36 20
    HAYWARD 20 12 24 18
    OAKLAND 16 10 20 12
    1. Represent the production for the years 2014 and 2015 as the matrices A and B.
    2. Find the difference in sales between the years 2014 and 2015.
    3. The company predicts that in the year 2020 the production at these factories will be double that of the year 2014. What will the production be for the year 2020?

    Solution

    a) The matrices are as follows:

    \[A=\left[\begin{array}{ll}
    30 & 18 \\
    20 & 12 \\
    16 & 10
    \end{array}\right] \nonumber \]

    \[\mathrm{B}=\left[\begin{array}{ll}
    36 & 20 \\
    24 & 18 \\
    20 & 12
    \end{array}\right] \nonumber \]

    b) We are looking for the matrix \(B - A\). When two matrices have the same number of rows and columns, the matrices can be added or subtracted entry by entry. Therefore, we get

    \[\mathrm{B}-\mathrm{A}=\left[\begin{array}{ll}
    36-30 & 20-18 \\
    24-20 & 18-12 \\
    20-16 & 12-10
    \end{array}\right]=\left[\begin{array}{ll}
    6 & 2 \\
    4 & 6 \\
    4 & 2
    \end{array}\right] \nonumber \]

    c) We would like a matrix that is twice the matrix of 2014, i.e., \(2A\).

    Whenever a matrix is multiplied by a number, each entry is multiplied by the number.

    \[2 \mathrm{A}=2\left[\begin{array}{ll}
    30 & 18 \\
    20 & 12 \\
    16 & 10
    \end{array}\right]=\left[\begin{array}{ll}
    60 & 36 \\
    40 & 24 \\
    32 & 20
    \end{array}\right] \nonumber \]

    Before we go any further, we need to familiarize ourselves with some terms that are associated with matrices. The numbers in a matrix are called the entries or the elements of a matrix.

    Whenever we talk about a matrix, we need to know the size or the dimension of the matrix. The dimension of a matrix is the number of rows and columns it has. When we say a matrix is a “3 by 4 matrix”, we are saying that it has 3 rows and 4 columns. The rows are always mentioned first and the columns second. This means that a \(3 \times 4\) matrix does not have the same dimension as a \(4 \times 3\) matrix.

    \[A=\left[\begin{array}{cccc}
    1 & 4 & -2 & 0 \\
    3 & -1 & 7 & 9 \\
    6 & 2 & 0 & 5
    \end{array}\right] \nonumber \]

    \[B=\left[\begin{array}{ccc}
    2 & 9 & 8 \\
    -3 & 0 & 1 \\
    6 & 5 & -2 \\
    -4 & 7 & 8
    \end{array}\right] \nonumber \]

    Matrix \(A\) has dimensions \(3 \times 4\) and matrix \(B\) has dimensions \(4 \times 3\).

    A matrix that has the same number of rows as columns is called a square matrix. A matrix with all entries zero is called a zero matrix. A square matrix with 1's along the main diagonal and zeros everywhere else, is called an identity matrix. When a square matrix is multiplied by an identity matrix of same size, the matrix remains the same.

    \[I=\left[\begin{array}{lll}
    1 & 0 & 0 \\
    0 & 1 & 0 \\
    0 & 0 & 1
    \end{array}\right] \nonumber \]

    Matrix \(I\) is a \(3 \times 3\) identity matrix

    A matrix with only one row is called a row matrix or a row vector, and a matrix with only one column is called a column matrix or a column vector. Two matrices are equal if they have the same size and the corresponding entries are equal.

    We can perform arithmetic operations with matrices. Next we will define and give examples illustrating the operations of matrix addition and subtraction, scalar multiplication, and matrix multiplication. Note that matrix multiplication is quite different from what you would intuitively expect, so pay careful attention to the explanation. Note also that the ability to perform matrix operations depends on the matrices involved being compatible in size, or dimensions, for that operation. The definition of compatible dimensions is different for different operations, so note the requirements carefully for each.

    Matrix Addition and Subtraction

    If two matrices have the same size, they can be added or subtracted. The operations are performed on corresponding entries.

    Example \(\PageIndex{2}\)

    Given the matrices \(A\), \(B\), \(C\) and \(D\), below

    \[A=\left[\begin{array}{lll}
    1 & 2 & 4 \\
    2 & 3 & 1 \\
    5 & 0 & 3
    \end{array}\right] \quad B=\left[\begin{array}{lll}
    2 & -1 & 3 \\
    2 & 4 & 2 \\
    3 & 6 & 1
    \end{array}\right] \quad C=\left[\begin{array}{l}
    4 \\
    2 \\
    3
    \end{array}\right] \quad D=\left[\begin{array}{r}
    -2 \\
    -3 \\
    4
    \end{array}\right] \nonumber \]

    Find, if possible.

    1. \(A + B\)
    2. \(C - D\)
    3. \(A + D.\)

    Solution

    As we mentioned earlier, matrix addition and subtraction involves performing these operations entry by entry.

    a) We add each element of \(A\) to the corresponding entry of \(B\).

    \[A+B=\left[\begin{array}{lll}
    3 & 1 & 7 \\
    4 & 7 & 3 \\
    8 & 6 & 4
    \end{array}\right] \nonumber \]

    b) Just like the problem above, we perform the subtraction entry by entry.

    \[\mathrm{C}-\mathrm{D}=\left[\begin{array}{c}
    6 \\
    5 \\
    -1
    \end{array}\right] \nonumber \]

    c) The sum \(A + D\) cannot be found because the two matrices have different sizes.

    Note: Two matrices can only be added or subtracted if they have the same dimension.

    Multiplying a Matrix by a Scalar

    If a matrix is multiplied by a scalar, each entry is multiplied by that scalar. We can consider scalar multiplication as multiplying a number and a matrix to obtain a new matrix as the product.

    Example \(\PageIndex{3}\)

    Given the matrix \(A\) and \(C\) in the example above, find \(2A\) and \(- 3C\).

    Solution

    To find \(2A\), we multiply each entry of matrix \(A\) by 2, and to find \(-3C\), we multiply each entry of C by -3. The results are given below.

    a) We multiply each entry of A by 2.

    \[2 \mathrm{A}=\left[\begin{array}{ccc}
    2 & 4 & 8 \\
    4 & 6 & 2 \\
    10 & 0 & 6
    \end{array}\right] \nonumber \]

    b) We multiply each entry of C by -3.

    \[-3 C=\left[\begin{array}{c}
    -12 \\
    -6 \\
    -9
    \end{array}\right] \nonumber \]

    Multiplication of Two Matrices

    To multiply a matrix by another is not as easy as the addition, subtraction, or scalar multiplication of matrices. Because of its wide use in application problems, it is important that we learn it well. Therefore, we will try to learn the process in a step by step manner. We first begin by finding a product of a row matrix and a column matrix.

    Example \(\PageIndex{4}\)

    Find the product \(AB\), given

    \[A=\left[\begin{array}{lll}
    2 & 3 & 4
    \end{array}\right] \nonumber \]

    and

    \[B=\left[\begin{array}{l}
    a \\
    b \\
    c
    \end{array}\right]. \nonumber \]

    Solution

    The product is a \(1 \times 1\) matrix whose entry is obtained by multiplying the corresponding entries and then forming the sum.

    \[\begin{align*}
    \mathrm{AB} &=\left[\begin{array}{lll}
    2 & 3 & 4
    \end{array}\right]\left[\begin{array}{l}
    \mathrm{a} \\
    \mathrm{b} \\
    \mathrm{c}
    \end{array}\right] \\[4pt] &=[2 (\mathrm{a}+3 \mathrm{b}+4 \mathrm{c})]
    \end{align*} \nonumber \]

    Note that \(AB\) is a \(1 \times 1\) matrix, and its only entry is \(2a + 3b + 4c\).

    Example \(\PageIndex{5}\)

    Find the product \(AB\), given

    \[A=\left[\begin{array}{lll}
    2 & 3 & 4
    \end{array}\right] \nonumber \]

    and

    \[B=\left[\begin{array}{l}
    5 \\
    6 \\
    7
    \end{array}\right] \nonumber \]

    Solution

    Again, we multiply the corresponding entries and add.

    \[\begin{align*} \mathrm{AB} &=\left[\begin{array}{lll}
    2 & 3 & 4
    \end{array}\right]\left[\begin{array}{l}
    5 \\
    6 \\
    7
    \end{array}\right] \\[4pt] &=[2 \cdot 5+3 \cdot 6+4 \cdot 7]\\[4pt] &=[10+18+28]\\[4pt] &=[56] \end{align*} \nonumber \]

    Note: In order for a product of a row matrix and a column matrix to exist, the number of entries in the row matrix must be the same as the number of entries in the column matrix.

    Example \(\PageIndex{6}\)

    Find the product AB, given

    \[A=\left[\begin{array}{lll}
    2 & 3 & 4
    \end{array}\right] \nonumber \]

    and

    \[B=\left[\begin{array}{ll}
    5 & 3 \\
    6 & 4 \\
    7 & 5
    \end{array}\right]. \nonumber \]

    Solution

    We know how to multiply a row matrix by a column matrix. To find the product \(AB\), in this example, we will multiply the row matrix \(A\) to both the first and second columns of matrix \(B\), resulting in a \(1 \times 2\) matrix.

    \[\mathrm{AB}=\left[\begin{array}{lll}
    2 \cdot 5+3 \cdot 6+4 \cdot 7 & 2 \cdot 3+3 \cdot 4+4 \cdot 5
    \end{array}\right]=\left[\begin{array}{ll}
    56 & 38
    \end{array}\right] \nonumber \]

    We multiplied a \(1 \times 3\) matrix by a matrix whose size is \(3 \times 2\). So unlike addition and subtraction, it is possible to multiply two matrices with different dimensions, if the number of entries in the rows of the first matrix is the same as the number of entries in the columns of the second matrix.

    Example \(\PageIndex{7}\)

    Find the product \(AB\), given:

    \[A=\left[\begin{array}{lll}
    2 & 3 & 4 \\
    1 & 2 & 3
    \end{array}\right] \nonumber \]

    and

    \[\mathrm{B}=\left[\begin{array}{ll}
    5 & 3 \\
    6 & 4 \\
    7 & 5
    \end{array}\right] \nonumber \]

    Solution

    This time we are multiplying two rows of the matrix \(A\) with two columns of the matrix \(B\). Since the number of entries in each row of \(A\) is the same as the number of entries in each column of \(B\), the product is possible. We do exactly what we did in the last example. The only difference is that the matrix \(A\) has one more row.

    We multiply the first row of the matrix \(A\) with the two columns of \(B\), one at a time, and then repeat the process with the second row of A. We get

    \[\mathrm{AB}=\left[\begin{array}{lll}
    2 & 3 & 4 \\
    1 & 2 & 3
    \end{array}\right]\left[\begin{array}{ll}
    5 & 3 \\
    6 & 4 \\
    7 & 5
    \end{array}\right]=\left[\begin{array}{ll}
    2 \cdot 5+3 \cdot 6+4 \cdot 7 & 2 \cdot 3+3 \cdot 4+4 \cdot 5 \\
    1 \cdot 5+2 \cdot 6+3 \cdot 7 & 1 \cdot 3+2 \cdot 4+3 \cdot 5
    \end{array}\right] \nonumber \]

    \[\mathrm{AB}=\left[\begin{array}{ll}
    56 & 38 \\
    38 & 26
    \end{array}\right] \nonumber \]

    Example \(\PageIndex{8}\)

    Find, if possible:

    1. \(EF\)
    2. \(FE\)
    3. \(FH\)
    4. \(GH\)
    5. \(HG\)

    \[\mathrm{E}=\left[\begin{array}{ll}
    1 & 2 \\
    4 & 2 \\
    3 & 1
    \end{array}\right] \quad \mathrm{F}=\left[\begin{array}{ll}
    2 & -1 \\
    3 & 2
    \end{array}\right] \quad \mathrm{G}=\left[\begin{array}{lll}
    4 & 1
    \end{array}\right] \quad \mathrm{H}=\left[\begin{array}{l}
    -3 \\
    -1
    \end{array}\right] \nonumber \]

    Solution

    a) To find \(EF\), we multiply the first row \(\left[\begin{array}{ll}
    1 & 2
    \end{array}\right]\)

    of E with the columns \(\left[\begin{array}{l}
    2 \\
    3
    \end{array}\right] \text { and }\left[\begin{array}{l}
    1 \\
    -2
    \end{array}\right]\) of the matrix F, and then repeat the process by multiplying the other two rows of E with these columns of F. The result is as follows:

    \[\mathrm{EF}=\left[\begin{array}{ll}
    1 & 2 \\
    4 & 2 \\
    3 & 1
    \end{array}\right]\left[\begin{array}{cc}
    2 & -1 \\
    3 & 2
    \end{array}\right]=\left[\begin{array}{cc}
    1 \cdot 2+2 \cdot 3 & 1 \cdot-1+2 \cdot 2 \\
    4 \cdot 2+2 \cdot 3 & 4 \cdot-1+2 \cdot 2 \\
    3 \cdot 2+1 \cdot 3 & 3 \cdot-1+1 \cdot 2
    \end{array}\right]=\left[\begin{array}{cc}
    8 & 3 \\
    14 & 0 \\
    9 & -1
    \end{array}\right] \nonumber \]

    b) Product \(FE\) is not possible because the matrix F has two entries in each row, while the matrix E has three entries in each column. In other words, the matrix F has two columns, while the matrix E has three rows.

    c) \[\mathrm{FH}=\left[\begin{array}{cc}
    2 & -1 \\
    3 & 2
    \end{array}\right]\left[\begin{array}{c}
    -3 \\
    -1
    \end{array}\right]=\left[\begin{array}{c}
    2 \cdot-3+-1 \cdot-1 \\
    3 \cdot-3+2 \cdot-1
    \end{array}\right]=\left[\begin{array}{c}
    -5 \\
    -11
    \end{array}\right] \nonumber \]

    d) \[\mathrm{GH}=\left[\begin{array}{ll}
    4 & 1
    \end{array}\right]\left[\begin{array}{l}
    -3 \\
    -1
    \end{array}\right]=\left[\begin{array}{l}
    4 \cdot-3+1 \cdot-1 \\
    -1
    \end{array}\right]=[-13] \nonumber \]

    e) \[\mathrm{HG}=\left[\begin{array}{l}
    -3 \\
    -1
    \end{array}\right]\left[\begin{array}{ll}
    4 & 1
    \end{array}\right]=\left[\begin{array}{ll}
    -3 \cdot 4 & -3 \cdot 1 \\
    -1 \cdot 4 & -1 \cdot 1
    \end{array}\right]=\left[\begin{array}{cc}
    -12 & -3 \\
    -4 & -1
    \end{array}\right] \nonumber \]

    We summarize some important properties of matrix multiplication that we observed in the previous examples.

    In order for product \(\bf{AB}\) to exist:

    • the number of columns of \(\bf{A}\) must equal the number of rows of \(\bf{B}\)
    • if matrix \(\bf{A}\) has dimension \(\bf{m \times n}\) and matrix \(\bf{B}\) has dimension \(\bf{n \times p}\), then the product \(\bf{AB}\) will be a matrix with dimension \(\bf{m \times p}\).

    Matrix multiplication is not commutative: if both matrix products \(\bf{AB}\) and \(\bf{BA}\) exist, most of the time \(\bf{AB}\) will not equal \(\bf{BA}\).

    Example \(\PageIndex{9}\)

    Given matrices \(R\), \(S\), and \(T\) below, find \(2RS - 3ST\).

    \[R=\left[\begin{array}{lll}
    1 & 0 & 2 \\
    2 & 1 & 5 \\
    2 & 3 & 1
    \end{array}\right] \quad S=\left[\begin{array}{lll}
    0 & -1 & 2 \\
    3 & 1 & 0 \\
    4 & 2 & 1
    \end{array}\right] \quad T=\left[\begin{array}{lll}
    -2 & 3 & 0 \\
    -3 & 2 & 2 \\
    -1 & 1 & 0
    \end{array}\right] \nonumber \]

    Solution

    We multiply the matrices R and S.

    \begin{aligned}
    &\mathrm{RS}=\left[\begin{array}{ccc}
    8 & 3 & 4 \\
    23 & 9 & 9 \\
    13 & 3 & 5
    \end{array}\right]\\
    &\begin{array}{l}
    2 \mathrm{RS}=2\left[\begin{array}{ccc}
    8 & 3 & 4 \\
    23 & 9 & 9 \\
    13 & 3 & 5
    \end{array}\right]=\left[\begin{array}{ccc}
    16 & 6 & 8 \\
    46 & 18 & 18 \\
    26 & 6 & 10
    \end{array}\right] \\
    \mathrm{ST}=\left[\begin{array}{ccc}
    1 & 0 & -2 \\
    -9 & 11 & 2 \\
    -15 & 17 & 4
    \end{array}\right] \\
    3 \mathrm{ST}=3\left[\begin{array}{ccc}
    1 & 0 & -2 \\
    -9 & 11 & 2 \\
    -15 & 17 & 4
    \end{array}\right]=\left[\begin{array}{ccc}
    3 & 0 & -6 \\
    -27 & 33 & 6 \\
    -45 & 51 & 12
    \end{array}\right]
    \end{array}
    \end{aligned}

    Thus

    \[2 \mathrm{RS}-3 \mathrm{ST}=\left[\begin{array}{ccc}
    16 & 6 & 8 \\
    46 & 18 & 18 \\
    26 & 6 & 10
    \end{array}\right]-\left[\begin{array}{ccc}
    3 & 0 & -6 \\
    -27 & 33 & 6 \\
    -45 & 51 & 12
    \end{array}\right]=\left[\begin{array}{ccc}
    13 & 6 & 14 \\
    73 & -15 & 12 \\
    71 & -45 & -2
    \end{array}\right] \nonumber \]

    Example \(\PageIndex{10}\)

    Find \(F^2\) given matrix

    \[\mathrm{F}=\left[\begin{array}{ll}
    2 & -1 \\
    3 & 2
    \end{array}\right] \nonumber \]

    Solution

    \(F^2\) is found by multiplying matrix \(F\) by itself, using matrix multiplication.

    \[\mathrm{F}^{2}=\left[\begin{array}{cc}
    2 & -1 \\
    3 & 2
    \end{array}\right]\left[\begin{array}{cc}
    2 & -1 \\
    3 & 2
    \end{array}\right]=\left[\begin{array}{cc}
    2 \cdot 2+(-1) \cdot 3 & 2 \cdot(-1)+(-1) \cdot 2 \\
    3 \cdot 2+2 \cdot 3 & 3 \cdot(-1)+2 \cdot 2
    \end{array}\right]=\left[\begin{array}{cc}
    1 & -4 \\
    12 & 1
    \end{array}\right] \nonumber \]

    Note that \(F^2\) is not found by squaring each entry of matrix \(F\). The process of raising a matrix to a power, such as finding \(F^2\), is only possible if the matrix is a square matrix.

    USING MATRICES TO REPRESENT A SYSTEM OF LINEAR EQUATIONS

    In this chapter, we will be using matrices to solve linear systems. In section 2.4, we will be asked to express linear systems as the matrix equation \(\bf{AX = B}\), where \(A\), \(X\), and \(B\) are matrices.

    • Matrix \(A\) is called the coefficient matrix.
    • Matrix \(X\) is a matrix with 1 column that contains the variables.
    • Matrix \(B\) is a matrix with 1 column that contains the constants.
    Example \(\PageIndex{11}\)

    Verify that the system of two linear equations with two unknowns:

    \begin{array}{l}
    a x+b y=h \\
    c x+d y=k
    \end{array}

    can be written as \(AX = B\), where

    \[A=\left[\begin{array}{ll}
    a & b \\
    c & d
    \end{array}\right] \quad X=\left[\begin{array}{l}
    x \\
    y
    \end{array}\right] \text { and } B=\left[\begin{array}{l}
    h \\
    k
    \end{array}\right] \nonumber \]

    Solution

    If we multiply the matrices \(A\) and \(X\), we get

    \[A X=\left[\begin{array}{ll}
    a & b \\
    c & d
    \end{array}\right]\left[\begin{array}{l}
    x \\
    y
    \end{array}\right]=\left[\begin{array}{c}
    a x+b y \\
    c x+d y
    \end{array}\right] \nonumber \]

    If \(AX = B\) then

    \[\left[\begin{array}{l}
    a x+b y \\
    c x+d y
    \end{array}\right]=\left[\begin{array}{l}
    h \\
    k
    \end{array}\right] \nonumber \]

    If two matrices are equal, then their corresponding entries are equal. It follows that

    \begin{array}{l}
    a x+b y=h \\
    c x+d y=k
    \end{array}

    Example \(\PageIndex{12}\)

    Express the following system as a matrix equation in the form \(AX = B\).

    \begin{array}{l}
    2 x+3 y-4 z=5 \\
    3 x+4 y-5 z=6 \\
    5 x \quad-6 z=7
    \end{array}

    Solution

    This system of equations can be expressed in the form \(AX = B\) as shown below.

    \[\left[\begin{array}{ccc}
    2 & 3 & -4 \\
    3 & 4 & -5 \\
    5 & 0 & -6
    \end{array}\right]\left[\begin{array}{l}
    x \\
    y \\
    z
    \end{array}\right]=\left[\begin{array}{l}
    5 \\
    6 \\
    7
    \end{array}\right] \nonumber \]


    This page titled 2.1: Introduction to Matrices is shared under a CC BY 4.0 license and was authored, remixed, and/or curated by Rupinder Sekhon and Roberta Bloom via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.