| 1 | initial version |
As far as I see you look for something like:
var('x,y,z,w,a,b,c,d')
V2=[x,y,z,w,a,b,c,d]
s=[V2[i]==V2[7-i] for i in [0..3]]
solve(s,x,y,z,w,a,b,c,d)
Here one obtains that
[[x == r1, y == r2, z == r3, w == r4, a ==r4, b == r3, c == r2, d == r1]]
,
where r1,r2,r3,r4 are parameters.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.