Fact-checked by Grok 2 weeks ago

Dirac's theorem

Dirac's theorem is a foundational result in , providing a sufficient condition for the existence of a Hamiltonian cycle in a graph. Named after the mathematician Gabriel Andrew Dirac, it states that if G is a simple graph with n \geq 3 vertices where the degree of every vertex is at least \frac{n}{2}, then G contains a Hamiltonian cycle. Published in 1952, the theorem appeared in Dirac's paper "Some Theorems on Abstract Graphs" and marked one of the earliest explicit degree-based criteria for Hamiltonicity in undirected graphs. The condition ensures not only the presence of a cycle visiting each vertex exactly once but also implies that the graph is connected, as isolated components would violate the minimum degree requirement for n \geq 3. While sufficient, the theorem is not necessary; counterexamples exist of Hamiltonian graphs where some vertices have degrees below \frac{n}{2}, highlighting its role as a benchmark rather than a complete characterization. The result has profoundly influenced and the study of Hamiltonian properties, inspiring numerous generalizations and refinements. For instance, from 1960 extends Dirac's condition by requiring that for every pair of non-adjacent vertices u and v, \deg(u) + \deg(v) \geq n, which subsumes Dirac's case since a minimum of \frac{n}{2} satisfies this for non-edges. Dirac's theorem remains a cornerstone for proving Hamiltonicity in dense graphs.

Statement

Formal definition

Dirac's theorem applies to simple undirected , which are finite structures consisting of a set of and a set of edges connecting pairs of distinct , with no multiple edges between the same pair of and no loops at any . The of a in such a is the number of edges incident to it. The minimum , denoted \delta(G), is the smallest among all in G. A Hamiltonian cycle in a G is a that passes through every of G exactly once before returning to the starting . The theorem states that if G is a simple with n \geq 3 and \delta(G) \geq n/2, then G contains a Hamiltonian . This condition can be expressed formally as: \delta(G) \geq \frac{n}{2} \implies G \text{ is Hamiltonian}.

Intuition and examples

The intuition behind Dirac's theorem lies in the idea that a sufficiently high minimum in a promotes strong among , preventing the formation of isolated or low-degree "dead ends" that could halt the construction of a visiting every vertex exactly once. By requiring each vertex to connect to at least half of the others, the theorem guarantees that the is dense enough to force the existence of a , where the cycle can weave through all vertices without getting stuck, as the abundance of edges allows for continual extension of partial paths until closure. This condition strikes a balance between sparsity and completeness, ensuring the 's structure is robust against non-Hamiltonian obstructions like bridges or disconnected components. A classic example illustrating the theorem is the K_n, where every pair of distinct is adjacent. Here, the of each is n-1, which exceeds n/2 for all n \geq 3, satisfying Dirac's condition. Consequently, K_n possesses a —for instance, traversing the in sequential order 1-2-3-...-n-1 returns to 1—demonstrating how the theorem applies to maximally connected graphs. In contrast, the C_n provides an example where Hamiltonicity holds but Dirac's condition is not met for larger n, highlighting that the requirement is sufficient yet not necessary. For C_n, each has 2, forming a single cycle that visits all vertices and thus is Hamiltonian. However, for n > 4, $2 < n/2, so the theorem's hypothesis fails; for instance, in C_5 (a pentagon), n=5 and n/2 = 2.5, but \delta = 2 < 2.5, yet it remains Hamiltonian. This underscores the theorem's role in providing a verifiable guarantee rather than a characterization. To build intuition through small cases, consider checking Dirac's condition for graphs on 3 to 6 vertices, focusing on minimum degree \delta relative to n/2. For n=3, n/2 = 1.5, so \delta \geq 2 implies the graph is K_3 (a triangle), which is Hamiltonian: vertices A-B-C-A. For n=4, n/2 = 2, so \delta \geq 2 includes C_4 (a square: A-B-C-D-A, Hamiltonian) or denser graphs like K_4 minus one edge, where a cycle such as A-B-C-D-A exists despite the missing edge. For n=5, n/2 = 2.5, requiring \delta \geq 3; a graph like the complete bipartite K_{2,3} fails (\delta = 2 < 2.5) and is non-Hamiltonian, while adding edges to reach \delta = 3 (e.g., a wheel graph without the rim fully connected) ensures a cycle. For n=6, n/2 = 3, so \delta \geq 3 guarantees Hamiltonicity; for example, two disjoint triangles fail connectivity, but a 3-regular graph like the utility graph (complete bipartite K_{3,3}) satisfies the condition and has a cycle zigzagging between partitions. Visually, these can be sketched as:
  • n=3: Equilateral triangle.
  • n=4: Square or tetrahedron minus edge.
  • n=5: Pentagon with added chords to boost degrees.
  • n=6: Hexagon with diagonals or bipartite matching.
