Matroid Circuits #
A Circuit
of a matroid M
is a minimal set C
that is dependent in M
.
A matroid is determined by its set of circuits, and often the circuits
offer a more compact description of a matroid than the collection of independent sets or bases.
In matroids arising from graphs, circuits correspond to graphical cycles.
Main Declarations #
Matroid.Circuit M C
means thatC
is minimally dependent inM
.- For an
Indep
endent setI
whose closure contains an elemente ∉ I
,Matroid.fundCircuit M e I
is the unique circuit contained ininsert e I
. Matroid.Indep.fundCircuit_circuit
states thatMatroid.fundCircuit M e I
is indeed a circuit.Circuit.eq_fundCircuit_of_subset
states thatMatroid.fundCircuit M e I
is the unique circuit contained ininsert e I
.Matroid.dep_iff_superset_circuit
states that the dependent subsets of the ground set are precisely those that contain a circuit.Matroid.ext_circuit
: a matroid is determined by its collection of circuits.
Implementation Details #
Since Matroid.fundCircuit M e I
is only sensible if I
is independent and e ∈ M.closure I \ I
,
to avoid hypotheses being explicitly included in the definition,
junk values need to be chosen if either hypothesis fails.
The definition is chosen so that the junk values satisfy
M.fundCircuit e I = {e}
for e ∈ I
or e ∉ M.E
and
M.fundCircuit e I = insert e I
if e ∈ M.E \ M.closure I
.
These make the useful statement e ∈ M.fundCircuit e I ⊆ insert e I
true unconditionally.
Independence and bases #
Closure #
Restriction #
Fundamental Circuits #
For an independent set I
and some e ∈ M.closure I \ I
,
M.fundCircuit e I
is the unique circuit contained in insert e I
.
For the fact that this is a circuit, see Matroid.Indep.fundCircuit_circuit
,
and the fact that it is unique, see Matroid.Circuit.eq_fundCircuit_of_subset
.
Has the junk value {e}
if e ∈ I
or e ∉ M.E
, and insert e I
if e ∈ M.E \ M.closure I
.
Instances For
For I
independent, M.fundCircuit e I
is the only circuit contained in insert e I
.
Dependence #
A version of Matroid.dep_iff_superset_circuit
that has the supportedness hypothesis
as part of the equivalence, rather than a hypothesis.
Extensionality #
A stronger version of Matroid.ext_circuit
:
two matroids on the same ground set are equal if no circuit of one is independent in the other.