reserve
  a for natural Number,
  k,l,m,n,k1,b,c,i for Nat,
  x,y,z,y1,y2 for object,
  X,Y for set,
  f,g for Function;
reserve p,q,r,s,t for FinSequence;
reserve D for set;
reserve a, b, c, d, e, f for object;

theorem
  <*a,b,c*> = <*d,e,f*> implies a = d & b = e & c = f
proof
  assume
A1: <*a,b,c*> = <*d,e,f*>;
  thus a = <*a,b,c*>.1
    .= d by A1,Th45;
  thus b = <*a,b,c*>.2
    .= e by A1,Th45;
  thus c = <*a,b,c*>.3
    .= f by A1,Th45;
end;
