let p1, p2 be FinSequence of COMPLEX ; :: thesis: ( len p1 = len M & ( for i being Nat st i in Seg (len M) holds
p1 . i = Sum (Line M,i) ) & len p2 = len M & ( for i being Nat st i in Seg (len M) holds
p2 . i = Sum (Line M,i) ) implies p1 = p2 )

assume that
A4: len p1 = len M and
A5: for j being Nat st j in Seg (len M) holds
p1 . j = Sum (Line M,j) and
A6: len p2 = len M and
A7: for j being Nat st j in Seg (len M) holds
p2 . j = Sum (Line M,j) ; :: thesis: p1 = p2
X: dom p1 = Seg (len M) by A4, FINSEQ_1:def 3;
for j being Nat st j in dom p1 holds
p1 . j = p2 . j
proof
let j be Nat; :: thesis: ( j in dom p1 implies p1 . j = p2 . j )
assume j in dom p1 ; :: thesis: p1 . j = p2 . j
then ( p1 . j = Sum (Line M,j) & p2 . j = Sum (Line M,j) ) by A5, A7, X;
hence p1 . j = p2 . j ; :: thesis: verum
end;
hence p1 = p2 by A4, A6, FINSEQ_2:10; :: thesis: verum