A simple pseudocode to verify the condition in these small graphs involves computing degrees:
function checkDirac(G, n):
    delta = min(degree(v) for v in vertices(G))
    if n >= 3 and delta >= n / 2:
        return "Satisfies Dirac's condition; [Hamiltonian](/page/Hamiltonian)"
    else:
        return "Does not satisfy; may or may not be [Hamiltonian](/page/Hamiltonian)"
Applying this to K_3: delta=2 >=1.5 → Satisfies. To C_6: delta=2 <3 → Does not.

History and context

Dirac's contribution

Gabriel Andrew Dirac (1925–1984), a Hungarian-born British mathematician, made foundational contributions to graph theory during the mid-20th century. After moving to England in 1937 following his mother's marriage to the physicist Paul Dirac, and completing his Ph.D. at the University of London in 1952, Dirac focused on combinatorial problems, including the structure of graphs and their cycles. His work on sufficient conditions for Hamiltonian graphs emerged in this period, culminating in the proposal of what is now known as Dirac's theorem in 1952. The theorem was detailed in Dirac's paper "Some Theorems on Abstract Graphs," published in the Proceedings of the London Mathematical Society. In this article, Dirac established that a graph with n ≥ 3 vertices, where each vertex has degree at least n/2, contains a Hamiltonian cycle, providing a clear degree threshold for Hamiltonicity. This publication marked a key advancement in understanding Hamiltonian properties through vertex degrees. Dirac's theorem arose amid the post-World War II revival of graph theory, as mathematicians rebuilt and expanded combinatorial research disrupted by the war. His degree-based criterion was among the earliest such sufficient conditions for , predating Øystein Ore's 1960 generalization that relaxed the minimum degree requirement to a degree sum for non-adjacent vertices.

Development in graph theory

The concept of a first emerged in the mid-19th century through William Rowan Hamilton's invention of the in 1856, a puzzle requiring a cycle that visits each of the 20 vertices of the exactly once before returning to the start. This recreational problem, published in the Philosophical Magazine, highlighted the challenge of finding such spanning cycles but did not generalize to arbitrary graphs. By the early 20th century, graph theory began to formalize studies of paths and connectivity, with Dénes König's seminal 1936 book Theory of Finite and Infinite Graphs providing rigorous foundations for analyzing path structures in finite graphs, including decompositions and coverings that indirectly informed later Hamiltonian research. Although systematic sufficient conditions for Hamiltonian cycles remained elusive before 1952, these works by König and contemporaries like Arthur Cayley on tree enumerations and path problems established key combinatorial tools. Dirac's 1952 theorem ignited a surge in combinatorial graph theory during the 1950s, serving as a pivotal milestone that drew attention to the Hamiltonicity decision problem's inherent difficulty, later proven NP-complete in 1972. The theorem's proof introduced a novel longest path technique—considering a maximal path and leveraging degree conditions to close it into a cycle—which was subsequently refined in works like Ore's 1960 theorem on degree sums. This innovation spurred extensive research on Dirac-type minimum degree conditions sufficient for Hamiltonicity. The theorem's influence extended to tournaments and extremal graph theory, inspiring conditions for directed Hamiltonian cycles (e.g., via minimum in- and out-degrees) and extremal bounds on edges guaranteeing Hamiltonian subgraphs, as explored in subsequent degree-sequence closures. These developments transformed Hamiltonian problems from isolated puzzles into a core area of extremal combinatorics.

Proof techniques

Key ideas

