Here is the matrix
a={{1,7,5,0},{5,8,6,9},{2,1,6,4},{8,1,2,4}}
Could check that #rows==#cols==rank.
a = {{1, 7, 5, 0}, {5, 8, 6, 9}, {2, 1, 6, 4}, {8, 1, 2, 4}}; MatrixQ[a] && MatrixRank[a] == Length[a] == Length[a[[1]]] (* Out[210]= True *)