answered 10 years ago
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])