First time here? Check out the FAQ!
answered 2014-09-08 10:57:01 +0100
As you can see, v1 is a list containing a single tuple:
v1
sage: v1 [(1, 1.618033988749895?)]
You want to plot the vector described by the inner tuple, not the list. The following should work:
sage: plot(v1[0])