How do I note two vectors at once?

216 Views Asked by At

I want to note down two vectors at once. Is that possible?

I would image something like $\vec{v}, \vec{w}=[1, 2], [2, 4]$.

2

There are 2 best solutions below

0
On BEST ANSWER

You could say $(\vec{v}, \vec{w})=([1, 2], [2, 4])$.

As is mentioned in the comments, this is not necessarily the best way to go. Defining them "separately," i.e., $\vec{v}=[1, 2]$, $\vec{w}=[2, 4]$ is probably better.

0
On

Perhaps you could try using matrices:

$$ \left[ \begin{array}{c} \mathbf{\ \color{red}{v}}\\ \mathbf{\color{green}{w}} \end{array} \right] = \left[ \begin{array}{cc} \color{red}{1} & \color{red}{2}\\ \color{green}{2} & \color{green}{4} \end{array} \right]$$ where, $v=(1,2)$ and $w=(2,4)$.