The proof of Dirac's theorem employs a strategy of contradiction, assuming that a simple graph G on n \geq 3 vertices with minimum degree \delta(G) \geq n/2 contains no . Under this assumption, a longest path P in G is considered, with endpoints u and v. Since P cannot be extended, the neighborhoods N(u) and N(v) are subsets of the internal vertices of P. The minimum degree condition ensures that |N(u)| \geq n/2 and |N(v)| \geq n/2. If u and v are adjacent, appending the edge uv to P yields a cycle; the proof shows this must be Hamiltonian, as the high degrees prevent isolated vertices outside P. Assuming u and v are non-adjacent (to avoid an immediate cycle), the core idea revolves around a key lemma: the neighborhoods N(u) and N(v) must permit a specific reconfiguration of P into a Hamiltonian cycle. The proof first establishes that P is a Hamiltonian path (spans all n vertices). Label the vertices of P as v_0 = u, v_1, \dots, v_{n-1} = v. Both N(u) and N(v) are contained in the internal set I = \{v_1, \dots, v_{n-2}\} of size n-2. Define index sets X = \{i \in \{1, \dots, n-2\} \mid v_i \in N(v)\} and Y = \{i \in \{1, \dots, n-2\} \mid v_{i+1} \in N(u)\}; then |X| \geq n/2 - 1 and |Y| \geq n/2 (accounting for the known edge u v_1). The proof relies on the fact that |X \cup Y| \leq n-2, but |X| + |Y| \geq n-1 > n-2, implying X \cap Y \neq \emptyset by the —thus, there exists an index i such that v_i \in N(v) and v_{i+1} \in N(u). This intersection forces the required overlap in neighborhood positions, enabling the construction of a Hamiltonian cycle via v_0 - v_{i+1} - \cdots - v_{n-1} - v_i - \cdots - v_1 - v_0, contradicting the assumption of no such cycle. The high minimum degree thus guarantees that the neighborhoods of the path endpoints cover sufficiently many internal vertices to ensure the necessary adjacency pattern, resolving the contradiction and establishing Hamiltonicity.

Detailed construction

Assume that G is a simple on n \geq 3 vertices with minimum \delta(G) \geq n/2 but no Hamiltonian . First, note that G is connected, as any component of size less than n would violate the degree condition. Let P = v_1 v_2 \dots v_k be a longest in G, with k < n. The neighbors of v_1 lie in \{v_2, \dots, v_k\} and those of v_k in \{v_1, \dots, v_{k-1}\}. Moreover, v_1 and v_k are non-adjacent; if they were, P \cup \{v_1 v_k\} would form a of length k, and since G is connected and k < n, some vertex u \notin V(P) is adjacent to a v_j on the cycle, allowing a longer path by inserting u and traversing the longer arc, contradicting maximality. Thus, N(v_1) \subseteq \{v_2, \dots, v_{k-1}\} and N(v_k) \subseteq \{v_2, \dots, v_{k-1}\}, so |N(v_1) \cup N(v_k)| \leq k - 2. By the inclusion-exclusion principle, |N(v_1) \cup N(v_k)| = \deg(v_1) + \deg(v_k) - |N(v_1) \cap N(v_k)| \geq n - |N(v_1) \cap N(v_k)|. Combining yields n - |N(v_1) \cap N(v_k)| \leq k - 2, so |S| := |N(v_1) \cap N(v_k)| \geq n - k + 2. Since k < n, |S| \geq 3. For each v_j \in S ($2 \leq j \leq k-1), rotate P to a new path P' = v_1 v_2 \dots v_j v_k v_{k-1} \dots v_{j+1} with endpoints v_1 and v_{j+1}, covering the same vertices V(P). Different v_j yield distinct v_{j+1}, producing at least |S| \geq n - k + 2 such paths from v_1 to some u \in U, where U \subseteq \{v_3, \dots, v_k\} is the set of these new endpoints. Since each such path is longest, no vertex in U is adjacent to any w \notin V(P); otherwise, it could be extended. Thus, the set W = V(G) \setminus V(P) (|W| = n - k) satisfies N(w) \cap U = \emptyset for all w \in W. Each w \in W has \deg(w) \geq n/2 and N(w) \subseteq (V(P) \setminus U) \cup (W \setminus \{w\}). Thus, |N(w)| \leq |V(P) \setminus U| + (n - k - 1) \leq (k - (n - k + 2)) + (n - k - 1) = k - 3. But k - 3 < n/2 for k \leq n-1 and n \geq 3 (verified directly for small n), contradicting \deg(w) \geq n/2. Therefore, no such P with k < n exists, so G has a Hamiltonian path. Now suppose G has a Hamiltonian path Q = u_1 u_2 \dots u_n but no cycle, so u_1 \not\sim u_n. Then N(u_1) \subseteq \{u_2, \dots, u_{n-1}\} and N(u_n) \subseteq \{u_2, \dots, u_{n-1}\}, yielding |N(u_1) \cap N(u_n)| \geq 2 similarly. Apply the pigeonhole argument as in "Key ideas": label u_0 = u_1, \dots, u_{n-1} = u_n, define X = \{i \in \{1,\dots,n-2\} \mid u_i \sim u_n\} (|X| \geq n/2) and Y = \{i \in \{1,\dots,n-2\} \mid u_{i+1} \sim u_1\} (|Y| \geq n/2 - 1); then |X \cap Y| \geq 1, yielding an i with u_i \sim u_n and u_{i+1} \sim u_1, forming the cycle u_1 - u_{i+1} - \dots - u_n - u_i - \dots - u_2 - u_1, a contradiction. For n=3, direct check confirms the result.

