Boltzmann constant: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Miracle Pen
No edit summary
 
en>Kevin.dale.parrish
The subscript 'B' in Boltzmann's constant was changed from italicized (default), to upright. The 'B' is not a variable, only an identifier, and should not be italicized.
Line 1: Line 1:
{{inline citations|date=June 2013}}
{{graph search algorithm}}
'''Kruskal's algorithm''' is a [[greedy algorithm]] in [[graph theory]] that finds a [[minimum spanning tree]] for a [[Connectivity (graph theory)|connected]] [[Glossary of graph theory#Weighted graphs and networks|weighted graph]].  This means it finds a subset of the [[edge (graph theory)|edge]]s that forms a tree that includes every [[vertex (graph theory)|vertex]], where the total weight of all the edges in the tree is minimized.  If the graph is not connected, then it finds a ''minimum spanning forest'' (a minimum spanning tree for each [[Connected component (graph theory)|connected component]]).


This algorithm first appeared in ''[[Proceedings of the American Mathematical Society]]'', pp.&nbsp;48&ndash;50 in 1956, and was written by [[Joseph Kruskal]].<ref>{{cite doi|10.1090/S0002-9939-1956-0078686-7}}</ref>


The real estate product sales experienced risen a minor in January of 2011 as per the reviews created by the Nationwide Association of Realtors. The income of present residences rose by two.7%25 to a seasonally altered annual share charge [https://www.facebook.com/brandofalcone.chic Arthur Falcone] of 5.36 million units, from that of a downwardly revised 5.22 million in December, 2010 and it also up by five.three%25 over the very last 12 months.<br><br>The economic crisis hasn't affected the Arthur Falcone of Raleigh which is the ideal city for youths attempting to discover fun and also the aged people looking for peace, fairly and sunshine in their retirement years. Numerous gorgeous homes with terrific scenic sights are located in Raleigh. The explanation why many individuals these days opt for purchasing a home in Raleigh are the tax incentives which are provided furthermore the minimal rates of fascination on loans by banks. The work development is on a continuous rise plus the economic expansion is greater than most other places.<br><br>That is a 148%twenty five Return on your very first investment decision in six many years. It also means that the worth Arthur Falcone of U.S pounds against Gold is decreasing by 17%twenty five every year. Bear in mind one ounce will usually buy you the same item so that means the price of the greenback is lowering by seventeen%25 when on the greenback.<br><br>The procedure carried out by companies producing the 1st sale of shares to the public is [http://Search.Un.org/search?ie=utf8&site=un_org&output=xml_no_dtd&client=UN_Website_en&num=10&lr=lang_en&proxystylesheet=UN_Website_en&oe=utf8&q=referred&Submit=Go referred] to as Preliminary Community offering or IPO. The main goal of this kind of an operation is for companies to increase money for the goal of expanding their business. They accomplish this by selling shares of stocks to the general public. In other phrases, it is the procedure of bringing a stock issue to the market for the 1st time. Thus, purchasing these shares you can turn into an proprietor of a part of the business you have invested in.<br><br>If a Lender forecloses, the most they can hope for is to promote the property at marketplace benefit. They would relatively just allow a quick sale, and keep away from having to market and [http://En.Search.Wordpress.com/?q=maintain maintain] the property on their own.<br><br>If you do three properties for each calendar year, and you only net $25,000 complete, soon after spending all costs on every single of the 3 properties, you are even now netting $75,000 money and equity in about six to 8 months. In addition, if you are leasing these houses, you are also producing additional streams of earnings via monthly income flow as effectively as accumulating equity in every home.<br><br>If you subtract your credit card debt provider of $377,232 from the NOI of $383,500 you would attain an yearly money movement of only $6,268. That signifies a whopping share return of.32%25 on your $1,950,000 expense. It never ever ceases to amaze me that provides to market like this are even produced. But they are every single working day. It doesn't issue no matter whether you are conversing about a $100,000 residence or a $100,000,000 house. The rules are the identical.<br><br>Saint Kitts and Nevis is typically recognized as a tax paradise. This is for typical individuals and enterprises alike. There aren't any new taxes on well worth and no sales or estate taxing. There's nonetheless a tax on company earnings, but it's only pertinent to regional firms that serve the people Arthur Falcone with their organization. Business income taxes range at around 35 %25.<br><br>Make sure you know the spot. If it's an region that is not good to stay in, it's not heading to do you much good to have that free home, since remember you're even now likely to have individuals mortgage payments. Make certain that your payments are lower adequate, that you're carrying out your homework and you know what the homes rent for in that area. You don't want to take a home that has a $1700/month payment, consider to market it with a lease alternative, and discover out following you indicator that dotted line that you could hire a property like that for $1000 all over city.<br><br>Before going out and employing the most pricey skilled offered, analysis and uncover out what your options are. Just know that negative credit is what you are making an attempt to resolve. Even though it can be difficult to pay someone to do anything you think you can, it is greater to repair your credit score correctly.
Other algorithms for this problem include [[Prim's algorithm]], [[Reverse-Delete algorithm]], and [[Borůvka's algorithm]].
 
==Description==
* create a forest ''F'' (a set of trees), where each vertex in the graph is a separate [[Tree (graph theory)|tree]]
* create a set ''S'' containing all the edges in the graph
* while ''S'' is [[nonempty]] and F is not yet spanning
** remove an edge with minimum weight from ''S''
** if that edge connects two different trees, then add it to the forest, combining two trees into a single tree
** otherwise discard that edge.
 
At the termination of the algorithm, the forest forms a minimum spanning forest of the graph. If the graph is connected, the forest has a single component and forms a minimum spanning tree.
 
==Pseudocode==
The following code is implemented with [[disjoint-set data structure]]:
 
<code>
KRUSKAL(G):
1 A = ∅
2 '''foreach''' v ∈ G.V:
3  MAKE-SET(v)
4 '''foreach''' (u, v) ordered by weight(u, v), increasing:
5    '''if''' FIND-SET(u) ≠ FIND-SET(v):
6      A = A ∪ {(u, v)}
7      UNION(u, v)
8 '''return''' A</code>
 
== Complexity ==
Where ''E'' is the number of edges in the graph and ''V'' is the number of vertices, Kruskal's algorithm can be shown to run in ''[[Big-O notation|O]]''(''E'' [[binary logarithm|log]] ''E'') time, or equivalently, ''O''(''E'' log ''V'') time, all with simple data structures. These running times are equivalent because:
* ''E'' is at most ''V''<sup>2</sup> and <math>\log V^2 = 2 \log V</math> <math>\;</math> is ''O''(log ''V'').
* Each isolated vertex is a separate component of the minimum spanning forest. If we ignore isolated vertices we obtain ''V'' ≤ ''E''+1, so log ''V'' is ''O''(log ''E'').
 
We can achieve this bound as follows: first sort the edges by weight using a [[comparison sort]] in ''O''(''E'' log ''E'') time; this allows the step "remove an edge with minimum weight from ''S''" to operate in constant time. Next, we use a [[disjoint-set data structure]] (Union&Find) to keep track of which vertices are in which components. We need to perform O(''E'') operations, two 'find' operations and possibly one union for each edge. Even a simple disjoint-set data structure such as disjoint-set forests with union by rank can perform O(''E'') operations in ''O''(''E'' log ''V'') time. Thus the total time is ''O''(''E'' log ''E'') = ''O''(''E'' log ''V'').
 
Provided that the edges are either already sorted or can be sorted in linear time (for example with [[counting sort]] or [[radix sort]]), the algorithm can use more sophisticated [[disjoint-set data structure]] to run in ''O''(''E'' α(''V'')) time, where α is the extremely slowly growing inverse of the single-valued [[Ackermann function]].
 
== Example ==
 
[http://www.carlschroedl.com/blog/comp/kruskals-minimum-spanning-tree-algorithm/2012/05/14/ Download the example data.]
 
{| border=1 cellspacing=2 cellpadding=5 class="wikitable"
! Image !! Description
|-
|[[Image:Kruskal Algorithm 1.svg|200px]]
|'''AD''' and '''CE''' are the shortest edges, with length 5, and '''AD''' has been [[Arbitrary|arbitrarily]] chosen, so it is highlighted.
|-
|[[Image:Kruskal Algorithm 2.svg|200px]]
|'''CE''' is now the shortest edge that does not form a cycle, with length 5, so it is highlighted as the second edge.
|-
|[[Image:Kruskal Algorithm 3.svg|200px]]
|The next edge, '''DF''' with length 6, is highlighted using much the same method.
|-
|[[Image:Kruskal Algorithm 4.svg|200px]]
|The next-shortest edges are '''AB''' and '''BE''', both with length 7. '''AB''' is chosen arbitrarily, and is highlighted. The edge '''BD''' has been highlighted in red, because there already exists a path (in green) between '''B''' and '''D''', so it would form a cycle ('''ABD''') if it were chosen.
|-
|[[Image:Kruskal Algorithm 5.svg|200px]]
|The process continues to highlight the next-smallest edge, '''BE''' with length 7. Many more edges are highlighted in red at this stage: '''BC''' because it would form the loop '''BCE''',  '''DE''' because it would form the loop '''DEBA''', and '''FE''' because it would form '''FEBAD'''.
|-
|[[Image:Kruskal Algorithm 6.svg|200px]]
|Finally, the process finishes with the edge '''EG''' of length 9, and the minimum spanning tree is found.
|}
 
== Proof of correctness ==
 
The proof consists of two parts. First, it is proved that the algorithm produces a [[spanning tree]]. Second, it is proved that the constructed spanning tree is of minimal weight.
 
===Spanning tree===
Let <math>P</math> be a connected, weighted graph and let <math>Y</math> be the subgraph of <math>P</math> produced by the algorithm. <math>Y</math> cannot have a cycle, been within one subtree and not between two different trees. <math>Y</math> cannot be disconnected, since the first encountered edge that joins two components of <math>Y</math> would have been added by the algorithm. Thus, <math>Y</math> is a spanning tree of <math>P</math>.
 
===Minimality===
 
We show that the following proposition '''''P''''' is true by [[Mathematical induction|induction]]: If ''F'' is the set of edges chosen at any stage of the algorithm, then there is some minimum spanning tree that contains ''F''.
* Clearly '''''P''''' is true at the beginning, when ''F'' is empty: any minimum spanning tree will do, and there exists one because a weighted connected graph always has a minimum spanning tree.
* Now assume '''''P''''' is true for some non-final edge set ''F'' and let ''T'' be a minimum spanning tree that contains ''F''. If the next chosen edge ''e'' is also in ''T'', then '''''P''''' is true for ''F'' + ''e''. Otherwise, ''T'' + ''e'' has a cycle ''C'' and there is another edge ''f'' that is in ''C'' but not ''F''. (If there were no such edge ''f'', then ''e'' could not have been added to ''F'', since doing so would have created the cycle ''C''.) Then ''T'' &minus; ''f'' + ''e'' is a tree, and it has the same weight as ''T'', since ''T'' has minimum weight and the weight of ''f'' cannot be less than the weight of ''e'', otherwise the algorithm would have chosen ''f'' instead of ''e''. So ''T'' &minus; ''f'' + ''e'' is a minimum spanning tree containing ''F'' + ''e'' and again '''''P''''' holds.
* Therefore, by the principle of induction, '''''P''''' holds when ''F'' has become a spanning tree, which is only possible if ''F'' is a minimum spanning tree itself.
 
==See also==
* [[Dijkstra's algorithm]]
* [[Prim's algorithm]]
* [[Reverse-delete algorithm]]
* [[Single-linkage clustering]]
 
== References ==
{{Reflist}}
* [[Thomas H. Cormen]], [[Charles E. Leiserson]], [[Ronald L. Rivest]], and [[Clifford Stein]]. ''[[Introduction to Algorithms]]'', Second Edition. MIT Press and McGraw-Hill, 2001. ISBN 0-262-03293-7. Section 23.2: The algorithms of Kruskal and Prim, pp.&nbsp;567&ndash;574.
* [[Michael T. Goodrich]] and [[Roberto Tamassia]]. ''Data Structures and Algorithms in Java'', Fourth Edition. John Wiley & Sons, Inc., 2006. ISBN 0-471-73884-0. Section 13.7.1: Kruskal's Algorithm, pp.&nbsp;632..
 
==External links==
* [http://scanftree.com/Data_Structure/kruskal's-algorithm Kruskal's algorithm explanation and example with c implementation]
* [http://www.carlschroedl.com/blog/comp/kruskals-minimum-spanning-tree-algorithm/2012/05/14/ Download the example minimum spanning tree data.]
* [http://students.ceid.upatras.gr/~papagel/project/kruskal.htm Animation of Kruskal's algorithm (Requires Java plugin)]
* [http://www.programyar.com/wp-content/uploads/2012/08/wood_cutter__kruskal_algorithm_with_javac++.zip download kruskal algorithm      Implement with C++ and java(graphical)(Requires java 7+)]
* [http://www.codeproject.com/KB/recipes/Kruskal_Algorithm.aspx C# Implementation ]
* [https://github.com/monmohan/mgraphlib Open source java graph library with implementation of Kruskal's algorithm]
[[Category:Graph algorithms]]
[[Category:Spanning tree]]
[[Category:Articles with example pseudocode]]
[[Category:Articles containing proofs]]
* [https://docs.google.com/file/d/0B2_b0Jz3VKm8RG8zOTI1dFRrRnM/edit?usp=sharing Auto-generated PowerPoint Slides for Teaching and Learning]

Revision as of 21:42, 3 February 2014

Template:Inline citations Template:Graph search algorithm Kruskal's algorithm is a greedy algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized. If the graph is not connected, then it finds a minimum spanning forest (a minimum spanning tree for each connected component).

This algorithm first appeared in Proceedings of the American Mathematical Society, pp. 48–50 in 1956, and was written by Joseph Kruskal.[1]

Other algorithms for this problem include Prim's algorithm, Reverse-Delete algorithm, and Borůvka's algorithm.

Description

  • create a forest F (a set of trees), where each vertex in the graph is a separate tree
  • create a set S containing all the edges in the graph
  • while S is nonempty and F is not yet spanning
    • remove an edge with minimum weight from S
    • if that edge connects two different trees, then add it to the forest, combining two trees into a single tree
    • otherwise discard that edge.

At the termination of the algorithm, the forest forms a minimum spanning forest of the graph. If the graph is connected, the forest has a single component and forms a minimum spanning tree.

Pseudocode

The following code is implemented with disjoint-set data structure:

KRUSKAL(G):
1 A = ∅
2 foreach v ∈ G.V:
3   MAKE-SET(v)
4 foreach (u, v) ordered by weight(u, v), increasing:
5    if FIND-SET(u) ≠ FIND-SET(v):
6       A = A ∪ {(u, v)}
7       UNION(u, v)
8 return A

Complexity

Where E is the number of edges in the graph and V is the number of vertices, Kruskal's algorithm can be shown to run in O(E log E) time, or equivalently, O(E log V) time, all with simple data structures. These running times are equivalent because:

We can achieve this bound as follows: first sort the edges by weight using a comparison sort in O(E log E) time; this allows the step "remove an edge with minimum weight from S" to operate in constant time. Next, we use a disjoint-set data structure (Union&Find) to keep track of which vertices are in which components. We need to perform O(E) operations, two 'find' operations and possibly one union for each edge. Even a simple disjoint-set data structure such as disjoint-set forests with union by rank can perform O(E) operations in O(E log V) time. Thus the total time is O(E log E) = O(E log V).

Provided that the edges are either already sorted or can be sorted in linear time (for example with counting sort or radix sort), the algorithm can use more sophisticated disjoint-set data structure to run in O(E α(V)) time, where α is the extremely slowly growing inverse of the single-valued Ackermann function.

Example

Download the example data.

Image Description
AD and CE are the shortest edges, with length 5, and AD has been arbitrarily chosen, so it is highlighted.
CE is now the shortest edge that does not form a cycle, with length 5, so it is highlighted as the second edge.
The next edge, DF with length 6, is highlighted using much the same method.
The next-shortest edges are AB and BE, both with length 7. AB is chosen arbitrarily, and is highlighted. The edge BD has been highlighted in red, because there already exists a path (in green) between B and D, so it would form a cycle (ABD) if it were chosen.
The process continues to highlight the next-smallest edge, BE with length 7. Many more edges are highlighted in red at this stage: BC because it would form the loop BCE, DE because it would form the loop DEBA, and FE because it would form FEBAD.
Finally, the process finishes with the edge EG of length 9, and the minimum spanning tree is found.

Proof of correctness

The proof consists of two parts. First, it is proved that the algorithm produces a spanning tree. Second, it is proved that the constructed spanning tree is of minimal weight.

Spanning tree

Let be a connected, weighted graph and let be the subgraph of produced by the algorithm. cannot have a cycle, been within one subtree and not between two different trees. cannot be disconnected, since the first encountered edge that joins two components of would have been added by the algorithm. Thus, is a spanning tree of .

Minimality

We show that the following proposition P is true by induction: If F is the set of edges chosen at any stage of the algorithm, then there is some minimum spanning tree that contains F.

  • Clearly P is true at the beginning, when F is empty: any minimum spanning tree will do, and there exists one because a weighted connected graph always has a minimum spanning tree.
  • Now assume P is true for some non-final edge set F and let T be a minimum spanning tree that contains F. If the next chosen edge e is also in T, then P is true for F + e. Otherwise, T + e has a cycle C and there is another edge f that is in C but not F. (If there were no such edge f, then e could not have been added to F, since doing so would have created the cycle C.) Then Tf + e is a tree, and it has the same weight as T, since T has minimum weight and the weight of f cannot be less than the weight of e, otherwise the algorithm would have chosen f instead of e. So Tf + e is a minimum spanning tree containing F + e and again P holds.
  • Therefore, by the principle of induction, P holds when F has become a spanning tree, which is only possible if F is a minimum spanning tree itself.

See also

References

43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.

External links