Discrete Mathematics I Definitions

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

1/90

flashcard set

Earn XP

Description and Tags

Fall 2025

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

91 Terms

1
New cards

Natural Numbers

"The set of counting numbers. Either N = {1,2,3,...} or N₀ = {0,1,2,3,...}. Instructor specifies the convention."

2
New cards

Rational Number

A number that can be written as a ratio of two integers with a nonzero denominator: q = a/b where a,b ∈ ℤ and b ≠ 0.

3
New cards

a divides b (a | b)

a | b means there exists an integer k such that b = ak. Dividing b by a leaves no remainder.

4
New cards

Even Integer

An integer n is even if n = 2k for some integer k.

5
New cards

Odd Integer

An integer n is odd if n = 2k + 1 for some integer k.

6
New cards

Prime Number

A positive integer p > 1 whose only positive divisors are 1 and itself.

7
New cards

Composite Number

A positive integer n > 1 that has a divisor other than 1 and itself; equivalently, n = ab for integers a,b with 1 < a < n.

8
New cards

Theorem

A mathematical statement that has been proven true using logical reasoning and previously established results such as axioms, definitions, and earlier theorems.

9
New cards

Conditional (if–then) Statement

A logical statement of the form 'if P, then Q'. Written P → Q. It is false only when P is true and Q is false.

10
New cards

Biconditional (iff) Statement

A statement of the form 'P if and only if Q'. Written P Q. It is true exactly when P and Q have the same truth value.

11
New cards

Converse

For a conditional P → Q, the converse is Q → P.

12
New cards

Inverse

For a conditional P → Q, the inverse is ¬P → ¬Q.

13
New cards

Contrapositive

For a conditional P → Q, the contrapositive is ¬Q → ¬P. A conditional and its contrapositive always have the same truth value.

14
New cards

Truth Table

A table listing all possible truth values of the component statements and showing the resulting truth value of a compound statement for each case.

15
New cards

Existential Quantifier (∃)

The logical symbol ∃ meaning 'there exists'. A statement ∃x P(x) asserts that at least one element in the domain satisfies P(x).

16
New cards

Universal Quantifier (∀)

The logical symbol ∀ meaning 'for all'. A statement ∀x P(x) asserts that every element in the domain satisfies P(x).

17
New cards

Direct Proof

A proof method that assumes the hypothesis P of an implication P → Q is true and uses logical reasoning and known facts to show that the conclusion Q must also be true.

18
New cards

Counterexample

A specific example that shows a universally quantified statement is false. To disprove '∀x P(x)', it is enough to find one x for which P(x) is false.

19
New cards

List

An ordered collection of elements where repetition is allowed and position matters; often written using angle brackets or parentheses, such as ⟨a,b,c⟩.

20
New cards

Factorial

For a nonnegative integer n, the factorial n! is the product of all positive integers from 1 to n. Defined as n! = n(n−1)(n−2)…1, with 0! = 1 by convention.

21
New cards

Set

A well-defined collection of distinct objects, called elements or members.

22
New cards

Element

An object that belongs to a set; written x ∈ A to mean x is an element of set A.

23
New cards

Cardinality

The number of elements in a set A, written |A|.

24
New cards

Empty Set

The set with no elements, written ∅ or {}. Its cardinality is 0.

25
New cards

Subset

A set A is a subset of B, written A ⊆ B, if every element of A is also an element of B.

26
New cards

Power Set

The set of all subsets of a set A, including ∅ and A itself; written P(A). If |A| = n, then |P(A)| = 2^n.

27
New cards

Union

The set of elements that are in A or in B (or in both); written A ∪ B.

28
New cards

Disjoint

Two sets A and B are disjoint if their intersection is empty: A ∩ B = ∅.

29
New cards

Pairwise Disjoint

A collection of sets is pairwise disjoint if every two distinct sets in the collection are disjoint from each other.

30
New cards

Set Difference

The set of elements in A that are not in B; written A \ B or A − B.

31
New cards

Symmetric Difference

The set of elements in A or B but not both; written A △ B or (A \ B) ∪ (B \ A).

32
New cards

Complement

Given a universal set U, the complement of A is the set of elements in U that are not in A; written Aᶜ.

33
New cards

Cartesian Product

The set of all ordered pairs (a,b) with a ∈ A and b ∈ B; written A × B.

34
New cards

Relation

A relation from A to B is any subset of the Cartesian product A × B; it pairs elements of A with elements of B.

35
New cards

Function

A relation f from A to B such that every element of A is paired with exactly one element of B; written f: A → B.

36
New cards

Domain

The set of all input values for which a function or relation is defined.

37
New cards

Image

For a function f: A → B, the image of an element a ∈ A is f(a); the image of a set S ⊆ A is {f(x) : x ∈ S}.

38
New cards

Codomain