Ore's theorem

Ore's theorem, proposed by Norwegian mathematician Øystein Ore in 1960, establishes a sufficient condition for a simple graph to contain a Hamiltonian cycle, serving as a generalization that relaxes Dirac's minimum degree requirement. In particular, the theorem states that if G is a simple graph on n \geq 3 vertices such that \deg(u) + \deg(v) \geq n for every pair of non-adjacent vertices u and v, then G is Hamiltonian. This condition applies to a broader class of graphs than Dirac's, as it permits some vertices to have degrees below n/2 provided that non-adjacent vertices with low degrees are compensated by high-degree neighbors. The theorem implies Dirac's result, since a graph satisfying the minimum degree condition \delta(G) \geq n/2 automatically meets Ore's degree-sum criterion for all non-adjacent pairs, as \deg(u) + \deg(v) \geq n/2 + n/2 = n. Ore's formulation thus strengthens the theoretical framework by encompassing as a special case while extending applicability to irregular degree sequences. The proof strategy mirrors Dirac's approach but leverages the degree-sum condition more flexibly. It begins by considering a longest path P = (v_1, v_2, \dots, v_k) in G, assuming for contradiction that k < n. If the endpoints v_1 and v_k are non-adjacent, then \deg(v_1) + \deg(v_k) \geq n ensures, via the pigeonhole principle applied to positions along the path, that there exists an index i such that v_i is adjacent to v_k and v_{i+1} is adjacent to v_1. This allows the construction of a longer path or a cycle, contradicting the maximality of P. Thus, G must contain a Hamiltonian cycle under the given condition.

Bondy–Chvátal theorem

The Bondy–Chvátal theorem, introduced by J. A. Bondy and V. Chvátal in 1976, offers a systematic approach to testing for Hamiltonicity in graphs by defining an operation known as the closure, which iteratively strengthens connectivity while preserving essential structural properties. This theorem unifies and extends earlier sufficient conditions for Hamiltonian cycles, transforming a potentially complex verification into a constructive process that builds toward a complete graph. The key concept is the closure of a graph G with n vertices, denoted \mathrm{cl}(G), obtained by repeatedly adding an edge between any two non-adjacent vertices u and v whenever \deg(u) + \deg(v) \geq n, until the graph stabilizes and no further edges can be added under this rule. This operation is algorithmic and terminates in finite steps, as each addition increases the edge count without altering vertex degrees in a way that violates the condition. The resulting closure maintains the same vertex set and is guaranteed to be Hamiltonian if and only if the original graph G is Hamiltonian, providing a bridge between the original structure and a potentially simpler form for analysis. The theorem asserts that G is Hamiltonian if its closure \mathrm{cl}(G) is Hamiltonian; in particular, since the complete graph K_n is Hamiltonian, G is Hamiltonian whenever \mathrm{cl}(G) = K_n. This yields a practical test: compute the closure and check if it is complete. The result generalizes , as any graph satisfying Ore's condition—where \deg(u) + \deg(v) \geq n for all non-adjacent u, v—immediately has \mathrm{cl}(G) = K_n. Likewise, graphs fulfilling of \deg(v) \geq n/2 for all v also produce a complete closure, confirming their Hamiltonicity through this framework.

Applications and extensions

Sufficient conditions for Hamiltonicity

