let p, q be FinSequence; :: thesis: for j being Nat st j <= len (maxPrefix p,q) holds
(maxPrefix p,q) . j = p . j

let j be Nat; :: thesis: ( j <= len (maxPrefix p,q) implies (maxPrefix p,q) . j = p . j )
assume A1: j <= len (maxPrefix p,q) ; :: thesis: (maxPrefix p,q) . j = p . j
A2: maxPrefix p,q c= p by Def1;
per cases ( j = 0 or j <> 0 ) ;
end;