Can someone please explain these answers? I have reviewed the slides and read about properties of equality but I still don't understand how to apply it to these sets.
For each the following relations on the set of integers list all that apply (Reflexive, Symmetric, Antisymmetric, Transitive, or none):
$R1 = \{(a, b)\mid a \neq b\}$; Solution: Symmetric
$R2 = \{(a, b)\mid a < b\}$; Solution: Antisymmetric, Transitive
$R3 = \{(a, b) \mid a = b\text{ or }a = b + 1\}$; Solution: Reflexive, Antisymmetric
$R4 = \{(a, b) \mid a = b\}$; Solution: Reflexive, Symmetric, Antisymmetric, Transitive
$R5 = \{(a, b) \mid a = 2b\}$; Solution: Antisymmetric
$R6 = \{(a, b) \mid a < 10 - b\}$; Solution: Symmetric
Let's review what each property means. Your question deals with relations on the integers; so, let's say that we are working with a relation $R\subseteq\mathbb{Z}\times\mathbb{Z}$.
Symmetric:
$R$ is called symmetric if for all $(a,b)\in R$, we also have $(b, a)\in R$.
For instance, $R_1$ is symmetric: if $(a,b)\in R_1$, then $a\neq b$, which implies $b\neq a$ and therefore $(a,b)\in R_1$.
On the other hand, $R_3$ is not symmetric; $(5,4)\in R_3$, but $(4,5)\notin R_3$.
Antisymmetric:
$R$ is called antisymmetric if whenever $(a,b)\in R$ and $a\neq b$, we have $(b,a)\notin R$.
So, for instance, $R_1$ is not antisymmetric; $(3,5)$ and $(5,3)$ are both elements of $R_1$.
On the other hand, $R_5$ is antisymmetric: if $a=2b$ and $a\neq 0$, then $b\neq 2a$ and so $(b,a)\notin R_5$; if $a=0$ and $a=2b$, then $a=b=0$, so it is fine.
Transitive:
$R$ is called transitive if whenever $(a,b)\in R$ and $(b,c)\in R$, we also have $(a,c)\in R$.
For instance, $R_1$ is not transitive: $(3,5)\in R_1$ and $(5,3)\in R_1$, but $(3,3)\notin R_1$.
On the other hand, $R_2$ is transitive: if $(a,b),(b,c)\in R$, then $a<b$ and $b<c$; therefore $a<c$, and $(a,c)\in R_2$.
Reflexive:
$R$ is called reflexive if $(a,a)\in R$ for all $a$.
So, $R_1$ is not reflexive: if $(a,a)\in R_1$, then $a\neq a$... which is clearly not true.
On the other hand, $R_3$ is reflexive; since any $a\in\mathbb{Z}$ satisfies $a=a$ (and, therefore, either $a=a$ or $a=a+1$), we have $(a,a)\in R_3$.
Hope this helps.