[Math] On the polynomial formula for determinants

determinantlinear algebramatricespolynomials

I have three questions:

1) For the determinant of a matrix $Q \in \mathbb{R}^{n \times n}$, there is the following polynomial formula:
$$
\det(Q)= \sum_\sigma \text{sgn}(\sigma) \prod_{i=1}^{n} Q_{\sigma(i),i}
\tag{*} $$
I know about the characteristic polynomial of a matrix whose roots are the eigenvalues, but I am not sure about how (*) comes about? In particular, what is $\sigma$ here and is $Q_{\sigma(i),i}$ the element at the $\sigma(i)$-th row and $i$-th column of $Q$? Would $\text{sgn}(\sigma) $ ever be negative?

2) As a follow up, let $\|Q\|_\infty$ be the largest absolute value of the elements of the $Q$ matrix, and let $\|Q\|$ be the operator norm, then, applying (*) to the below, we have
$$
\begin{split}
&
|\det(I+Q)-1|
\\&=
\left|
\prod_{i=1}^{n} (1+Q_{i,i})-1
+
\sum_{\sigma\neq\text{id}} \text{sgn}(\sigma) \prod_{i=1}^{n} (\delta_{\sigma(i),i}+Q_{\sigma(i),i})
\right|
\\
\end{split}
\tag{**}
$$

Can someone please explain how each of the two terms come about in (**)? I believe that the first term captures the diagonal components of $Q$ and the second term are the off-diagonals? Not sure what the $\delta_{\sigma(i), i}$ means though.

3) Finally, I would like to find a better upper bound for $(**)$ than the one given by @JoonasIlmavirta as

\begin{split}
&
|\det(I+Q)-1|
\\&=
\left|
\prod_{i=1}^{n} (1+Q_{i,i})-1
+
\sum_{\sigma\neq\text{id}} \text{sgn}(\sigma) \prod_{i=1}^{n} (\delta_{\sigma(i),i}+Q_{\sigma(i),i})
\right|
\\&\leq
\left|
\prod_{i=1}^{n} (1+Q_{i,i})-1
\right|
+
\sum_{\sigma\neq\text{id}}
\left|
\prod_{i=1}^{n} (\delta_{\sigma(i),i}+Q_{\sigma(i),i})
\right|
\\&\leq
(2^n-1)\times\|Q\|_\infty
+
(n!-1)\times 2^{n-1}\|Q\|_\infty
\\&\leq
2^nn!\|Q\|_\infty.
\end{split}

Each term in the product $\left|
\prod_{i=1}^{n} (\delta_{\sigma(i),i}+Q_{\sigma(i),i})
\right|$ above is at most $2$ in absolute value, and there is at least one $i$ so that $\delta_{\sigma(i),i}=0$, so the product is at most $2^{n-1}\|Q\|_\infty$ in absolute value.
The rest of the estimates are similar.

Best Answer

(1) $\sigma$ ranges over elements of $S_n$, i.e. permutations of $\{1,\cdots,n\}$, and $\mathrm{sgn}(\sigma)$ refers to the sign of the permutation ($+1$ if it is an even permutation, $-1$ if it is an odd permutation). Geometrically, permutations of coordinates are preserve or reverse the orientation of space exactly when the sign of the permutation is positive of negative.

Let's work this out by hand with $n=3$. In one-line notation for permutations, here are all of the $3!=6$ permutations of $\{1,2,3\}$ and their signs:

$$ \begin{array}{ccc} \color{Red}{(123),+} & \color{Lime}{(132),-} & \color{Blue}{(213),-} \\ (231),+ & (312),+ & (321),- \end{array} $$

Therefore, we have (using the above permutations in this order)

$$ \large \det\begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{pmatrix} = \begin{array}{l} \color{Red}{+}a_{\color{Red}{1}1}a_{\color{Red}{2}2}a_{\color{Red}{3}3} \color{Lime}{-}a_{\color{Lime}{1}1}a_{\color{Lime}{3}2}a_{\color{Lime}{2}3}\color{Blue}{-}a_{\color{Blue}{2}1}a_{\color{Blue}{1}2}a_{\color{Blue}{3}3} \\ +a_{21}a_{32}a_{13}+a_{31}a_{12}a_{23}-a_{31}a_{22}a_{13}. \end{array} $$

(Sorry for lime green's harshness, normal green is too close to black.)

(2) The entries of the identity matrix $I$ are the Kronecker delta function $\delta_{ij}$ (which is $1$ when $i=j$ and $0$ otherwise). The sum over all permutations can be split into two: the term when $\sigma=\mathrm{id}$ is the identity map, and all of the other terms when $\sigma\ne \mathrm{id}$. In the first case, $\mathrm{id}(i)=i$ for all $i$ and $\mathrm{sgn}(\mathrm{id})=+1$ so the summand is $+\prod_{i=1}^n (1+Q_{ii})$.

Related Question