Search

The Online Encyclopedia and Dictionary

 
     
 

Encyclopedia

Dictionary

Quotes

 

Greedoid

(Redirected from Feasible set)

In combinatorics, a greedoid is a type of set system. It rises from the notion of matroid, which was originally introduced by Whitney in 1935 to study planar graphs and was later used by Edmonds to characterize certain structures that can be optimized by a greedy algorithm. Around 1980 Korte and Lovász introduced greedoid to further generalize the characterization on greedy algorithm and hence the name greedoid. Besides mathematical optimization, greedoid has also been connected to graph theory, language theory, poset theory, and other areas of mathematics.

Basic examples

In greedoid theory, you can be assured that each class of greedoid has at least a dozen equivalent definitions in terms of set system, language, poset, simplicial complex, etc. etc. Here we will just do it the traditional way and list only a couple of the more well-known examples.

A set system (F, E) is a collection F of subsets of a ground set E (i.e. F is a subset of the power set of E). When considering a greedoid, a member of F is called a feasible set. When considering a matroid, a feasible set is also known as an independent set.

An accessible set system (F, E) is a set system in which every nonempty feasible set X contains an element x such that X\{x} is feasible. This implies that any nonempty, finite accessible set system necessarily contains the empty set ∅.

A greedoid (F, E) is a an accessible set system that satisfies the Exchange Property:

  • for all X,Y ∈ F with |X| > |Y|, there is some x ∈ X such that Y∪{x} ∈ F

Note: Some people reserve the term Exchange Property for a condition on the bases of a greedoid, and prefer to call the above condition the “Augmentation Property”.

An interval greedoid (F, E) is a greedoid that satisfies the Interval Property:

  • if A, B, C ∈ F with A ⊆ B ⊆ C, then, for all x ∈ E\C, A∪{x} ∈ F and C∪{x} ∈ F imply B∪{x} ∈ F

Equivalently, an interval greedoid is a greedoid such that the union of any two feasible sets is feasible if it is contained in another feasible set.

An antimatroid (F, E) is an interval greedoid that satisfies the Interval Property without Upper Bounds:

  • if A, B ∈ F with A ⊆ B, then, for all x ∈ E\B, A∪{x} ∈ F implies B∪{x} ∈ F

Equivalently, an antimatroid is (i) a greedoid with a unique basis; or (ii) an accessible set system closed under union. It is easy to see that an antimatroid is also an interval greedoid.

A matroid (F, E) is an interval greedoid that satisfies the Interval Property without Lower Bounds:

  • if B, C ∈ F with B ⊆ C, then, for all x ∈ E\C, C∪{x} ∈ F implies B∪{x} ∈ F

It is easy to see that a matroid is also an interval greedoid.

Example 1. Consider an undirected graph G. Let the ground set be the edges of G and the feasible sets be the edge set of each forest (i.e. subgraph containing no cycle) of G. This set system is called the cycle matroid. A set system is said to be a graphic matroid if it is the cycle matroid of some graph. (Originally cycle matroid was defined on circuits, or minimal dependent sets. Hence the name cycle.)

Example 2. Consider a finite, undirected graph G rooted at the vertex r. Let the ground set be the vertices of G and the feasible sets be the vertex subsets containing r that induce connected subgraphs of G. This is called the vertex search greedoid and is a kind of antimatroid.

Example 3. Consider a finite, directed graph D rooted at r. Let the ground set be the (directed) edges of D and the feasible sets be the edge sets of each directed subtree rooted at r with all edges pointing away from r. This is called the line search greedoid, or directed branching greedoid. It is a an interval matroid, but neither an antimatroid nor a matroid.

Example 4. Consider an m-by-n matrix M. Let the ground set E be the indices of the columns from 1 to n and the feasible sets be F = {X ⊆ E: submatrix M{1,...,|X|},X is an invertible matrix}. This is called the Gaussian elimination greedoid because this structure underlies the Gaussian elimination algorithm. It is a greedoid, but not an inverval greedoid.

Greedy Algorithm