Dirac's theorem offers a practical sufficient condition for establishing the existence of Hamiltonian cycles in graphs with sufficiently high minimum degree, serving as an efficient test for Hamiltonicity in dense graphs. This is particularly useful in network design, where high vertex connectivity ensures the presence of cycles essential for routing protocols and fault-tolerant systems. For example, in telecommunication networks, a Hamiltonian cycle enables simple, cycle-based message circulation, while multiple edge-disjoint Hamiltonian cycles—guaranteed under strengthened degree conditions derived from Dirac's theorem—provide redundancy against edge failures, enhancing overall network reliability. Representative examples include random graphs from the Erdős–Rényi model G(n,p) and the underlying undirected graphs of tournaments. In G(n,p), when the edge probability p \geq \frac{1}{2} + \epsilon for some fixed \epsilon > 0, the graph almost surely achieves a minimum degree exceeding n/2, satisfying Dirac's condition and ensuring Hamiltonicity. Similarly, the underlying undirected of any has degree n-1 \geq n/2 for n \geq 2, trivially meeting the theorem's requirement and guaranteeing a cycle, which supports applications like . Computationally, verifying Dirac's degree condition is straightforward and polynomial-time solvable, requiring only O(n + m) time to compute vertex degrees in a graph with n vertices and m edges, offering a rapid filter despite the NP-completeness of deciding Hamiltonicity in general. This efficiency makes it a valuable preprocessing step in algorithmic pipelines. The theorem also contributes to approximation algorithms for traveling salesman problem variants, such as the maximum scatter TSP, where it certifies the existence of a Hamiltonian cycle in dense subgraphs, enabling the construction of tours that approximate the optimal minimum edge length within a constant factor.

Generalizations

One prominent generalization of Dirac's theorem extends to directed graphs (digraphs). Ghouila-Houri's theorem states that every strongly connected on n vertices with minimum semidegree at least n/2 (that is, the minimum of the minimum in-degree and minimum out-degree is at least n/2) contains a directed . This condition is analogous to Dirac's minimum degree requirement, as the total degree in the underlying undirected graph would then be at least n. A special case applies to (complete oriented graphs): a on n vertices with minimum out-degree at least (n-1)/2 is strongly connected and thus by Ghouila-Houri's theorem. Nash-Williams provided an early arc-oriented version in his 1969 work on circuits in digraphs, exploring conditions for directed cycles under degree constraints similar to Dirac's. Further extensions address weighted graphs and multipartite structures. In weighted graphs, where edges have nonnegative weights, and established a generalization: if the weighted (sum of incident weights) of every is at least half the total weight of a maximum-weight , the contains a heavy Hamiltonian cycle (one with weight at least that of any other cycle). For multipartite graphs, variants relax or adjust the threshold; for instance, in balanced k-partite graphs, a minimum of at least (1 - 1/k)n often suffices for Hamiltonicity, exceeding Dirac's n/2 for k > 2 to account for partite restrictions. These conditions incorporate parameters, where graphs with at least \alpha > 1/2 (measured as the minimum over cuts of the size of the cut divided by the number of components induced) satisfy strengthened Dirac-like guarantees for Hamiltonicity. Hypohamiltonian graphs illustrate near-misses to Dirac's condition, as they are non- but become upon removal of any single , often failing the threshold by a small margin. The smallest such has 10 and minimum 3, below the Dirac bound of 5, yet demonstrates how graphs can be arbitrarily close to satisfying the condition without being . Pósa's 1963 rotation-extension provides a foundational proof generalizing Dirac's theorem to broader sequences and classes. The involves starting with a longest and iteratively rotating endpoints via alternative neighbors to extend it, eventually closing a ; this approach underpins proofs for variants like and applies to random or dense graphs exceeding Dirac's minimum .

