2

In regards to divisibility I am having trouble wrapping my head around some of the concepts, more specifically some of the general properties of divisibility.

for example, why is it possible for x|y, x|z => x|(y-z)?

In order to attempt to work this out to myself I tried to run through it logically. I understand that x|y = yc

GJ

2 Answers2

1

Let $\mathbb{Z}$ be the set of integers.

Assume that $x \in \mathbb{Z}$, $y \in \mathbb{Z}$ and $z \in \mathbb{Z}$.

Then

$$x \mid y \Longrightarrow y = cx,$$

for some $c \in \mathbb{Z}$.

Similarly,

$$x \mid z \Longrightarrow z = dx,$$

for some $d \in \mathbb{Z}$.

Subtracting the two equations involving $x, y, z$ we get:

$$y - z = (c - d)x,$$

for some $e = c - d \in \mathbb{Z}$.

Therefore, we get $x \mid (y - z)$, and we are done.

Note the following:

  1. The difference of two integers is again an integer.

  2. Definitions are if-and-only-if statements.

0

In writing “$\,x|y = yc\,$”, you have made a serious error. The point is that $x|y$ is not a number, but a sentence. This sentence says that there is some other number $m$ for which $y=mx$. Similarly, $x|z$ says that there is some other number $n$ for which $z=nx$. I think that once you see this, and are holding the (otherwise unspecified) numbers $m$ and $n$ in your hand, you will see how to prove that $x\,|\,(y\pm z)$

Lubin
  • 62,818