In general, a greedy algorithm is just an iterative process in which a locally best choice, usually an input of minimum weight, is chosen each round until all available choices have been exhausted. In order to describe a greedoid-based condition in which a greedy algorithm is optimal, we need some more common terminologies in greedoid theory. Without loss of generality, we consider a greedoid G = (F, E) with E finite.

A basis of a greedoid is a maximal feasible set, meaning it is a feasible set but not contained in any other one. A basis of a subset X of E is a maximal feasible set contained in X.

The rank of a greedoid is the size of a basis. By the Exchange Property, all bases have the same size. Thus, the rank function is well-defined. The rank of a subset X of E is the size of a basis of X.

A subset X of E is rank feasible if the largest intersection of X with any feasible set has size equal to the rank of X. In a matroid, every subset of E is rank feasible. But the equality does not hold for greedoids in general.

A function w: E → ℜ is R-compatible if {x ∈ E: w(x) ≥ c} is rank feasible for all real numbers c.

An objective function f: 2S → ℜ is linear over a set S if, for all X ⊆ S, we have f(X) = Σx ∈ X w(x) for some weight function w: S → ℜ.

Proposition. A greedy algorithm is optimal for every R-compatible linear objective function over a greedoid.

We will not discuss the full proof here. The intuition is that, during the iterative process, each optimal exchange of minimum weight is made possible by the Exchange Property, and optimal results are obtainable from the feasible sets in the underlying greedoid. In any case, this is a general and useful result as it guarantees the optimality of many well-known algorithms.

Example 5. Consider an undirected graph, in which every edge is weighted by a nonnegative real number, and its associated cycle matroid. Then a minimum spanning forest, meaning a forest including all vertices with minimum total weight, can be obtained through the Kruskal's algorithm. Or, equivalently, we can apply the greedy algorithm over the negative weight sum of each feasible set of the associated matroid.

Example 6. Consider a connected, rooted, directed graph, in which every directed edge is weighted by a nonnegative real number, and its associated directed branching greedoid. Then a shortest path, meaning a path with minimum total weight, can be obtained through the Dijkstra's algorithm. Or, equivalently, we can apply the greedy algorithm over the negative weight sum of each feasible set of the associated greedoid.

As we can see, matroid is often a good match for situations in which ordering is unimportant, as in an unrooted, undirected graph. However, if ordering is important, as in a rooted or directed graph, then a more general structure like greedoid is needed. But greedoid, too, relies on the objective function being linear. If this condition is not satisfied, say the objective function requires extra inputs, such as time, in addition to weights, then even greedoid would fall short. Obviously not all optimization problems can be solved by greedy algorithm. (If it were true, it would have been a happy world!) New frontiers of problems solvable by greedy algorithm remain to be explored. For example, an even more general result based on matroid embedding has been proposed. But it is beyond the scope of this article.

References

  • Björner, Anders; Ziegler, Günter M. (1992). Introduction to greedoids. In White, Neil (Ed.), Matroid applications. Cambridge, UK: Cambridge UP.
  • Edmonds, Jack (1971). Matroid and the greedy algorithm. Math. Programming 1, 127–113.
  • Helman, Paul; Moret, Bernard M. E.; Shapiro, Henry D. (1993). An exact characterization of greedy structures. SIAM J. Discrete Math. 6 (2), 274–283.
  • Korte, Bernard; Lovász, Lázsló (1981). Mathematical structures underlying greedy algorithms". In Gecseg, F. (Ed.), Fundamentals of Computation Theory: Proceedings of the 1981 International FCT-Conference, Szeged, Hungaria, August 24-28, 1981, Lecture Notes in Comput. Sci. 117, 205–209. Berlin: Springer-Verlag.
  • Korte, Bernard; Lovász; Lázsló; Schrader, Rainer (1991). Greedoids. New York/Berlin: Springer-Verlag.
  • Whitney, Hassler (1935). On the abstract properties of linear independence. Amer. J. Math. 57, 509–533.
Last updated: 05-28-2005 06:04:39
Last updated: 10-29-2005 02:13:46