Matrix Definition Math Example 1

Follow the full solution, then compare it with the other examples linked below.

Example 1

easy
Given A=[3โˆ’17052]A = \begin{bmatrix} 3 & -1 & 7 \\ 0 & 5 & 2 \end{bmatrix}, what are the dimensions of AA and what is a2,3a_{2,3}?

Solution

  1. 1
    Step 1: Count rows: 2. Count columns: 3. Dimensions: 2ร—32 \times 3.
  2. 2
    Step 2: a2,3a_{2,3} means row 2, column 3. That entry is 22.
  3. 3
    Step 3: Verify: row 2 is [0,5,2][0, 5, 2], third element is 22 โœ“

Answer

AA is 2ร—32 \times 3; a2,3=2a_{2,3} = 2
A matrix's dimensions are always given as rows ร— columns. The notation ai,ja_{i,j} refers to the entry in row ii and column jj.

About Matrix Definition

A matrix is a rectangular array of numbers arranged in rows (horizontal) and columns (vertical). An mร—nm \times n matrix has mm rows and nn columns. Each number in the matrix is called an entry or element, identified by its row and column position.

Learn more about Matrix Definition โ†’

More Matrix Definition Examples