References

  1. [1]
    Some Theorems on Abstract Graphs - Dirac - 1952
    Some Theorems on Abstract Graphs. G. A. Dirac,. G. A. Dirac. King's College ... Download PDF. back. London Mathematical Society (LMS) Logo. © 2025 London ...
  2. [2]
    Generalizations of Dirac's theorem in Hamiltonian graph theory—A ...
    In this paper, we focus on generalizations of Dirac's theorem in Hamiltonian graph theory. Since it is not possible to include all results in this area, we ...
  3. [3]
    [PDF] GRAPH THEORY WITH APPLICATIONS
    This book introduces graph theory, presenting basic material and applications to math and real-world problems, with new proofs and efficient methods.
  4. [4]
    [PDF] Matching Theory - DTIC
    During the dark days of World War II, little, if any, graph theory was done, as was more or less the case with mathematics in general. However, significant ...
  5. [5]
  6. [6]
    https - DOI
    No information is available for this page. · Learn whyMissing: PDF | Show results with:PDF
  7. [7]
    [PDF] Updating the hamiltonian problem-A survey - Emory Mathematics
    The hamiltonian problem is determining when a graph contains a spanning cycle, which is a fundamental problem in graph theory.
  8. [8]
    [PDF] Hamilton Cycles
    Theorem 10.1.1. (Dirac 1952). Every graph with n > 3 vertices and minimum degree at least n/2 has a Hamilton cycle.
  9. [9]
    [PDF] Dirac's Theorem
    Dirac's Theorem states that every graph with n ≥ 3 vertices and minimum degree δ(G) ≥ n/2 has a Hamilton cycle.
  10. [10]
    [PDF] Dirac's theorem
    Theorem 1 (Dirac's theorem) Let G = (V,E) be a graph with n vertices in which each vertex has degree at least n/2. Then G has a Hamiltonian cycle. Proof: The ...
  11. [11]
  12. [12]
    Ore-degree threshold for the square of a Hamiltonian cycle - arXiv
    Mar 4, 2014 · Abstract:A classic theorem of Dirac from 1952 states that every graph with minimum degree at least n/2 contains a Hamiltonian cycle.
  13. [13]
    [PDF] Proof of Ore's Theorem
    Theorem 3.9 (Ore). Let G be a simple graph on n vertices. If n ≥ 3, and δ(x) + δ(y) ≥ n for each pair of non-adjacent vertices x and y, then G has a closed ...
  14. [14]
    The Hidden Algorithm of Ore's Theorem on Hamiltonian Cycles
    Thirty-five years ago, Ore published a one page note in the Monthly giving a sufficient condition for a graph to be Hamiltonian [1]. His result, along with ...
  15. [15]
    A method in graph theory - ScienceDirect
    1976, Pages 111-135. Discrete Mathematics. A method in graph theory. Author links open overlay panelJ.A. Bondy, V. Chvatal. Show more. Add to Mendeley.
  16. [16]
    [PDF] GRAPH THEORY WITH APPLICATIONS
    Graph Theory with Applications. (c) Using Dirac's theorem (4.3), show that if G. is simple, with v even and a2: (v/2) +1, then G has a3-factor. 5.1.6* Show ...
  17. [17]
    [PDF] Dirac's theorem for random graphs
    Apr 4, 2012 · ABSTRACT: A classical theorem of Dirac from 1952 asserts that every graph on n vertices with minimum degree at least n/2 is Hamiltonian.
  18. [18]
    [PDF] Hamiltonicity below Dirac's condition - arXiv
    Feb 5, 2019 · Our results show that checking Hamiltonicity becomes tractable as we approach the ... In Complexity of computer computations, pages 85–103.
  19. [19]
    On the Maximum Scatter Traveling Salesperson Problem - SIAM.org
    In this paper, we give the first algorithmic study of these problems, including complexity results, approximation algorithms, and exact algorithms for special ...
  20. [20]
    [PDF] A survey on Hamilton cycles in directed graphs
    Thus it makes sense to ask for degree conditions which ensure that a graph has a Hamil- ton cycle. One such result is Dirac's theorem [19], which states that ...<|control11|><|separator|>
  21. [21]
    [PDF] Cycles in digraphs - a survey - Hal-Inria
    As another possible generalization of Ghouila-Houri's theorem, Nash-. Williams (1969) suggested the problem of characterizing the strong digraphs of order n and ...
  22. [22]
    Hamiltonian circuits in graphs and digraphs - SpringerLink
    Aug 22, 2006 · Download conference paper PDF. References. G.A. Dirac, Some theorems on abstract graphs, Proc. London Math. Soc. (3) 2 (1952), 69–81. CrossRef ...Missing: original | Show results with:original
  23. [23]
    Weighted degrees and heavy cycles in weighted graphs
    Dec 6, 2009 · As a weighted generalization of Dirac's Theorem, Bondy and Fan [2] proved the following. An optimal cycle is the cycle with the maximum weight.
  24. [24]
    [PDF] Recent advances on Dirac-type problems for hypergraphs
    A classical result of Dirac [13] states that every graph on n ≥ 3 vertices with minimum de- gree n/2 contains a Hamilton cycle. Problems that relate the minimum ...Missing: v_1) v_k
  25. [25]
    [PDF] A study on hypo hamiltonian graphs - Academic Journals
    Since the condition is applied to degree of vertices, it is proved in Theorem 8 that every hypohamiltonian graph is hamiltonian if we make the degree of ...
  26. [26]
    [PDF] Dirac's theorem for random graphs - arXiv
    Jan 12, 2012 · Dirac, Some theorems on abstract graphs, Proc. London Math. Soc., s3-2 (1952), 69–81. [13] A. Frieze and M. Krivelevich, On two Hamiltonian ...<|control11|><|separator|>