Let's say I have Matrix B =
$$
\begin{bmatrix}
-2 & 4\\
3 & 2\\
0 & -1\\
\end{bmatrix}
$$
How would I calculate B/2? Do I just divide each element of B by 2? Please help!
Let's say I have Matrix B =
$$
\begin{bmatrix}
-2 & 4\\
3 & 2\\
0 & -1\\
\end{bmatrix}
$$
How would I calculate B/2? Do I just divide each element of B by 2? Please help!
See the comments. Indeed, given a matrix $B$, one computes $B/2$ by dividing all entries of $B$ by $2$.
If $$B= \begin{bmatrix} -2 & 4\\ 3 & 2\\ 0 & -1\\ \end{bmatrix} $$ then $$\frac{B}{2}= \frac12\begin{bmatrix} -2 & 4\\ 3 & 2\\ 0 & -1\\ \end{bmatrix} = \begin{bmatrix} -1 & 2\\ 1.5 & 1\\ 0 & -0.5\\ \end{bmatrix}$$
So yes, just divide all the elements by $2$.