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;
reserve f for Morphism of a,b,
        g for Morphism of b,a;
reserve g for Morphism of b,c;
reserve f,g for Morphism of C;

theorem Th65:
  cod p1 = c & cod p2 = c implies (x1,x2)-->(p1,p2) is
  Injections_family of c,{x1,x2}
proof
  assume
A1: cod p1 = c & cod p2 = c;
  cods ((x1,x2)-->(p1,p2)) = (x1,x2) --> (cod p1,cod p2) by Th7
    .= {x1,x2} --> c by A1,FUNCT_4:65;
  hence thesis by Def16;
end;
