let z1, z2 be Tuple of n, BOOLEAN ; :: thesis: ( ( for i being Nat st i in Seg n holds
z1 /. i = (x /. i) 'xor' (y /. i) ) & ( for i being Nat st i in Seg n holds
z2 /. i = (x /. i) 'xor' (y /. i) ) implies z1 = z2 )

assume that
A5: for i being Nat st i in Seg n holds
z1 /. i = (x /. i) 'xor' (y /. i) and
A6: for i being Nat st i in Seg n holds
z2 /. i = (x /. i) 'xor' (y /. i) ; :: thesis: z1 = z2
A7: len z1 = n by CARD_1:def 7;
then A8: dom z1 = Seg n by FINSEQ_1:def 3;
A9: len z2 = n by CARD_1:def 7;
now :: thesis: for j being Nat st j in dom z1 holds
z1 . j = z2 . j
let j be Nat; :: thesis: ( j in dom z1 implies z1 . j = z2 . j )
assume A10: j in dom z1 ; :: thesis: z1 . j = z2 . j
then A11: j in dom z2 by A9, A8, FINSEQ_1:def 3;
thus z1 . j = z1 /. j by A10, PARTFUN1:def 6
.= (x /. j) 'xor' (y /. j) by A5, A8, A10
.= z2 /. j by A6, A8, A10
.= z2 . j by A11, PARTFUN1:def 6 ; :: thesis: verum
end;
hence z1 = z2 by A7, A9, FINSEQ_2:9; :: thesis: verum