<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.formulasearchengine.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=69.117.113.22</id>
	<title>formulasearchengine - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.formulasearchengine.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=69.117.113.22"/>
	<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/wiki/Special:Contributions/69.117.113.22"/>
	<updated>2026-08-17T22:54:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.47.0-wmf.7</generator>
	<entry>
		<id>https://en.formulasearchengine.com/w/index.php?title=Airborne_particulate_radioactivity_monitoring&amp;diff=23525</id>
		<title>Airborne particulate radioactivity monitoring</title>
		<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/w/index.php?title=Airborne_particulate_radioactivity_monitoring&amp;diff=23525"/>
		<updated>2014-01-26T01:35:43Z</updated>

		<summary type="html">&lt;p&gt;69.117.113.22: /* CPAM applications: reactor leak detection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Greedy colourings.svg|thumb|right|Two greedy colorings of the same graph using different vertex orders. The right example generalises to 2-colorable graphs with &#039;&#039;n&#039;&#039; vertices, where the greedy algorithm expends &amp;lt;math&amp;gt;n/2&amp;lt;/math&amp;gt; colors.]]&lt;br /&gt;
In the study of [[graph coloring]] problems in [[mathematics]] and [[computer science]], a &#039;&#039;&#039;greedy coloring&#039;&#039;&#039; is a coloring of the [[vertex (graph theory)|vertices]] of a [[undirected graph|graph]] formed by a [[greedy algorithm]] that considers the vertices of the graph in sequence and assigns each vertex its first available color. Greedy colorings do not in general use the minimum number of colors possible; however they have been used in mathematics as a technique for proving other results about colorings and in computer science as a heuristic to find colorings with few colors.&lt;br /&gt;
&lt;br /&gt;
==Greed is not always good==&lt;br /&gt;
A [[crown graph]] (a [[complete bipartite graph]] &#039;&#039;K&#039;&#039;&amp;lt;sub&amp;gt;&#039;&#039;n&#039;&#039;,&#039;&#039;n&#039;&#039;&amp;lt;/sub&amp;gt;, with the edges of a [[perfect matching]] removed) is a particularly bad case for greedy coloring: if the vertex ordering places two vertices consecutively whenever they belong to one of the pairs of the removed matching, then a greedy coloring will use &#039;&#039;n&#039;&#039; colors, while the optimal number of colors for this graph is two. There also exist graphs such that with high probability a randomly chosen vertex ordering leads to a number of colors much larger than the minimum.&amp;lt;ref&amp;gt;{{harvtxt|Kučera|1991}}.&amp;lt;/ref&amp;gt; Therefore, it is of some importance in greedy coloring to choose the vertex ordering carefully.&lt;br /&gt;
&lt;br /&gt;
It is NP-complete to determine, for a given graph &#039;&#039;G&#039;&#039; and number &#039;&#039;k&#039;&#039;, whether there exists an ordering of the vertices of &#039;&#039;G&#039;&#039; that forces the greedy algorithm to use &#039;&#039;k&#039;&#039; or more colors. In particular, this means that it is difficult to find the worst ordering for &#039;&#039;G&#039;&#039;.&amp;lt;ref&amp;gt;{{harvtxt|Zaker|2006}}.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Optimal ordering==&lt;br /&gt;
The vertices of any graph may always be ordered in such a way that the greedy algorithm produces an optimal coloring. For, given any optimal coloring in which the smallest color set is maximal, the second color set is maximal with respect to the first color set, etc., one may order the vertices by their colors. Then when one uses a greedy algorithm with this order, the resulting coloring is automatically optimal. More strongly, [[perfectly orderable graph]]s (which include [[chordal graph]]s, [[comparability graph]]s, and [[distance-hereditary graph]]s) have an ordering that is optimal both for the graph itself and for all of its [[induced subgraph]]s.&amp;lt;ref&amp;gt;{{harvtxt|Chvátal|1984}}.&amp;lt;/ref&amp;gt; However, finding an optimal ordering for an arbitrary graph is [[NP-hard]] (because it could be used to solve the [[NP-complete]] graph coloring problem), and recognizing perfectly orderable graphs is also NP-complete.&amp;lt;ref&amp;gt;{{harvtxt|Middendorf|Pfeiffer|1990}}.&amp;lt;/ref&amp;gt; For this reason, heuristics have been used that attempt to reduce the number of colors while not guaranteeing an optimal number of colors.&lt;br /&gt;
&lt;br /&gt;
==Heuristic ordering strategies==&lt;br /&gt;
A commonly used ordering for greedy coloring is to choose a vertex &#039;&#039;v&#039;&#039; of minimum [[degree (graph theory)|degree]], order the remaining vertices, and then place &#039;&#039;v&#039;&#039; last in the ordering. If every subgraph of a graph &#039;&#039;G&#039;&#039; contains a vertex of degree at most &#039;&#039;d&#039;&#039;, then the greedy coloring for this ordering will use at most &#039;&#039;d&#039;&#039;&amp;amp;nbsp;+&amp;amp;nbsp;1 colors.&amp;lt;ref&amp;gt;{{harvtxt|Welsh|Powell|1967}}; {{harvtxt|Johnson|1979}}; {{harvtxt|Sysło|1989}}; {{harvtxt|Maffray|2003}}.&amp;lt;/ref&amp;gt; The smallest such &#039;&#039;d&#039;&#039; is commonly known as the [[Degeneracy (graph theory)|degeneracy]] of the graph.&lt;br /&gt;
&lt;br /&gt;
For a graph of maximum degree Δ, any greedy coloring will use at most Δ&amp;amp;nbsp;+&amp;amp;nbsp;1 colors. [[Brooks&#039; theorem]] states that with two exceptions ([[complete graph|cliques]] and [[cycle graph|odd cycles]]) at most Δ colors are needed. One proof of Brooks&#039; theorem involves finding a vertex ordering in which the first two vertices are adjacent to the final vertex but not adjacent to each other, and each subsequent vertex has at least one earlier neighbor. For an ordering with this property, the greedy coloring algorithm uses at most Δ colors.&amp;lt;ref&amp;gt;{{harvtxt|Lovász|1975}}.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Alternative color selection schemes==&lt;br /&gt;
It is possible to define a greedy coloring algorithm in which the vertices of the given graph are colored in a given sequence but in which the color chosen for each vertex is not necessarily the first available color; alternative color selection strategies have been studied within the framework of [[online algorithm]]s. In the online graph-coloring problem, vertices of a graph are presented one at a time in an arbitrary order to a coloring algorithm; the algorithm must choose a color for each vertex, based only on the colors of and adjacencies among already-processed vertices. In this context, one measures the quality of a color selection strategy by its [[Competitive analysis (online algorithm)|competitive ratio]], the ratio between the number of colors it uses and the optimal number of colors for the given graph.&lt;br /&gt;
&lt;br /&gt;
If no additional restrictions on the graph are given, the optimal competitive ratio is only slightly sublinear.&amp;lt;ref&amp;gt;{{harvtxt|Lovász|Saks|Trotter|1989}}; Sz, {{harvtxt|Vishwanathan|1990}}.&amp;lt;/ref&amp;gt; However, for [[interval graph]]s, a constant competitive ratio is possible,&amp;lt;ref&amp;gt;{{harvtxt|Kierstead|Trotter|1981}}.&amp;lt;/ref&amp;gt; while for [[bipartite graph]]s and [[sparse graph]]s a logarithmic ratio can be achieved.&amp;lt;ref name=&amp;quot;irani&amp;quot;&amp;gt;{{harvtxt|Irani|1994}}.&amp;lt;/ref&amp;gt; Indeed, for sparse graphs, the standard greedy coloring strategy of choosing the first available color achieves this competitive ratio, and it is possible to prove a matching lower bound on the competitive ratio of any online coloring algorithm.&amp;lt;ref name=&amp;quot;irani&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Chvátal | first = Václav | author-link = Vašek Chvátal&lt;br /&gt;
 | contribution = Perfectly orderable graphs&lt;br /&gt;
 | editor1-last = Berge | editor1-first = Claude | editor1-link = Claude Berge&lt;br /&gt;
 | editor2-last = Chvátal | editor2-first = Václav | editor2-link = Vašek Chvátal&lt;br /&gt;
 | location = Amsterdam&lt;br /&gt;
 | pages = 63–68&lt;br /&gt;
 | publisher = North-Holland&lt;br /&gt;
 | series = Annals of Discrete Mathematics&lt;br /&gt;
 | title = Topics in Perfect Graphs&lt;br /&gt;
 | volume = 21&lt;br /&gt;
 | year = 1984}}. As cited by {{harvtxt|Maffray|2003}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Irani | first = Sandy&lt;br /&gt;
 | doi = 10.1007/BF01294263&lt;br /&gt;
 | issue = 1&lt;br /&gt;
 | journal = Algorithmica&lt;br /&gt;
 | pages = 53–72&lt;br /&gt;
 | title = Coloring inductive graphs on-line&lt;br /&gt;
 | volume = 11&lt;br /&gt;
 | year = 1994}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last1 = Kierstead | first1 = H. A.&lt;br /&gt;
 | last2 = Trotter | first2 = W. A.&lt;br /&gt;
 | journal = Congress. Numer.&lt;br /&gt;
 | pages = 143–153&lt;br /&gt;
 | title = An extremal problem in recursive combinatorics&lt;br /&gt;
 | volume = 33&lt;br /&gt;
 | year = 1981}}. As cited by {{harvtxt|Irani|1994}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Kučera | first = Luděk&lt;br /&gt;
 | doi = 10.1016/0196-6774(91)90040-6&lt;br /&gt;
 | issue = 4&lt;br /&gt;
 | journal = Journal of Algorithms&lt;br /&gt;
 | pages = 674–684&lt;br /&gt;
 | title = The greedy coloring is a bad probabilistic algorithm&lt;br /&gt;
 | volume = 12&lt;br /&gt;
 | year = 1991}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Johnson | first = D. S. | author-link = David S. Johnson&lt;br /&gt;
 | contribution = Worst case behavior of graph coloring algorithms&lt;br /&gt;
 | location = Winnipeg&lt;br /&gt;
 | pages = 513–527&lt;br /&gt;
 | publisher = Utilitas Mathematica&lt;br /&gt;
 | title = Proc. 5th Southeastern Conf. Combinatorics, Graph Theory and Computation&lt;br /&gt;
 | year = 1979}}. As cited by {{harvtxt|Maffray|2003}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Lovász | first = L. | author-link = László Lovász&lt;br /&gt;
 | journal = Journal of Combinatorial Theory, Series B&lt;br /&gt;
 | pages = 269–271&lt;br /&gt;
 | title = Three short proofs in graph theory&lt;br /&gt;
 | volume = 19&lt;br /&gt;
 | year = 1975&lt;br /&gt;
 | doi = 10.1016/0095-8956(75)90089-1&lt;br /&gt;
 | issue = 3}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last1 = Lovász | first1 = L. | author1-link = László Lovász&lt;br /&gt;
 | last2 = Saks | first2 = M. E.&lt;br /&gt;
 | last3 = Trotter | first3 = W. A.&lt;br /&gt;
 | doi = 10.1016/0012-365X(89)90096-4&lt;br /&gt;
 | issue = 1–3&lt;br /&gt;
 | journal = Discrete Mathematics&lt;br /&gt;
 | pages = 319–325&lt;br /&gt;
 | title = An on-line graph coloring algorithm with sublinear performance ratio&lt;br /&gt;
 | volume = 75&lt;br /&gt;
 | year = 1989}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Maffray | first = Frédéric&lt;br /&gt;
 | contribution = On the coloration of perfect graphs&lt;br /&gt;
 | doi = 10.1007/0-387-22444-0_3&lt;br /&gt;
 | editor1-last = Reed | editor1-first = Bruce A. | editor1-link = Bruce Reed (mathematician)&lt;br /&gt;
 | editor2-last = Sales | editor2-first = Cláudia L.&lt;br /&gt;
 | pages = 65–84&lt;br /&gt;
 | publisher = Springer-Verlag&lt;br /&gt;
 | series = CMS Books in Mathematics&lt;br /&gt;
 | title = Recent Advances in Algorithms and Combinatorics&lt;br /&gt;
 | volume = 11&lt;br /&gt;
 | year = 2003&lt;br /&gt;
 | isbn = 0-387-95434-1}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last1 = Middendorf | first1 = Matthias&lt;br /&gt;
 | last2 = Pfeiffer | first2 = Frank&lt;br /&gt;
 | doi = 10.1016/0012-365X(90)90251-C&lt;br /&gt;
 | issue = 3&lt;br /&gt;
 | journal = Discrete Mathematics&lt;br /&gt;
 | pages = 327–333&lt;br /&gt;
 | title = On the complexity of recognizing perfectly orderable graphs&lt;br /&gt;
 | volume = 80&lt;br /&gt;
 | year = 1990}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Sysło | first = Maciej M.&lt;br /&gt;
 | doi = 10.1016/0012-365X(89)90212-4&lt;br /&gt;
 | issue = 1–2&lt;br /&gt;
 | journal = Discrete Mathematics&lt;br /&gt;
 | pages = 241–243&lt;br /&gt;
 | title = Sequential coloring versus Welsh-Powell bound&lt;br /&gt;
 | volume = 74&lt;br /&gt;
 | year = 1989}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Vishwanathan | first = S.&lt;br /&gt;
 | contribution = Randomized online graph coloring&lt;br /&gt;
 | doi = 10.1109/FSCS.1990.89567&lt;br /&gt;
 | pages = 464–469&lt;br /&gt;
 | title = Proc. 31st IEEE Symp. Foundations of Computer Science (FOCS &#039;90)&lt;br /&gt;
 | volume = 2&lt;br /&gt;
 | year = 1990&lt;br /&gt;
 | isbn = 0-8186-2082-X}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last1 = Welsh | first1 = D. J. A.&lt;br /&gt;
 | last2 = Powell | first2 = M. B.&lt;br /&gt;
 | doi = 10.1093/comjnl/10.1.85&lt;br /&gt;
 | issue = 1&lt;br /&gt;
 | journal = The Computer Journal&lt;br /&gt;
 | pages = 85–86&lt;br /&gt;
 | title = An upper bound for the chromatic number of a graph and its application to timetabling problems&lt;br /&gt;
 | volume = 10&lt;br /&gt;
 | year = 1967}}.&lt;br /&gt;
*{{citation&lt;br /&gt;
 | last = Zaker | first = Manouchehr&lt;br /&gt;
 | doi = 10.1016/j.disc.2005.06.044&lt;br /&gt;
 | issue = 2–3&lt;br /&gt;
 | journal = Discrete Mathematics&lt;br /&gt;
 | pages = 3166–3173&lt;br /&gt;
 | title = Results on the Grundy chromatic number of graphs&lt;br /&gt;
 | volume = 306&lt;br /&gt;
 | year = 2006}}.&lt;br /&gt;
&lt;br /&gt;
[[Category:Graph coloring]]&lt;/div&gt;</summary>
		<author><name>69.117.113.22</name></author>
	</entry>
</feed>