let K be Field; :: thesis: for A, B being Matrix of K st len A = len B & width A = width B holds
for i being Nat st 1 <= i & i <= len A holds
Line (A + B),i = (Line A,i) + (Line B,i)
let A, B be Matrix of K; :: thesis: ( len A = len B & width A = width B implies for i being Nat st 1 <= i & i <= len A holds
Line (A + B),i = (Line A,i) + (Line B,i) )
assume A1:
( len A = len B & width A = width B )
; :: thesis: for i being Nat st 1 <= i & i <= len A holds
Line (A + B),i = (Line A,i) + (Line B,i)
let i be Nat; :: thesis: ( 1 <= i & i <= len A implies Line (A + B),i = (Line A,i) + (Line B,i) )
assume A2:
( 1 <= i & i <= len A )
; :: thesis: Line (A + B),i = (Line A,i) + (Line B,i)
A3:
i in dom A
by A2, FINSEQ_3:27;
reconsider LB = Line B,i as Element of (width A) -tuples_on the carrier of K by A1;