Exam questions Flashcards

1
Q

poset

A

Poset: A partially ordered set (poset) is a set 𝑋 equipped with a binary relation
⪯ that is reflexive, antisymmetric, and transitive.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Hasse diagram

A

A graphical representation of a finite poset, where elements are represented by vertices, and the order relation is represented by edges, without transitive edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Immediate predecessor/cover relation

A

In a poset (𝑋,⪯), x is an immediate predecessor of y if x≺y and there is no z such that
x≺z≺y.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Linear order

A

A poset where every pair of elements is comparable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Lexicographic order

A

An order defined on the Cartesian product of ordered sets, extending the order of each set to the product.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Erdős–Szekeres theorem

A

For any sequence of n^2+1 distinct real numbers, there is a subsequence of n+1 numbers that is either strictly increasing or strictly decreasing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Smallest/minimum element

A

An element a in a poset such that a⪯x for all x in the poset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Minimal element

A

An element
a in a poset such that there is no x ≠a with x⪯a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Linear extension

A

A linear order that contains the original poset order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Show that every finite poset has a linear extension.

A

Proof: Using the topological sorting algorithm, we can extend any finite poset to a linear order by iteratively removing minimal elements and maintaining the order constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Show that every finite poset has a minimal element.

A

Proof: In a finite poset, consider any chain of elements. Since the set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Show that every finite poset has an embedding into (2^𝑋,⊆)

A

Using the concept of down-sets, we can map each element of the poset to a subset of X, preserving the order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Chains

A

A subset of a poset where every two elements are comparable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Anti-chains

A

A subset of a poset where no two elements are comparable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

α(P)

A

The size of the largest anti-chain in the poset.

17
Q

ω(P)

A

The size of the largest chain in the poset.

18
Q

Prove that 𝛼⋅𝜔≥∣𝑋∣

A

Using Dilworth’s theorem, which states that in any finite poset, the size of the largest anti-chain is equal to the minimum number of chains needed to cover the poset.

19
Q

Letn=∣X∣ and m=∣Y∣. How many functions are there from X to Y?

A

Number of functions from m^n.

20
Q

Letn=∣X∣ and m=∣Y∣. How many functions are there from X to Y? proof

A

Each of the n elements in X has m choices in Y. Therefore, the total number of functions is m^n.

21
Q

Use the last question to show that there are 2^n subsets of X.

A

Each element can either be included or excluded, giving 2 choices per element. For n elements, this results in 2^n subsets.

22
Q
A
23
Q

Show that X has 2^(n-1) subsets of odd size.

A

Each subset either includes or excludes the new element, so half of the 2^n subsets have an odd size, which is 2^(n-1).

24
Q

Let
n=∣X∣ and m=∣Y∣. How many injective functions are there from X to Y?

A

There are m(m−1)(m−2)…(m−n+1) injective functions.

25
Q

Let
n=∣X∣ and m=∣Y∣. How many injective functions are there from X to Y? proof

A

The first element in
X has m choices, the second has m−1 choices, continuing until the last element has m−n+1 choices.

26
Q

Permutation

A

Permutation: A permutation of a set is a bijection from the set to itself.

27
Q

One-row notation

A

A permutation can be represented by listing the images of each element in order.

28
Q

Cycle in a permutation

A

A cycle is a subset of the permutation where elements are cyclically permuted.

29
Q

Show that the number of subsets of size 𝑘 of X equals (n k)

A

The number of ways to choose k elements from n elements is (𝑛𝑘), which counts the number of k-element subsets of X.

30
Q

Let (𝑖_1,…,𝑖_𝑟)∈𝑁^𝑟 be integers adding to n. How many such tuples of integers are there?

A

The number of ways to partition n into r parts is
(
n+r−1
r−1
).

31
Q

Let (𝑖_1,…,𝑖_𝑟)∈𝑁^𝑟 be integers adding to n. How many such tuples of integers are there? proof

A

This can be shown using the stars and bars method.

32
Q

Describe Pascal’s triangle.

A

A triangular array where each entry is the sum of the two directly above it.

33
Q

State the Binomial Theorem.

A

(x+y)^n=∑ ( n choose k )x^(n−k)y^k

34
Q

Rearranging “MISSISSIPPI” count number of ways to do it

A

Using multinomial coefficients, the number of ways is
(11!)/(4!4!2!1!).

35
Q
A
36
Q
A
37
Q
A
38
Q
A
39
Q
A