Discrete Mathematics – Lecture 9: The Integers and Division

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key terms and concepts from Lecture 9 on integers, division, modular arithmetic, and basic cryptology.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards

Divides (a | b)

The relation where a non-zero integer a divides an integer b if there exists an integer c such that b = a c.

2
New cards

Factor

A number that divides another number exactly; if a | b, then a is a factor of b.

3
New cards

Multiple

A number produced by multiplying a given integer by another integer; if a | b, then b is a multiple of a.

4
New cards

Not-Divides Symbol (a ∤ b)

Indicates that a does NOT divide b (no integer c satisfies b = a c).

5
New cards

Theorem 1 (Divisibility Properties)

(i) If a | b and a | c, then a | (b + c). (ii) If a | b, then a | b c for any integer c. (iii) If a | b and b | c, then a | c.

6
New cards

Corollary 1 of Divisibility

If a | b and a | c, then a divides every linear combination m b + n c for all integers m,n.

7
New cards

Division Algorithm

For any integer a and positive integer d, there exist unique integers q (quotient) and r (remainder) with 0 ≤ r < d such that a = d q + r.

8
New cards

Divisor (d)

The positive integer by which another integer (dividend) is divided in the Division Algorithm.

9
New cards

Dividend (a)

The integer being divided by the divisor in the Division Algorithm.

10
New cards

Quotient (q)

The integer result of division in the Division Algorithm; q = a div d.

11
New cards

Remainder (r)

The non-negative integer less than the divisor that ‘remains’ after division; r = a mod d.

12
New cards

div Function

Notation a div d gives the quotient q in the Division Algorithm.

13
New cards

mod Function

Notation a mod d gives the remainder r in the Division Algorithm.

14
New cards

Modular Arithmetic

Arithmetic system where numbers ‘wrap around’ a fixed modulus; operations use remainders after division by the modulus.

15
New cards

Modulus (m)

The positive integer specifying the wrap-around value in modular arithmetic and congruences.

16
New cards

Congruence Modulo m

Integers a and b are congruent modulo m (a ≡ b (mod m)) if m divides a − b; they have the same remainder on division by m.

17
New cards

Remainder Criterion for Congruence

a ≡ b (mod m) if and only if a mod m = b mod m.

18
New cards

Application: Pseudorandom Number Generation

Uses modular arithmetic to produce sequences that mimic randomness for simulations.

19
New cards

Application: Hashing Functions

Employs modular arithmetic to map data to fixed memory locations efficiently.

20
New cards

Application: Cryptology

Relies on modular arithmetic for encrypting and decrypting messages.

21
New cards

Cryptology

The study of secret communication, encompassing encryption and decryption methods.

22
New cards

Encryption

The process of converting a message into a secret (cipher) form.

23
New cards

Decryption

The process of transforming an encrypted message back to its original form.

24
New cards

Caesar Cipher

A classical encryption scheme that shifts each alphabet letter three positions forward; mathematically f(p) = (p + 3) mod 26.

25
New cards

Shift Cipher

Generalization of the Caesar cipher that shifts each letter by k positions: f(p) = (p + k) mod 26.

26
New cards

Inverse Function of Shift Cipher

f⁻¹(p) = (p − k) mod 26; used to decrypt a message encrypted with a shift cipher.

27
New cards

12-Hour Clock

Everyday example of modular arithmetic with modulus 12 (e.g., 10 + 5 ≡ 3 (mod 12)).

28
New cards