Rank sequence - inequality

132 Views Asked by At

Consider the sequence $$a_k=\operatorname{rank}(A^{k+1})-\operatorname{rank}(A^k)$$

Prove that the sequence is nondecreasing.

Essentially, what we want to prove is that $a_{k+1} \geq a_{k}$ or equivalently $$\operatorname{rank}(A^{k+2})+\operatorname{rank}(A^k)\geq2\operatorname{rank}(A^{k+1})$$

Hint: Use the Frobenius inequality for appropriate powers of matrix $A$

3

There are 3 best solutions below

0
On BEST ANSWER

By Rank-nullity theorem it's sufficient (finite-dimensional case) to prove that the sequence $b_k := \dim(B_k) - \dim(B_{k-1})$ are non decreasing.

Let's denote with $B_i=\ker (A^i)$. Since we have $\{0\}=B_0 \subset B_1 \subset B_2 \subset \dots \subset B_n \subset \cdots $ we have the following : $\forall 1 \le i \le n-1, \dim(B_i) - \dim(B_{i-1}) \geq \dim(B_{i+1}) - \dim(B_i)$, i.e $b_i \geq b_{i-1}$.

Consider the following homomorphism :

$$\begin{array}{ccccc} & B_{i+1} & \xrightarrow{f} & B_i & \xrightarrow{\pi_i} & B_i /B_{i-1} \end{array}$$

$\ker(\pi_i \circ f)=f^{-1}(\pi_i^{-1}(\{0\}))=f^{-1}(B_{i-1})=B_i$, so by 1-st isomorphism theorem we have $B_{i+1} /B_{i} \simeq \text{Im}(\pi_i \circ f) < B_i /B_{i-1}$. So $\dim(B_{i+1} /B_{i}) \le \dim(B_i /B_{i-1})$ which was what we wanted to prove.

0
On

I would proceed as follows.

As $\operatorname{Im}(A^{k+1}) \subseteq \operatorname{Im}(A^{k}) $, one can find a linear subspace $G$ of $\operatorname{Im}(A^{k}) $ such that $\operatorname{Im}(A^{k}) =\operatorname{Im}(A^{k+1}) \oplus G $. Applying $A$ on both sides of the last equality $$A(\operatorname{Im}(A^{k}))=\operatorname{Im}(A^{k+1})=A(\operatorname{Im}(A^{k+1})) +A(G) = \operatorname{Im}(A^{k+2}) +A(G)$$ and taking the dimensions, we get $$\begin{aligned}\operatorname{rank}(A^{k+1})-\operatorname{rank}(A^{k+2}) &= \dim A(G) - \dim \operatorname{Im}(A^{k+2}) \cap A(G)\\ &\le \dim A(G)\\ &\le \dim G = \operatorname{rank}(A^{k})-\operatorname{rank}(A^{k+1}) \end{aligned}$$ as desired.

0
On

From Frobenius inequality we have $$\operatorname{rank}(XYZ)+\operatorname{rank}(Y) \geq \operatorname{rank}(XY)+\operatorname{rank}(YZ)$$

Set $X=Z=A, Y=A^k$ so that $XYZ=A^{k+2},XY=YZ=A^{k+1}$. But then:

$$\operatorname{rank}(A^{k+2})+\operatorname{rank}(A^k) \geq 2\operatorname{rank}(A^{k+1})$$ for all $k$ and thus we are done.

Ah, it was so obvious! Thank you everyone for your great answers!