My textbook gives the following example:
The second-order cone is the norm cone for the Euclidean norm, i.e.,
$$\begin{align} C &= \{ (x, t) \in \mathbb{R}^{n + 1} \mid \left\lVert x \right\rVert_2 \le t \} \\ &= \left\{ \begin{bmatrix} x \\ t \end{bmatrix} \;\middle|\; \begin{bmatrix} x \\ t \end{bmatrix}^T \begin{bmatrix} I & 0 \\ 0 & -1 \end{bmatrix} \begin{bmatrix} x \\ t \end{bmatrix} \le 0, t \ge 0 \right\} \end{align}$$
The second-order cone is also known by several other names. It is called the quadratic cone, since it is defined by a quadratic inequality. It is also called the Lorentz cone or ice-cream cone.
I'm wondering how to multiply out $$\begin{bmatrix} x \\ t \end{bmatrix}^T \begin{bmatrix} I & 0 \\ 0 & -1 \end{bmatrix} \begin{bmatrix} x \\ t \end{bmatrix}$$
It seems to me that I need to use block matrix multiplication (assuming $I$ is the identity matrix), but even after reviewing examples (see this and Wikipedia), I keep getting the matrix $\begin{bmatrix} x^2 I - t^2 \end{bmatrix}$ as my final result, which doesn't make sense, since $x^2 I$ is an invalid matrix multiplication.
I would greatly appreciate it if people could please take the time to demonstrate this.