Abstract
In this article, a correspondence between some important classes of numerical semigroups and well-known families of bipartite graphs has been established. Also, it has been demonstrated that, if is the multiplicity of a numerical semigroup , then the diameter and the girth of bipartite gap poset graphs are bounded by the numbers and , respectively. Moreover, the Python code to compute the diameter and girth of gap poset graphs has been implemented.
Keywords:
elementary numerical semigroup; partial order; bipartite graph; connected graph; diameter; girth MSC:
05C25; 06A11; 11D72
1. Introduction and Preliminaries
Algebraic graph theory is an interrelated research field that explores the fundamental relationships between algebra and graph theory [1,2]. It focuses on how algebraic structures such as groups, rings, and semigroups can be viewed and explored by using graphs, allowing graph-theoretic methods to expose algebraic aspects and vice versa. In 1878, Cayley [3] laid the foundation of this field by introducing Cayley graphs to represent groups graphically, offering visual and structural insight into group operations and symmetries. Later, in 1988, Beck [4] made a significant contribution to this field by introducing the concept of zero-divisor graphs for commutative rings. In this construction, the vertex set consists of non-zero zero-divisors of the ring, and two unique members are neighboring if their product is zero. This graphical form has been effective for understanding ring-theoretic characteristics like annihilators, ideals, and prime elements. Following Beck’s work, numerous authors expanded and generalized this concept. Anderson and Livingston [5] developed the zero-divisor graph by focusing primarily on non-zero zero-divisors, while Anderson and Badawi [6,7] investigated modifications such as entire graphs and ideal-based graphs, providing more information about the structure of commutative rings. Recently, different mathematicians [8,9,10,11,12] have assigned graphs to numerical semigroups and studied some properties of the graphs.
Graphs are widely used across numerous disciplines, including computer science, biology, communication networks, and operations research, due to their ability to abstractly represent complex systems, such as transportation routes, social interactions, molecular structures, and data networks [13,14]. In particular, bipartite graphs based on algebraic concepts are important for expressing interactions in chemical reaction networks and metabolic pathways [15]. This collaboration not only enriches the theoretical foundations of both fields but also helps to solve real-world problems using a combined algebraic-combinatorial perspective.
A graph consists of a finite set of vertices V and a set of edges E, where each edge connects a pair of vertices. The neighborhood of a vertex v in a simple undirected graph , denoted by , is the set of all the vertices adjacent to v, and its cardinality is known as a degree of v, denoted by . The diameter of a graph is the greatest distance between any pair of vertices in the graph, denoted by . A cycle is a closed path with no repeated edges or internal vertices, and the girth of a graph is defined as the length of its shortest cycle, represented by . A path graph is a simple linear graph where each internal vertex is adjacent to exactly two others, and the endpoints have a degree 1. A graph is said to be complete if every pair of distinct vertices is joined by an edge. A bipartite graph admits a vertex partition into two disjoint sets such that all the edges connect vertices across the sets, with no edges within a set. It is said to be balanced if both parts have equal cardinality. A regular graph is one in which all the vertices have the same degree, reflecting a uniform local structure.
In algebraic and applied contexts, graph invariants such as diameter and girth play pivotal roles in understanding both abstract structure and practical behavior. Within the algebraic framework of numerical semigroups, a small diameter in the associated gap poset graph reflects tightly interrelated gaps, often corresponding to semigroups with smaller multiplicity or denser Apéry sets. It is a property that directly relates to efficiency and robustness in real-world networks. For example, in communication networks, diameter is used to evaluate the Diameter-Constrained Reliability (DCR), which measures the probability that two nodes remain connected by a path not exceeding a prescribed length bound. This has practical implications in designing networks with bounded delays and fault tolerance, where minimizing diameter ensures faster data transmission and resilience to failures. Research such as [16,17,18,19,20,21] has highlighted that computing DCR is generally NP-hard, but exploiting diameter-based properties allows identification of specific topologies where reliability can be computed in polynomial time. Thus, the study of graph diameter not only advances algebraic graph theory but also plays a key role in optimizing communication systems, transportation routes, and distributed computing architectures. Girth reveals redundancy or minimal algebraic relations among gaps. A small girth may indicate fundamental additive relations in the gap structure. Beyond theory, these invariants are widely used in network reliability and optimization. Networks with low diameter ensure high communication efficiency and resilience, while high girth avoids short feedback loops that can destabilize systems [22].
A numerical semigroup is a subset that is closed under addition, contains the zero element, and has a finite complement in . The elements of are called gaps, and their total number is the genus of the semigroup. The Frobenius number is the largest integer not in , and the multiplicity is the smallest non-zero element of , denoted by . Given a nonempty set , the submonoid generated by A, denoted , is a numerical semigroup if and only if . Every numerical semigroup has a unique minimal system of generators, and the number of these generators defines the embedding dimension . The Frobenius problem [23,24] explores formulas for calculating the Frobenius number and genus of a numerical semigroup. Sylvester solved this problem in [25] for numerical semigroups with embedding dimension two. Because of their applications in coding theory, algebraic geometry, and factorization theory, numerical semigroups have received much attention in algebraic and combinatorial research over the last few decades. Several structural features have been investigated, including symmetric, pseudo-symmetric, and nearly symmetric semigroups [26]. The link between numerical semigroups and Apéry sets, Kunz coordinates, and their representation through combinatorial objects such as trees and posets has been widely studied in the literature [27,28], providing powerful tools for categorization and computing.
Partially ordered sets (posets) are mathematical structures composed of elements connected by a binary relation that is reflexive, antisymmetric, and transitive. This framework allows for the representation of relationships where not all the elements are comparable, making it useful in various fields, including computer science, combinatorics, and chemistry. Wachs [29] provided a comprehensive overview of poset theory and its connections with topology, particularly in understanding the structure of order complexes. Felsner et al. [30] proposed the concept of poset dimension, which has been further examined in following surveys, showing how posets can be represented as linear-order intersections and how this relates to computing complexity. De Loof et al. [31] demonstrated that posets may be utilized for multi-criteria ranking, which is useful in decision-making systems like chemical assessments and preference models. Posets also have a role in coding theory as they are utilized to define novel distance measures for error correction, as explained in Springer’s work on poset metrics. Additionally, posets have been extensively studied in the context of algebraic structures such as distributive lattices and Boolean algebras, leading to significant results in universal algebra and logic [32].
Posets are commonly formed in algebraic combinatorics from monomial ideals, numerical semigroups, and group actions, and they provide a convenient framework for defining simplicial complexes, resolving homological dimensions, and storing algebraic constraints in graphical form.
Several computational tools exist for the study of numerical semigroups, most notably the numericalsgps package in the GAP system, which provides a wide range of algebraic and combinatorial functionalities. While these packages are powerful, they often require familiarity with specialized algebraic software and may not provide immediate visualization features for graph structures. Our approach differs in that it leverages Python version 3.13.5, a widely accessible programming language, together with graph-theoretic libraries such as NetworkX and visualization packages like Matplotlib version 3.5. This makes it possible to construct, analyze, and visualize gap poset graphs in an integrated manner. Furthermore, our method is easily extensible to compute new invariants that are not yet implemented in standard packages. Thus, while the existing software emphasizes algebraic operations on semigroups, our contribution lies in providing a flexible user-friendly framework that directly bridges numerical semigroup theory with graph theory and visualization.
The remainder of this paper is organized as follows. In Section 2, we determine the conditions under which bipartite gap poset graphs are connected or disconnected. In Section 3, we characterize the bipartite gap poset graphs into different well-known families of graphs. In Section 4, we provide a bound on the diameter and a conjecture on the upper bound of the girth of a bipartite gap poset graph. In Section 5, we present the algorithms for constructing gap poset graphs, along with procedures to compute key graph invariants, such as diameter and girth. This paper concludes in Section 6.
2. Some Results on Connectedness of Bipartite Gap Poset Graphs
Let , where is the set of gaps of numerical semigroup , and then if and only if . Evidently, is a poset. An undirected simple graph is a graph such that
and
A numerical semigroup is elementry if and only if . This implies that gap set of is of the form , where . It is demonstrated in [33] (see Theorem 2) that, if is empty, then is an edgeless graph. In this paper, we consider is always non-empty, and therefore . The following theorem demonstrates correspondence between the elementary numerical semigroups and the bipartite gap poset graphs.
Theorem 1.
A numerical semigroup is elementary if and only if the gap poset graph is a bipartite graph.
Proof.
This implication follows from Lemma of [33].
Suppose is a bipartite graph but is not an elementary numerical semigroup. Then, from Theorem of [33], it follows that girth of is 3, which is not possible as is a bipartite graph. Hence, is an elementary numerical semigroup. □
In the rest of paper, we denote a bipartite gap poset graph by . The following lemma provides us necessary and sufficient conditions for the connectedness of in terms of the Frobenius number of .
Lemma 1.
Let be a bipartite gap poset graph and , where and . Then, the following statements hold:
- (1)
- If is connected, then .
- (2)
- If and for every , , then is connected.
Proof.
(1) If , then for some . Note that
as min and max . This implies has no edge with any vertex of . This is a contradiction as is a connected graph; therefore, the Frobenius number of must be .
(2) We need to show that there is path between every two distinct vertices . For this, we have the following cases:
- Case-1: If , then there exist some such that is a path between u and v.
- Case-2: Let , and then we may assume that and , where with . This implies there exist such that has an edge with and has an edge with since . Consider for some . This implies a path between u and v is .
- Case-3: Let and . Assume that for some . If , then u and v are connected by an edge, so we have . Now, if , then there exist some for some such that . □
If , then may be disconnected (see the following example).
Example 1.
Let , and then gap poset of is The corresponding graph is given in Figure 1. Clearly, , but is a disconnected graph.
Figure 1.
The graph corresponding to .
3. Characterization of Bipartite Gap Poset Graphs of Minimum and Maximum Orders
We start this section by characterizing bipartite gap poset graphs of minimum order.
Proposition 1.
Let be a bipartite gap poset graph of order and , and then is connected.
Proof.
We have . This implies is symmetric; then, from Proposition 2.2 of [33], it follows that is a connected graph. □
Proposition 2.
Let be a disconnected bipartite gap poset graph of order , and then has disconnected components.
Proof.
Since is a disconnected bipartite poset graph of order , therefore we have
where . We may assume that for some . Choose such that , and then . This yields for every value of x. So, number of vertices for that are not connected with the vertex is . This implies total number of disconnected components of is . □
Theorem 2.
Let be a bipartite graph of order . Then, the following statements are equivalent:
- (1)
- is an interval numerical semigroup of embedding dimension .
- (2)
- is a symmetric numerical semigroup.
- (3)
- The graph is isomorphic to the star graph .
Proof.
Since is a bipartite graph of order , therefore we have
where .
- This is obvious.
- If S is symmetric, then Proposition 1 provides , a connected graph, and gr. This implies every vertex for has an edge with the vertex . As is a bipartite graph, therefore gr cannot be 3, so .
- This is straightforward. □
Theorem 3.
The graph is a complete bipartite graph if and only if is a star graph.
Proof.
If is a complete bipartite graph, then
where . If possible, , and then there exist for some . Note that
This is a contradiction, so and therefore is a star graph. The converse implication is obvious. □
Theorem 4.
Let be a bipartite graph of order . Then, the following statements are equivalent:
- (1)
- is a numerical semigroup of the form .
- (2)
- is a pseudo-symmetric numerical semigroup.
- (3)
- The graph is isomorphic to the graph .
Proof.
Since is a bipartite graph of order , therefore we have
where .
- This is obvious.
- If S is pseudo-symmetric, then
- This implies , and therefore . Theorem of [33] and Proposition 2 indicate that has two disconnected components and isomorphic to .
- This is straightforward. □
Theorem 5.
Let be a bipartite gap poset graph. Then, the following statements are equivalent:
- (1)
- .
- (2)
- is a graph isomorphic to .
- (3)
- is a 1-degree regular bipartite graph.
- (4)
- is a balanced graph.
Proof.
We may assume that bipartition for is and . Note that . This implies, for every , there is an edge between and . If , then . Also, if , then . Both cases imply there is no edge between and . This provides deg for every x, and therefore is isomorphic to -copies of path graph .
- The remaining implications are trivial. □
4. Diameter and Girth of Bipartite Gap Poset Graphs
In this section, we provide some bounds for the diameter and the girth of bipartite gap poset graphs .
Lemma 2.
Let order of be . If , then is disconnected.
Proof.
Clearly, two vertices and have an edge only if for some . This implies deg, for every . Since , then
and
This provides
This implies is disconnected. □
Theorem 6.
Let order of be . Then, if and only if .
Proof.
If , then gap poset for is
Note that and , while , for and , for . This implies deg deg. Also, for each and , if and only if either or . This implies
Consequently, we obtain the required result.
- This follows from Lemma 2. □
Conjecture 1.
Let be a bipartite gap poset graph. If is the multiplicity of numerical semigroup , then diam.
Now, we propose the following conjecture for the girth of bipartite gap poset graphs.
Conjecture 2.
Let be a connected bipartite gap poset graph containing a finite cycle. If is the multiplicity of numerical semigroup , then one of the following statements hold:
- (1)
- If is odd, then .
- (2)
- If is even, then .
In the following results, we prove this conjecture for connected bipartite gap poset graphs of order .
Proposition 3.
Let be a connected bipartite gap poset graph of order containing a finite cycle, and then where is an odd number.
Proof.
First of all, we show that there is some such that contains a cycle of length . For this, we consider
Note that two vertices are connected if and only if Since and graph is connected, then
For each , we have
This implies , and This implies the total number of pendent vertices of is
Clearly, , but it is not part of any cycle. Thus, only vertices are part of a cycle. The above discussion implies is a graph as in the Figure 2.
Figure 2.
The graph corresponding to .
Now, we have to show that, for any , graph does not contain a cycle of length greater than . For this, we take where and . Since
therefore
Also, deg since an element has an edge if it satisfies the following condition:
Note that
This implies the total number of pendent vertices of is
and
This indicates that the number of vertices with degree greater than 1 is less than . This implies cannot contain a cycle of length greater than .
- If and then
- So,
- This implies is either a path or disconnected graph, which is not possible.
- If and , then there exists a cycle
- Consequently, there is no cycle of length greater than .
- If then there exists a cycle
- This implies there is no cycle of length greater than .□
Proposition 4.
Let be a connected bipartite gap poset graph of order containing a finite cycle, and then where is an even number.
Proof.
Consider and then for
the graph contains a cycle of length 6 given as follows
Now, we have to show that, for any , graph does not contain a cycle of length greater than 6.
- If , then there is a cycle of length 6 in , given as follows
- If thenThis implies the corresponding graph is disconnected.
- If then the following cycle is contained in the graph :
- If then the graph contains a cycle
Consequently, we obtain gr( □
5. Algorithms and Python-Based Illustrations
In this section, we propose the algorithms and their Python implementations, followed by illustrative examples, as well as their application in chemical reaction networks.
Time complexity and space complexity of Algorithm 1 are quadratic and equal to , , respectively, where K is the number of minimal generators of the numerical semigroup and M is computed upper bound. For two generators a and b, , and for more than two generators .
| Algorithm 1 Construction of Gap Poset Graph of a Numerical Semigroup |
|
Time complexity is cubic , and space complexity is quadratic of Algorithm 2, where K is the number of minimal generators of numerical semigroups and M is computed upper bound. For two generators a and b, , and for more than two generators . To assist researchers and support the validation and exploration of results in the study of numerical semigroups, we developed a Python-based tool that allows users to construct gap poset graphs derived from a given numerical semigroup . The tool provides functionality to compute important graph invariants, such as the diameter and girth of the resulting gap poset graphs. The tool can be accessed through the following link: https://gap-poset-graph-analyzer.onrender.com/ (accessed on 22 July 2025).
| Algorithm 2 Compute the Diameter and the Girth of Gap Poset Graph |
|
Example 2.
Let , and then we can use the following Python code to calculate the gap poset graph and its diameter and girth (see Listing 1).
As illustrated in Figure 3, the ordered set of nodes forms the shortest cycle in the graph. Since each pair of consecutively listed nodes is connected by an edge, this implies shortest cycle has length 12, which establishes the girth of as 12. Furthermore, the largest distance between any two vertices occurs between nodes 14 and 10, yielding graph of diameter 9.
| Listing 1. Python console output. |
![]() |
Figure 3.
Gap poset graph for numerical semigroup .
Suppose a synthetic chemist needs to transform an initial molecular state (a short oligomer or intermediate) into a target state (a longer oligomer or final product) by a sequence of elementary reactions. Each elementary reaction can change molecular size by a quantity belonging to a fixed set of allowed step sizes (for instance, additions of building blocks of sizes given by available reagents). We model the allowed step sizes by gaps of numerical semigroup such that nodes represent molecular species (substrates, intermediate, and product) and edges correspond to stoichiometrically possible reaction steps. The gap poset graph indicates hypothetically how many one-step reactions take place (i.e., direct edge between vertices) and two-step reactions (i.e., there is a vertex between two independent vertices that link with both of them) and so on. Diameter and girth of gap poset graphs provide information about how long any synthesis path can be and on the minimal length of possible cycles, which helps chemists and engineers to estimate worst-case synthesis depth and detect when a proposed reagent set is intrinsically inefficient. Also, it helps us in energy minimization, yield optimization, selection of catalyst, and alternative reagents.
Example 3.
Let , and then we can use the following Python code to compute the gap poset graph and its diameter and girth (see Listing 2).
| Listing 2. Python console output. |
![]() |
As illustrated in Figure 4, the ordered set of nodes forms the shortest cycle in the graph. Since each pair of consecutively listed nodes is connected by an edge, this implies shortest cycle has length 4, which establishes the girth of as 4. Furthermore, the largest distance between any two vertices occurs between nodes 7 and 9, yielding graph has diameter
Figure 4.
Gap poset graph for .
6. Conclusions
In this article, we investigated various structural properties of bipartite gap poset graphs associated with numerical semigroups. In Section 2, we determined the specific conditions under which they are connected or disconnected, providing insight into how the arrangement of gaps affects the overall structure. In Section 3, we concentrated on the characterization of bipartite gap poset graphs, in which we investigated how various configurations corresponded to different well-known graph types, such as balanced, path, and star. In Section 4, we provided a bound on the diameter of bipartite gap poset graphs. Additionally, we provided a conjecture on the upper bound of the girth of bipartite gap poset graphs. These findings help to deepen our understanding of the interaction between the additive structure of numerical semigroups and the combinatorial features of their related graphs, as well as open up new possibilities for research in algebraic graph theory. In Section 5, we presented the algorithms for constructing gap poset graphs, along with procedures to compute key graph invariants such as diameter and girth. Additionally, this section includes illustrative examples that demonstrate the practical application and effectiveness of the proposed methods.
The future extension is to investigate gap poset graphs beyond the bipartite case, exploring richer families of numerical semigroups and the new structural patterns they generate. Furthermore, studying additional graph invariants, including the chromatic number, domination number, and metric dimension of these graphs, would provide deeper insights into their structural and combinatorial properties.
Author Contributions
Conceptualization, M.M., S.S.A. and K.M.; Methodology, M.A.B. and A.S.A.; Software, K.M.; Formal analysis, M.M. and S.S.A.; Investigation, M.A.B., A.S.A. and K.M.; Writing—original draft, M.M. and A.S.A.; Writing—review & editing, M.A.B. and S.S.A.; Visualization, K.M.; Supervision, M.A.B. and S.S.A.; Project administration, A.S.A.; Funding acquisition, A.S.A. All authors have read and agreed to the published version of the manuscript.
Funding
The study was funded by Princess Nourah bint Abdulrahman University in Riyadh, Saudi Arabia, under Researchers Supporting Project Number (PNURSP2025R231). The authors would like to express their gratitude to the university for this support.
Data Availability Statement
Data is contained within the article.
Acknowledgments
The study was funded by Princess Nourah bint Abdulrahman University in Riyadh, Saudi Arabia, under Researchers Supporting Project Number (PNURSP2025R231). The authors would like to express their gratitude to the university for this support.
Conflicts of Interest
The authors declare no conflicts of interest.
References
- Cameron, P.J. What can graphs and algebraic structures say to each other? AKCE Int. J. Graphs Comb. 2024, 21, 249–254. [Google Scholar] [CrossRef]
- Easttom, C. On the application of algebraic graph theory to modeling network intrusions. In Proceedings of the 2020 10th Annual Computing and Communication Workshop and Conference (CCWC), Las Vegas, NV, USA, 6–8 January 2020. [Google Scholar]
- Cayley, P. Desiderata and suggestions: No. 2. The Theory of groups: Graphical representation. Am. J. Math. 1878, 1, 174–176. [Google Scholar] [CrossRef]
- Beck, I. Coloring of commutative rings. J. Algebra 1988, 116, 208–226. [Google Scholar] [CrossRef]
- Anderson, D.F.; Livingston, P.S. The zero-divisor graph of a commutative ring. J. Algebra 1999, 217, 434–447. [Google Scholar] [CrossRef]
- Anderson, D.F.; Badawi, A. The total graph of a commutative ring. J. Algebra 2008, 320, 2706–2719. [Google Scholar] [CrossRef]
- Bennis, D.; Mikram, J.; Taraza, F. On the extended zero divisor graph of commutative rings. Turk. J. Math. 2016, 40, 376–388. [Google Scholar] [CrossRef]
- Binyamin, M.A.; Siddiqui, H.M.A.; Khan, N.M.; Aslam, A.; Rao, Y. Characterization of graphs associated with numerical semigroups. Mathematics 2019, 7, 557. [Google Scholar] [CrossRef]
- Alali, A.S.; Binyamin, M.A.; Mehtab, M. A conjecture for the Clique number of graphs associated with symmetric numerical semigroups of arbitrary multiplicity and embedding dimension. Symmetry 2024, 16, 854. [Google Scholar] [CrossRef]
- Xu, P.; Binyamin, M.A.; Aslam, A.; Ali, W.; Mahmood, H.; Zhou, H. Characterization of graphs associated with the ideal of numerical semigroups. J. Math. 2020, 2020, 6094372. [Google Scholar] [CrossRef]
- Wang, Y.; Binyamin, M.A.; Ali, W.; Aslam, A.; Rao, Y. Graphs associated with the ideals of a numerical semigroup having metric dimension 2. Math. Probl. Eng. 2021, 2021, 6697980. [Google Scholar] [CrossRef]
- Binyamin, M.A.; Ali, W.; Aslam, A.; Mahmood, H. A complete classification of planar graphs associated with the ideal of the numerical semigroup. Iran. J. Sci. Technol. Trans. A Sci. 2022, 46, 491–498. [Google Scholar] [CrossRef]
- Sachdeva, K. Applications of Graphs in Real-Life. Int. J. Adv. Res. Comput. Sci. 2012, 3, 403. [Google Scholar]
- Jolion, J.M.; Kropatsch, W. (Eds.) Graph Based Representations in Pattern Recognition; Springer Science and Business Media: Cham, Switzerland, 2012. [Google Scholar]
- Zhang, X.; Nadeem, M.; Ahmad, S.; Siddiqui, M.K. On applications of bipartite graph associated with algebraic structures. Mathematics 2020, 18, 57–66. [Google Scholar] [CrossRef]
- Petingi, L.; Rodriguez, J. Reliability of networks with delay constraints. Congr. Numer. 2001, 152, 117–124. [Google Scholar]
- Satyanarayana, A.; Wood, R.K. Polygon-to-Chain Reductions and Network Reliability (No. ORCRR824); Operations Research Center, University of California: Berkeley, CA, USA, 1982. [Google Scholar]
- Satyanarayana, A.; Wood, R.K. A linear-time algorithm for computing K-terminal reliability in series-parallel networks. SIAM J. Comput. 1985, 14, 818–832. [Google Scholar] [CrossRef]
- Satyarayanana, A.; Chang, M. Network reliability and the factoring theorem. Networks 1983, 13, 107–120. [Google Scholar] [CrossRef]
- Wood, R.K. A factoring algorithm using polygon-to-chain reductions for computing K-terminal network reliability. Networks 1985, 15, 173–190. [Google Scholar] [CrossRef]
- Wood, R.K. Factoring algorithms for computing K-terminal network reliability. IEEE Trans. Reliab. 2007, 35, 269–278. [Google Scholar] [CrossRef]
- Petingi, L. Diameter-related properties of graphs and applications to network reliability theory. Reliab. Vulnerability Model. Its Appl. 2013, 12, 884–894. [Google Scholar]
- Rosales, J.C.; García-Sánchez, P.A. Numerical Semigroups; Springer: New York, NY, USA, 2009. [Google Scholar]
- Bras-Amorós, M. Fibonacci-like behavior of the number of numerical semigroups of a given genus. Semigroup Forum 2008, 76, 379–384. [Google Scholar] [CrossRef]
- Sylvester, J.J. Mathematical questions with their solutions. Educ. Times 1884, 41, 171–178. [Google Scholar]
- Barucci, V.; Dobbs, D.E.; Fontana, M. Maximality properties in numerical semigroups, with applications to one-dimensional analytically irreducible local domains. In Commutative Ring Theory; CRC Press: Boca Raton, FL, USA, 2023; pp. 13–25. [Google Scholar]
- Eliahou, S. Wilf’s conjecture and Macaulay’s theorem. J. Eur. Math. Soc. 2018, 20, 2105–2129. [Google Scholar] [CrossRef]
- Delgado, M.; García-Sánchez, P.A. Numericalsgps, a GAP package for numerical semigroups. ACM Commun. Comput. Algebra 2016, 50, 12–24. [Google Scholar] [CrossRef]
- Wachs, M.L. Poset topology: Tools and applications. arXiv 2006, arXiv:math/0602226. [Google Scholar] [CrossRef]
- Felsner, S.; Trotter, W.T.; Wiechert, V. The dimension of posets with planar cover graphs. Graphs Comb. 2015, 31, 927–939. [Google Scholar] [CrossRef]
- De Loof, K.; De Baets, B.; De Meyer, H.; Bruggemann, R. A hitchhiker’s guide to poset ranking. Comb. Chem. Andhigh Throughput Screen. 2008, 11, 734–744. [Google Scholar] [CrossRef]
- Gratzer, G.A. Lattice Theory: Foundation; Springer: Basel, Switzerland, 2011. [Google Scholar]
- Binyamin, M.; Alali, A.; Mahmood, H. On Connectedness, Girth and Diameter of Gap Poset Graphs. Proc. Bulg. Acad. Sci. 2025, 78, 813–820. [Google Scholar] [CrossRef]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).





