Discrete Mathematics Flashcards: Functions, Induction, and Relations

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

1/22

flashcard set

Earn XP

Description and Tags

Flashcards covering key definitions and theorems from days 13 through 22 of Math 199, including function types, the Principle of Mathematical Induction, and equivalence relations.

Last updated 5:34 PM on 6/6/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

Injective (One-to-One)

A function f:XYf : X \rightarrow Y is injective if and only if x1,x2X\forall x_1, x_2 \in X, if f(x1)=f(x2)f(x_1) = f(x_2) then x1=x2x_1 = x_2. Only one element of the domain maps to each element of the image.

2
New cards

Surjective (Onto)

A function f:XYf : X \rightarrow Y is surjective if and only if yY\forall y \in Y, xX\exists x \in X such that f(x)=yf(x) = y. Every element in the codomain is reached by the function.

3
New cards

Bijective

A function that is both injective (one-to-one) and surjective (onto); also referred to as a one-to-one correspondence.

4
New cards

Invertible

A function f:XYf : X \rightarrow Y is invertible if and only if there exists a function g:YXg : Y \rightarrow X such that gf=IXg \circ f = I_X (xX,g(f(x))=x\forall x \in X, g(f(x)) = x) and fg=IYf \circ g = I_Y (yY,f(g(y))=y\forall y \in Y, f(g(y)) = y). In this case, gg is called the inverse of ff.

5
New cards

The Invertibility Theorem

A theorem stating that a function f:XYf : X \rightarrow Y is invertible if and only if ff is a bijection.

6
New cards

Direct Image

Let f:XYf : X \rightarrow Y be a function and AXA \subseteq X. The direct image of AA under ff, denoted f(A)f(A), is the subset of YY defined by f(A)={f(x)xA}f(A) = \{f(x) \mid x \in A\}. Note that yf(A)    xAy \in f(A) \iff \exists x \in A such that f(x)=yf(x) = y.

7
New cards

Inverse Image (Preimage)

Let f:XYf : X \rightarrow Y be a function and BYB \subseteq Y. The inverse image of BB under ff, denoted f1(B)f^{-1}(B), is the subset of XX defined by f1(B)={xXf(x)B}f^{-1}(B) = \{x \in X \mid f(x) \in B\}. This set exists regardless of whether ff is invertible.

8
New cards

Induced Function

Starting with a function f:XYf : X \rightarrow Y, the induced function ind(f):P(X)P(Y)\mathbf{ind}(f) : P(X) \rightarrow P(Y) is defined by (ind(f))(A)=f(A)(\mathbf{ind}(f))(A) = f(A), where it takes a subset of XX as input and returns its direct image in YY.

9
New cards

Principle of Mathematical Induction (PMI - Version a)

Let P(n)P(n) be a statement about a natural number variable nn. If (i) P(1)P(1) is true, and (ii) k1,P(k) is true    P(k+1) is true\forall k \ge 1, P(k) \text{ is true} \implies P(k + 1) \text{ is true}, then nN,P(n)\forall n \in \mathbb{N}, P(n) is true.

10
New cards

Least Number Principle (LNP)

Also called the Well-Ordering Principle (WOP), it states that every nonempty subset of N\mathbb{N} has a smallest element. It is equivalent to the Principle of Mathematical Induction.

11
New cards

Base Step

The first step of a proof by induction where one shows that the statement P(n)P(n) holds for the initial value (usually n=1n = 1 or n=n0n = n_0).

12
New cards

Inductive Hypothesis

In the context of a proof by induction, this is the assumption that the statement P(n)P(n) is true for some arbitrary integer kk.

13
New cards

Inductive Step

The part of an induction proof where one shows that if the statement holds for kk, then it must also hold for k+1k + 1.

14
New cards

Strong Induction

A form of induction where the inductive hypothesis assumes that the statement P(i)P(i) is true for all integers ii such that n0ikn_0 \le i \le k in order to prove P(k+1)P(k + 1). This is useful when the recurrence depends on multiple previous terms.

15
New cards

Relation (on a set X)

A subset RR of the Cartesian product X×XX \times X. If (a,b)R(a, b) \in R, we say element aa is related to bb, often written as aRbaRb, aba \sim b, or ab(modR)a \equiv b \pmod R.

16
New cards

Reflexive Relation

A relation RR on a set XX is reflexive if xX,(x,x)R\forall x \in X, (x, x) \in R. Every element is related to itself.

17
New cards

Symmetric Relation

A relation RR on a set XX is symmetric if (x,y)R    (y,x)R(x, y) \in R \implies (y, x) \in R. If xx is related to yy, then yy is related to xx.

18
New cards

Transitive Relation

A relation RR on a set XX is transitive if (x,y)R(x, y) \in R and (y,z)R    (x,z)R(y, z) \in R \implies (x, z) \in R.

19
New cards

Equivalence Relation

A relation on a set XX that is simultaneously reflexive, symmetric, and transitive.

20
New cards

Equivalence Class

Given an equivalence relation RR on XX, the equivalence class of an element xXx \in X, denoted [x][x], is the set of all elements in XX related to xx, i.e., [x]={yX(x,y)R}[x] = \{y \in X \mid (x, y) \in R\}. Every (x,y)R    [x]=[y](x, y) \in R \iff [x] = [y].

21
New cards

Quotient of X by R (X/R)

The set of all distinct equivalence classes produced by an equivalence relation RR on a set XX, defined as X/R={[x]xX}X/R = \{[x] \mid x \in X\}. It is a subset of the power set P(X)P(X).

22
New cards

Canonical Mapping

Also called the natural projection, it is the function f:XX/Rf : X \rightarrow X/R defined by f(x)=[x]f(x) = [x], which maps each element to its corresponding equivalence class. This function is always surjective.

23
New cards

Partition

A collection PP of nonempty subsets (cells) of XX such that every element of XX belongs to exactly one cell in PP. Formally: (1) xX,AP s.t. xA\forall x \in X, \exists A \in P \text{ s.t. } x \in A and (2) A,BP,AB    AB=\forall A, B \in P, A \neq B \implies A \cap B = \emptyset.