Vector dado. $$\vec x = \begin{bmatrix} x_1 \\ \vdots \\ x_n \end{bmatrix},$$ ¿Cómo podemos escribir el vector de $$\vec y = \begin{bmatrix} y_1 \\ \vdots \\ y_n \end{bmatrix} := \begin{bmatrix} x^2_1 \\ \vdots \\ x^2_n \end{bmatrix}$$ en términos de $\vec x$ utilizando sólo las operaciones de matrices?
Es sencillo escribir $\vec y$ en términos de $\vec x$ elemento sabio, por ejemplo, en forma de sistema de ecuaciones $y_i = x_i^2$$i = 1, \dots, n$. Sin embargo, estoy luchando para hacerlo utilizando notación matricial y las operaciones.
La mejor opcion que se me ocurrió fue escribir expresiones como $$ \begin{aligned} \vec y &= \vec x ^T \cdot I_{n \times n} \cdot\vec x, & I_{n \times n} -\text{ identity matrix, } & & I_{n \times n} & = \begin{bmatrix} 1 & 0 & \cdots & 0 \\ 0 & 1 & \cdots & 0 \\ \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & \cdots & 1 \\ \end{bmatrix} \\ \vec y &= \left\langle \vec x, \vec x \right \rangle = \left\| \vec x \right\| & - \text{ interior del producto / de la norma, } & & \left\| \vec x \right\| &= \left\langle \vec x, \vec x \right \rangle = \sum_{i=1}^{n} x_i^2 \end{aligned} $$ ambos de los cuales son evidentemente erróneas.
Cualquier sugerencia se agradece.