Created at: 2025-05-11
A nonzero integer a
is said to divide an integer b
if b/a = k
for some
integer k
.
When a
divides b
, we write a | b
.
When a
does not divide b
, we write a † b
.
Simple Examples:
a
that can divide 9 by 6 and result in an
integer. That number would be 1.5 since 9 = 6*1.5 but 1.5 is not an integer.Special case b = 0:
0/a = 0 for every non-zero integer a, and 0 is an integer.
Proposition Let a, b, and c be integers. If a | b and b | c, then a | c.
Note By assuming that a | b, then a ≠ 0. By assuming that b | c, then b ≠ 0.
Scratch work a = 3, b = 12, c = 24
Proof
a | b
is true if b = a*x
for an integer x.b | c
is true if c = b*y
for an integer y.c = b*y
, thenc = a*x*y
, thenc = a*z
where z = x*y*
, thenz
is also an integer, and c=a*z
then by the definition of divisibility,a | c
✓.