First of all, on this Matlab exercise sheet that I am currently working through what does the term 'the lower $2 \times 2$ block' mean in the question below?
$A = \left[\begin{array}\ 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \\ \end{array}\right]$,
Define a $2 \times 2$ matrix that is the lower $2 \times 2$ block in $A$.
It is clear from the wording; it is the submatrix $\left[\begin{array}\ 5 & 6 \\ 8 & 9 \\ \end{array}\right]$. In Matlab, you need to say $A(2:3,2:3)$ to get the submatrix.