$V=R^2$, with operations:
addition ($\oplus$): $(x_1, y_1) \oplus (x_2, y_2) = (x_1 + x_2, y_1 + y_2)$
multiplication($\circ$): $c \circ (x, y) = (cx, y)$
This is exercise II.1.4 from Hoffman-Kunze's Linear Algebra book. I was able to show that all the axioms are satisfied. Can someone confirm if that is correct?
$\textbf{EDIT}$: I made a mistake in checking one of the distributive properties. It is not a vector space.
Distributivity of multiplication over addition requires that
$2c\circ(x,y) = (c+c)\circ(x,y) = c\circ(x,y) + c\circ(x,y)$
but
$c\circ(x,y) = (cx,y)$
and
$c\circ(x,y) + c\circ(x,y) = (cx,y) + (cx,y) = (2cx,2y) \ne 2c\circ(x,y)$