let f, g be FinSequence; :: thesis: for h being Function st dom h = (dom f) /\ (dom g) holds
h is FinSequence

let h be Function; :: thesis: ( dom h = (dom f) /\ (dom g) implies h is FinSequence )
assume A1: dom h = (dom f) /\ (dom g) ; :: thesis: h is FinSequence
consider n being natural number such that
A2: dom f = Seg n by FINSEQ_1:def 2;
consider m being natural number such that
A3: dom g = Seg m by FINSEQ_1:def 2;
h is FinSequence-like
proof
per cases ( n <= m or m <= n ) ;
end;
end;
hence h is FinSequence ; :: thesis: verum