Chapter 4 Quiz (4.1-4.5 + Modular Arithmetic)

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

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

Even Integer

An integer is even if it equals 2 times some integer; that is, n = 2k for some integer k.

2
New cards

Odd Integer

An integer is odd if it equals 2 times some integer plus 1; that is, n = 2k + 1 for some integer k.

3
New cards

Prime Number

An integer greater than 1 that has no positive divisors other than 1 and itself.

4
New cards

Composite Number

An integer greater than 1 that is not prime.

5
New cards

Rational Number

A number that can be written as a fraction a/b where a and b are integers and b ≠ 0.

6
New cards

Divides (| symbol)

An integer a divides b (written a | b) if b = ak for some integer k.

7
New cards

Counterexample

A specific example that shows a general statement is false.

8
New cards

Direct Proof

A proof method that starts from known facts and uses logical steps to reach a conclusion.

9
New cards

Quotient-Remainder Theorem

For any integer n and positive integer d, there exist unique integers q and r such that n = dq + r and 0 ≤ r < d.

10
New cards

mod

n mod d is the remainder when n is divided by d.

11
New cards

div

n div d is the integer part of n divided by d; that is, the quotient without the remainder.

12
New cards

Congruence (mod)

a ≡ b (mod d) means a and b have the same remainder when divided by d, or d divides (a - b).

13
New cards

Modular Addition

(a + b) mod d = ((a mod d) + (b mod d)) mod d.

14
New cards

Modular Multiplication

(a * b) mod d = ((a mod d) * (b mod d)) mod d.

15
New cards

Modular Exponentiation

a^k mod d means the remainder when a raised to the power k is divided by d. Use repeated squaring for fast computation.

16
New cards

Parity

The property of being even or odd.