While this submission is a draft, it cannot be used by other submissions.

Feedback vertex number is at most feedback edge number

Lax379983.FeedbackNumberComparison · concepts/Lax379983/FeedbackNumberComparison.lean · lax-379983

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Natural Language Statement

    Theorem

    For every finite undirected simple graph GG,

    FVN(G)FEN(G).\operatorname{FVN}(G)\leq\operatorname{FEN}(G).

    No connectedness or nonemptiness assumption is required.

    Concept map
    3 concepts
    100%
    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A
    Evidence

    Each proof establishes this claim relative to its assumptions.

    Lean source view on GitHub

    1import Lax379983.FeedbackVertexNumber
    2import Lax379983.FeedbackEdgeNumber
    3
    4/-!
    5---
    6title: Feedback vertex number is at most feedback edge number
    7type: theorem
    8---
    9For every finite undirected simple graph GG,
    10
    11FVN(G)FEN(G).\operatorname{FVN}(G)\leq\operatorname{FEN}(G).
    12
    13No connectedness or nonemptiness assumption is required.
    14-/
    15
    16namespace Lax379983.FeedbackNumberComparison
    17
    18open Lax379983.FeedbackVertexNumber Lax379983.FeedbackEdgeNumber
    19
    20/-- Every finite simple graph has feedback vertex number at most its feedback edge number. -/
    21axiom feedbackVertexNumber_le_feedbackEdgeNumber {V : Type*} [Finite V]
    22 (G : SimpleGraph V) : feedbackVertexNumber G ≤ feedbackEdgeNumber G
    23
    24end Lax379983.FeedbackNumberComparison
    25
    Show Proof
    Builds on
    Used by

    none

    From Mathlib

    none

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…