I would like to prove whether the matrix $I-L$ has an inverse or not, based on the following expressions.
Let $I$ be an identity matrix of size $n\times n$, and let $L = (l_{ij})_{n\times n}$ be a non-negative square matrix. Moreover,
$$T=\begin{bmatrix} 1 & t_{12} & t_{13} & \dots & t_{1n} \\ t_{21} & 1 & t_{23} & \dots & t_{2n} \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ t_{n1} & t_{n2} & t_{n3} & \dots & 1 \end{bmatrix}$$
where
$t_{ij}$ is non-negative $\forall i,j$ and there is at least one $t_{ij}$ which must be zero;
lower triangular of $T$ is written as $t_{ji}=1/t_{ij}$ if $t_{ij}\neq 0$, and $t_{ji}=0$ if $t_{ij}=0$; and
$L=k.T$, where $k=\frac{1}{\max \{R, S\}}$ with $R=\max_i \sum_{j=1}^{n}t_{ij}$, and $S=\max_{j} \sum_{i=1}^{n}t_{ij}$; and
$T$ is an irreducible matrix i.e., it digraph is strongly connected.
Now I want to prove whether $I-L$ invertible using determinant $\det(I-L)\neq 0$, where $I$ is an identity matrix of size $n\times n$. I have tried to check using numerical simulations (by generating many random matrices of type $T$) and it seems that the determinant is different from zero. i.e., $I-L$ has an inverse. But I wanted to be certain using mathematical proof. I realize that $max(R,S)$ is the largest row or column sum of $T$ and I tried to show using $max(R,S)I−T$ is invertible (instead of $I-L$). But I got stuck. Please I need help? Thanks in advance!