Given some set $X$ and relation $R$
If $R = \{(x,x) | x \in X\}$ then we have a relation which is reflexive, transitive, symmetric, and anti-symmetric. Now can I add any elements to the relation which are members of X crossed with X, such that the relation still has these properties? I am not sure if I need to require they be members of $X$ cross $X$, would it no longer be a relation if I added $(1,5)$ to $R$, since $5 \notin X$ ?
Example $X = \{1,2,3\} R = \{(1,1),(2,2),(3,3)\}$ are there any elements that I can add such that $R$ is still a relation with the four properties?
This question is strange enough that I can explain where I am coming from. Taking discrete mathematics my instructor says that being able to determing symmetry/transitive/etc properties are very very important. So, I am writing a computer program in Python such that the computer will randomly choose whether or not these properties are in a relation, and then build a set and a relation for the user to practice determining such things on their own. Now I do not want the computer to make it extremely easy for the user, such that when it decides to make a relation with all 4 propeties, it simply spits out each element in $X$ paired with itself in $R$. I want to know if I can throw in elements like $(1,5)$ in the example above, and will I still have a relation or is this unfair? Currently the program claims it has all four properties even when I add $(1,5)$