You've been given, for each case, a set of vectors. For example, the first set is specified as
All vectors in $R^3$ with $v_1-v_2+2v_3=0$.
In set builder notation, this would be
$$\{v\in R^3|v_1 - v_2 + 2 v_3 = 0\}$$
Note that this specifies a subset of the vector space $R^3$ (the use of the term "vectors" in the description already tells that; I very much suspect that $R$ is meant to be the set of real numbers, more often written as $\mathbb R$; however that's irrelevant, as it works the same over every vector space over a field containing the integers; although in the third task you need at least an ordered field).
Now your task is to check whether this set, equipped with the corresponding subset restrictions of the vector space operations of $R^3$, fulfills the axioms of a vector space.
Since you know that the set is a subset of a vector space, some of the properties, like associativity, are a given. Indeed, you only need to check two things:
- For every two vectors $v,w$ in that set, $v+w$ is in the set.
- For every $v$ in that set and every $\alpha$ in the underlying field (probably $\mathbb R$) also $\alpha v$ is in the set.
All other properties of a vector space can be derived from those two conditions and the fact that $R^3$ is a vector space.
For this first case, it is indeed the case:
$(v+w)_1 - (v+w)_2 + 2(v+w)_3 = (v_1+w_1) - (v_2+w_2) + 2(v_3+w_3) = (v_1 - v_2 + 2v_3) + (w_1 - w_2 + 2w_3) = 0 + 0 = 0$ $\implies$ the equation is fulfilled for the sum.
$(\alpha v)_1 - (\alpha v)_2 + 2(\alpha v)_3 = \alpha v_1 - \alpha v_2 + 2\alpha v_3 = \alpha(v_1 - v_2 + 2v_3) = \alpha 0 = 0$ $\implies$ the equation is fulfilled for the multiple.
With this, you should now be able to do it for the other cases.
Here are some hints:
For case 2, it's easiest to directly check the zero vector.
For case 3, consider especially $\alpha<0$.