Compute Determinant of Matrix A: max(i,j)

AI Thread Summary
The discussion centers on computing the determinant of an n × n matrix A defined by the entry aij = max(i, j). Participants clarify that max(i, j) indicates the greater of the two indices, with specific behaviors noted for entries on and above the main diagonal versus those below it. The main diagonal has equal indices, while above it, j is greater, and below it, i is greater. The original poster's question about the meaning of the matrix definition has been addressed, and further assistance is discouraged unless additional questions arise. The focus remains on understanding the matrix structure rather than solving the determinant directly.
iasc
Messages
17
Reaction score
0
The question is:
Compute the determinant of the n × n matrix A for which aij = max(i, j).

I can compute determinants but I don't really know what the last bit means.
Any help appreciated.
 
Physics news on Phys.org
iasc said:
The question is:
Compute the determinant of the n × n matrix A for which aij = max(i, j).

I can compute determinants but I don't really know what the last bit means.
Any help appreciated.

Put some numbers in. For example, a12 = max(1, 2) = 2.
 
max(i,j) means either i or j, whichever is greater.
 
Huge hint:
In the main diagonal of your matrix i = j, so max{ i, j } = i or j
above the main diagonal j > i, so max{ i, j } = j
below the main diagonal i > j so max { i, j } = i
 
Note to all:

The OP had a simple question about the meaning of

aij = max(i, j)​

The question has been answered. This is a homework thread; please do not provide further help on solving the problem unless the OP posts again with more questions.
 
Back
Top