reserve I for set,
  x,x1,x2,y,z for set,
  A for non empty set;
reserve C,D for Category;
reserve a,b,c,d for Object of C;
reserve f,g,h,i,j,k,p1,p2,q1,q2,i1,i2,j1,j2 for Morphism of C;

theorem Th14:
  x1 <> x2 implies ((x1,x2)-->(p1,p2))*f = (x1,x2)-->(p1(*)f,p2(*)f)
proof
  set F = (x1,x2)-->(p1,p2), F9 = (x1,x2)-->(p1(*)f,p2(*)f);
  assume
A1: x1 <> x2;
  now
    let x;
    assume
A2: x in {x1,x2};
    then x = x1 or x = x2 by TARSKI:def 2;
    then F/.x = p1 & F9/.x = p1(*)f or F/.x = p2 & F9/.x = p2(*)f by A1,Th3;
    hence (F*f)/.x = F9/.x by A2,Def5;
  end;
  hence thesis by Th1;
end;
