Automatically factor out a common fraction in a vector
Suppose I have a vector like v = vector([3/2,4/5)])
. Is there a way to make sage output this automatically as v = 1/10 (15,8)
.
In
v = vector([3/2,4/5)])
there is an extra closing parenthesis.