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

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 7K views
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.
 
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