Number Theory and Cryptography

0.0(0)
Studied by 1 person
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering the fundamental concepts of number theory, including divisibility, integer representations, primality, and common divisors based on Chapter 4 notes.

Last updated 4:59 PM on 7/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Number Theory

The part of mathematics devoted to the study of the integers and their properties.

2
New cards

Divisibility

A property where for integers aa and bb with a0a \neq 0, aa divides bb if there exists an integer cc such that b=acb = ac.

3
New cards

Division Algorithm

A theorem stating that if aa is an integer and dd a positive integer, then there are unique integers qq and rr with 0r<d0 \le r < d, such that a=dq+ra = dq + r.

4
New cards

Dividend

The integer aa being divided in the division algorithm a=dq+ra = dq + r.

5
New cards

Divisor

The positive integer dd by which the dividend is divided in the division algorithm a=dq+ra = dq + r.

6
New cards

Quotient

The unique integer qq in the division algorithm, denoted as q=a div dq = a \text{ div } d.

7
New cards

Remainder

The unique non-negative integer rr less than the divisor, denoted as r=a mod dr = a \text{ mod } d.

8
New cards

Congruence Modulo mm

If aa and bb are integers and mm is a positive integer, aa is congruent to bb modulo mm if mm divides aba - b, denoted as ab(modm)a \equiv b \pmod{m}.

9
New cards

Base bb Expansion

The unique representation of a positive integer nn in the form n=akbk+ak1bk1++a1b+a0n = a_k b^k + a_{k-1} b^{k-1} + \dots + a_1 b + a_0 where each digit aja_j is less than bb.

10
New cards

Binary Expansion

A base 22 representation of an integer using only digits 00 and 11.

11
New cards

Octal Expansion

A base 88 representation of an integer using the digits {0,1,2,3,4,5,6,7}\{0, 1, 2, 3, 4, 5, 6, 7\}.

12
New cards

Hexadecimal Expansion

A base 1616 representation using digits {0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F}\{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F\}, where letters AA through FF represent decimal numbers 1010 through 1515.

13
New cards

Prime

A positive integer p>1p > 1 that is divisible only by 11 and by itself.

14
New cards

Composite

A positive integer greater than 11 that is not a prime.

15
New cards

Fundamental Theorem of Arithmetic

The principle that every positive integer greater than 11 can be written uniquely as a prime or as the product of two or more primes in order of nondecreasing size.

16
New cards

Sieve of Eratosthenes

An algorithm used to find all primes not exceeding a specified positive integer by iteratively deleting multiples of primes starting from 22.

17
New cards

Trial Division

A method of determining if a number nn is prime by checking if it is divisible by any integer ini \le \sqrt{n}.

18
New cards

Mersenne Primes

Prime numbers of the form 2p12^p - 1, where pp is also a prime number.

19
New cards

Greatest Common Divisor (gcd(a,b)\text{gcd}(a, b))

The largest integer dd such that dad | a and dbd | b.

20
New cards

Relatively Prime

Two integers aa and bb are considered relatively prime if gcd(a,b)=1\text{gcd}(a, b) = 1.

21
New cards

Pairwise Relatively Prime

A set of integers a1,a2,,ana_1, a_2, \dots, a_n where gcd(ai,aj)=1\text{gcd}(a_i, a_j) = 1 whenever 1i<jn1 \le i < j \le n.

22
New cards

Least Common Multiple (lcm(a,b)\text{lcm}(a, b))

The smallest positive integer that is divisible by both integers aa and bb.

23
New cards

Euclidean Algorithm

An efficient method for computing the greatest common divisor by repeatedly applying the property gcd(a,b)=gcd(b,a mod b)\text{gcd}(a, b) = \text{gcd}(b, a \text{ mod } b) until the remainder is 00.