How statement and proof provenance work
The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.
- Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
- AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
- AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.
These labels describe origin, not correctness: citations and verification chips remain separate evidence.
Kruskal's and Prim's procedures on the same weighted graph
Statement
Let have edges of weights , respectively. Kruskal's procedure chooses . Prim's procedure started at makes the same choices, and the resulting MST has total weight .
Facts & Assumptions
Given: The weighted graph above.
Kruskal adds the lightest edge that does not form a cycle (Kruskal's greedy edge procedure produces a minimum spanning tree).
Prim adds the lightest edge leaving the reached set (Prim's growing-tree procedure produces a minimum spanning tree).
Tree weight is the sum of its edge weights (Real edge-weighted graphs, total tree weight and minimum spanning trees).
Verification
Kruskal considers the edges in weight order and accepts , then , then ; at that point all four vertices are connected.
From , Prim first chooses of weight , then of weight , then of weight .
Both procedures output the path with total weight , and their correctness theorems make it an MST.
Depends on
Used by
Nothing in the library uses this result yet.
Dependency tree · next 3 levels
Direct dependencies and their dependencies through the next three levels: 49 results over 19 levels. An arrow runs from a result to what uses it, and this result sits at the bottom with a heavier outline. Click the chart to enlarge it.
Sources
- ISI Bangalore discrete mathematics notes, Kruskal and other algorithms (standard reference, not scraped)