Vector space is defined such as
VS = ( T , V , + , * )
Where is T is Division ring V is set of vectors and + and * are operations.
Having T defined such as
$T = (\{ 0, 1, 2 , 3 , 4 \} , + mod 5 , * mod 5 )$
and V set of vectors .
Can i understand it that vector space is set of all vectors that are created by
$\forall a \in T , \forall x \in V , y = a*x$
or better defined
for( a in T )
for ( x in A )
y = x*a
The set of Y is the whole vector space?