I can't handle this relation-evidence.
$xRy \iff (\forall t\in\mathbb{N} \ \text{with $t$ a prime-number}: \ t\mid x \Rightarrow t\mid y)$
($t\mid x$ means $t$ divides $x$; $t\mid y$ means $t$ divides $y$)
Now i have to prove
reflexivity: xRx
t|x => t|x
transitivity:∃z∈N: xRy ∧ yRz => xRz
(t|x => t|y)∧(t|y => t|z) => (t|x => t|z)
symmetry: xRy <=> yRx
(t|x => t|y) <=> (t|y => t|x)
asymmetry: xRy => not(yRx)
(t|x => t|y) => not(t|y => t|x)
antisymmetry: xRy ∧ yRx => x=y
(t|x => t|y)∧(t|y => t|x) => (x=y)
I have already shown that it's reflexive.
I also tried to show the other ones, but my proof was either wrong oder not concrete enough.
I also don't know, when $(t\mid x \Rightarrow t\mid y)$ from $t\mid x$ follows $t\mid y$, how can $(t\mid y \Rightarrow t\mid x)$ from $t\mid y$ follows $t\mid x$, and what the implication => means here. And because I don't understand it, i also can't show any example that proofs falseness.
So I am thankful for any help I can get.