60.9k views
10 votes
Construct a square matrix A of order 3

Construct a square matrix A of order 3-example-1
User Modupe
by
7.4k points

1 Answer

5 votes


A_(ij) refers to the entry of
A in row
i and column
j.

When
i=j, the entry in question lies on the diagonal. In this case,
A_(ij)=0 so


A = \begin{bmatrix} 0 & \square & \square \\ \square & 0 & \square \\ \square & \square & 0 \end{bmatrix}

When
i<j, the row number is smaller than the column number, which happens for each
A_(ij) in the upper half of
A.


A = \begin{bmatrix} 0 &amp; -1 &amp; -1 \\ \square &amp; 0 &amp; -1 \\ \square &amp; \square &amp; 0 \end{bmatrix}

When
i>j, the row number is larger, which happens everywhere else in the matrix.


A = \begin{bmatrix} 0 &amp; -1 &amp; -1 \\ 1 &amp; 0 &amp; -1 \\ 1 &amp; 1 &amp; 0 \end{bmatrix}

User Vishesh Chandra
by
7.7k points