The set B in a function f: A → B; the set of possible outputs (not necessarily all achieved).

39
New cards

Inverse

For a relation R, the inverse is R⁻¹ = {(b,a) : (a,b) ∈ R}. A function has an inverse only if it is bijective.

40
New cards

Injective (One-to-One)

A function f: A → B is injective if different inputs map to different outputs: f(a₁)=f(a₂) implies a₁=a₂.

41
New cards

Surjective (Onto)

A function f: A → B is surjective if every element of the codomain B is the image of some element of A.

42
New cards

Bijective

A function that is both injective and surjective; equivalently, a function with a two-sided inverse.

43
New cards

Composition

Given functions f: A → B and g: B → C, the composition g∘f is the function from A to C defined by (g∘f)(x) = g(f(x)).

44
New cards

Identity Function

For a set A, the identity function id_A is the function id_A(x) = x for all x ∈ A. It leaves every element unchanged.

45
New cards

Common Divisor

An integer d is a common divisor of a and b if d divides both: d | a and d | b.

46
New cards

Greatest Common Divisor

The greatest common divisor (gcd) of integers a and b is the largest integer d such that d | a and d | b; written gcd(a,b).

47
New cards

Euclid's Algorithm

An efficient method for computing gcd(a,b) using repeated division: gcd(a,b) = gcd(b, a mod b) until the remainder is 0.

48
New cards

Bézout's Identity

For integers a and b, their gcd can be written as a linear combination: gcd(a,b) = ax + by for some integers x and y.

49
New cards

Relatively Prime

Two integers a and b are relatively prime if gcd(a,b) = 1.

50
New cards

Modular Addition

Given integers a and b modulo n, their sum is (a + b) mod n; results are always reduced modulo n.

51
New cards

Modular Subtraction

Given integers a and b modulo n, their difference is (a - b) mod n; results are reduced modulo n.

52
New cards

Modular Multiplication

Given integers a and b modulo n, their product is (a · b) mod n; results are reduced modulo n.

53
New cards

Modular Division

To compute a / b mod n, we multiply a by the modular inverse of b modulo n (only valid if b has an inverse).

54
New cards

Modular Reciprocal

For integer a modulo n, the modular reciprocal (inverse) is an integer x such that a·x ≡ 1 (mod n); it exists exactly when gcd(a,n) = 1.

55
New cards

x ∈ A

x is an element of set A.

56
New cards

x ∉ A

x is not an element of set A.

57
New cards

A ⊆ B

A is a subset of B; every element of A is in B.

58
New cards

A ⊂ B

A is a proper subset of B; A ⊆ B but A ≠ B.

59
New cards

A ⊇ B

A is a superset of B.

60
New cards

A ∪ B

Union: elements in A or B (or both).

61
New cards

A ∩ B

Intersection: elements common to both A and B.

62
New cards

A \ B

Set Difference: elements in A that are not in B.

63
New cards

A △ B

Symmetric difference: elements in exactly one of A or B.

64
New cards

Aᶜ

Complement of A: all elements not in A (relative to a universal set).

65
New cards

P(A)

Power set: the set of all subsets of A.

66
New cards

|A|

Cardinality: the number of elements in A.

67
New cards

A × B

Cartesian product: all ordered pairs (a,b) with a ∈ A and b ∈ B.

68
New cards

(a,b)

An ordered pair with first component a and second component b.

69
New cards

f: A → B

Function f from domain A to codomain B.

70
New cards

f(x)

The image of x under function f.

71
New cards

f⁻¹

Inverse relation (or inverse function if f is bijective).

72
New cards

g ∘ f

Composition: (g ∘ f)(x) = g(f(x)).

73
New cards

id_A

Identity function on A: id_A(x) = x.

74
New cards

R ⊆ A × B

R is a relation from A to B.

75
New cards

Universal quantifier: 'for all'

76
New cards

Existential quantifier: 'there exists'.

77
New cards

¬P

Negation of P.

78
New cards

P ∧ Q

Logical AND

79
New cards

P ∨ Q

Logical OR

80
New cards

P → Q

Conditional: 'if P, then Q'

81
New cards

P Q

Biconditional: 'P if and only if Q'.

82
New cards

P'

Complement of proposition P (alternate notation for ¬P)

83
New cards

a | b

a divides b: there exists k such that b = ak.

84
New cards

gcd(a,b)

Greatest common divisor of a and b.

85
New cards

lcm(a,b)

Least common multiple of a and b.

86
New cards

a ≡ b (mod n)

a is congruent to b modulo n: n divides (a−b).

87
New cards

a mod n

Remainder when a is divided by n.

88
New cards

n!

Factorial: n! = n·(n−1)·...·1, with 0! = 1.

89
New cards

Set of natural numbers.

90
New cards

Set of integers.

91
New cards

Set of rational numbers.