How can I find the Moore-Penrose pseudoinverse of the $2 \times 2$ complex matrix
$$A=\begin{pmatrix}0&a\\0&b\end{pmatrix}$$
for $a \neq 0$ and $b \neq 0$?
Here I want to use the limit formula
$$A^+=\lim_{\epsilon \to 0} (\epsilon I+A^*A)^{-1}A^*$$
since $\mbox{rank}(A)=1$, which is not full rank. Any help, please?
Using SymPy:
Hence,
$$\begin{bmatrix} 0 & a\\ 0 & b\end{bmatrix}^+ = \lim_{t \to 0} \begin{bmatrix} 0 & 0\\ \frac{a}{a^{2} + b^{2} + t} & \frac{b}{a^{2} + b^{2} + t}\end{bmatrix} = \begin{bmatrix} 0 & 0\\ \frac{a}{a^{2} + b^{2}} & \frac{b}{a^{2} + b^{2}}\end{bmatrix}$$