Least Upper Bound of in a Divisibility Poset
Consider the poset
ordered by divisibility, written as . Thus, for ,
The question asks for the least upper bound of .
In a divisibility poset, an upper bound of must be divisible by both and . The relevant candidates are and . Since
the element is below in the poset and is therefore the least upper bound.
Hence,
Footnotes
-
Answer these questions for the poset - Identifies and as the upper bounds of in the given poset. ↩
-
Answer these questions for the poset - Gives as the least upper bound of . ↩
Core vocabulary
- Poset
- Divisibility order
- Upper bound
- Least upper bound
- Join
For the relation :
Therefore, “larger” in the poset does not necessarily mean numerically larger in the usual sense; it means “is a multiple of.” In this setting, the join of two integers, when it exists in the poset, is related to their least common multiple.
Footnotes
Finding the Least Upper Bound
- 1Step 1
The symbol means divisibility. Thus, exactly when divides .
- 2Step 2
An upper bound of must satisfy and .
- 3Step 3
Among , the elements divisible by both and are and .
- 4Step 4
Because , we have in the divisibility order.
- 5Step 5
The least upper bound is the smaller element under the poset order, namely .
- 6Step 6
Therefore, the correct choice is (iii) .
Direct verification
Check each candidate:
| Candidate | Is it divisible by ? | Is it divisible by ? | Upper bound of ? |
|---|---|---|---|
| Yes | No | No | |
| No | Yes | No | |
| Yes | Yes | Yes | |
| Yes | Yes | Yes |
Thus, the set of upper bounds is
Now compare these upper bounds using divisibility:
Consequently, is the least element of the set of upper bounds under .
Hasse-diagram reasoning
The relevant divisibility relationships are
and
The Hasse diagram can be represented schematically as:
Only covering relations are normally displayed in a Hasse diagram; transitive relations such as are understood from the diagram.
Starting from both and , the first common element reached above them is . Although is also above both, it is not the least such element because .
Footnotes
-
Posets and their Hasse diagrams - Defines upper bounds, least upper bounds, and Hasse diagrams. ↩
Fast method
Compute the least common multiple first: . Then check that belongs to the given poset. Since it does, the least upper bound is .
Why the other options are incorrect
Option (i):
Although is one of the elements under consideration, it is not divisible by :
Therefore, is not an upper bound of .
Option (ii):
Similarly, is not divisible by :
Therefore, is not an upper bound.
Option (iii):
Both divisibility conditions hold:
Thus, is an upper bound. It is also below every other upper bound, because the only other upper bound is and
Therefore, is the least upper bound.
Option (iv):
The element is an upper bound because
However, it is not the least upper bound, since is also an upper bound and
Common Conceptual Errors
Candidate Classification
Candidates that satisfy both divisibility requirements are upper bounds.
General principle
For positive integers ordered by divisibility, a common upper bound of and is a common multiple of and . If the least common multiple belongs to the selected poset, then
For this problem,
so
Because , the join exists in this poset and equals .
The distinction between the ordinary least common multiple and the poset join is important: if were not in the given subset, one would need to inspect the available common multiples and determine whether a least one exists.
Footnotes
-
Greatest common divisor - Describes least common multiples as joins in divisibility-ordered structures. ↩
Do not select 45 merely because it is a common multiple
satisfies the upper-bound condition, but is a smaller upper bound in the divisibility order because . The least upper bound is therefore , not .
Divisibility Poset Review
Exam-Ready Solution
- 1Step 1
with order relation .
- 2Step 2
The elements divisible by both and are and .
- 3Step 3
Since , we have .
- 4Step 4
Therefore, . The correct answer is (iii) .
Knowledge Check
In the divisibility poset , which elements are upper bounds of ?
Explore Related Topics
Functional-Dependency Analysis and Normalization of R(A, B, C, D, E, F)
Deadlock-Free Allocation of Six Tape Drives
Lexical Analysis Token Counting: `while(count<=10) count = count + 1;`
The course explains how a lexical analyzer tokenizes the C statement while(count<=10) count = count + 1; and why the standard exam answer is 11 tokens.
- Keywords, identifiers, literals, operators, and delimiters each count as one token; whitespace is ignored.
<=is recognized as a single relational‑operator token due to the longest‑match rule.- The full lexical split shows 12 visible symbols, but typical MCQ conventions omit one delimiter, giving 11 tokens.
- Understanding token categories helps avoid common exam traps such as counting delimiters incorrectly.