<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikimd.org/index.php?action=history&amp;feed=atom&amp;title=Graph_theory</id>
	<title>Graph theory - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wikimd.org/index.php?action=history&amp;feed=atom&amp;title=Graph_theory"/>
	<link rel="alternate" type="text/html" href="https://wikimd.org/index.php?title=Graph_theory&amp;action=history"/>
	<updated>2026-05-11T01:03:40Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wikimd.org/index.php?title=Graph_theory&amp;diff=5609671&amp;oldid=prev</id>
		<title>Prab: CSV import</title>
		<link rel="alternate" type="text/html" href="https://wikimd.org/index.php?title=Graph_theory&amp;diff=5609671&amp;oldid=prev"/>
		<updated>2024-04-15T20:04:13Z</updated>

		<summary type="html">&lt;p&gt;CSV import&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[File:6n-graf.svg|thumb|6n-graf]] [[File:Undirected.svg|left|thumb|Undirected]] [[File:Directed.svg|thumb|Directed]] [[File:Wikipedia_multilingual_network_graph_July_2013.svg|thumb|Wikipedia multilingual network graph July 2013]] [[File:Moreno_Sociogram_2nd_Grade.png|thumb|Moreno Sociogram 2nd Grade]] &amp;#039;&amp;#039;&amp;#039;Graph theory&amp;#039;&amp;#039;&amp;#039; is a fundamental area of [[mathematics]] and [[computer science]] that involves the study of [[graphs]], which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of &amp;#039;&amp;#039;&amp;#039;vertices&amp;#039;&amp;#039;&amp;#039; (also called nodes or points) which are connected by &amp;#039;&amp;#039;&amp;#039;edges&amp;#039;&amp;#039;&amp;#039; (also called links or lines). Graph theory has applications in various fields, including [[biology]], [[computer network]]s, [[social sciences]], and [[linguistics]], to name a few.&lt;br /&gt;
&lt;br /&gt;
==Definition==&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;graph&amp;#039;&amp;#039;&amp;#039; \(G\) is an ordered pair \(G = (V, E)\) comprising a set \(V\) of vertices or nodes together with a set \(E\) of edges or arcs, which are 2-element subsets of \(V\) (i.e., an edge is associated with two vertices, and the order of the vertices does not matter). If the order of the vertices matters, the graph is called a &amp;#039;&amp;#039;&amp;#039;directed graph&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;digraph&amp;#039;&amp;#039;&amp;#039;, and the edges are called directed edges or arcs.&lt;br /&gt;
&lt;br /&gt;
==Types of Graphs==&lt;br /&gt;
Graphs can be classified in many ways. Some of the most common classifications include:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Simple Graphs&amp;#039;&amp;#039;&amp;#039; - A graph in which each edge connects two distinct vertices and where no two edges connect the same pair of vertices.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Multigraphs&amp;#039;&amp;#039;&amp;#039; - Graphs that may have multiple edges connecting the same vertices.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Weighted Graphs&amp;#039;&amp;#039;&amp;#039; - Graphs where each edge is assigned a weight or cost.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Directed Graphs&amp;#039;&amp;#039;&amp;#039; (Digraphs) - Graphs where the edges have a direction, from one vertex to another.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Complete Graphs&amp;#039;&amp;#039;&amp;#039; - A simple graph in which every pair of distinct vertices is connected by a unique edge.&lt;br /&gt;
&lt;br /&gt;
==Basic Concepts==&lt;br /&gt;
Some basic concepts in graph theory include:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Adjacency&amp;#039;&amp;#039;&amp;#039;: Two vertices are adjacent if they are connected by an edge.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Path&amp;#039;&amp;#039;&amp;#039;: A sequence of edges which connects a sequence of vertices.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Cycle&amp;#039;&amp;#039;&amp;#039;: A path that starts and ends at the same vertex, with all edges and vertices being distinct.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Connected Graph&amp;#039;&amp;#039;&amp;#039;: A graph is connected if there is a path between every pair of vertices.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Graph Isomorphism&amp;#039;&amp;#039;&amp;#039;: Two graphs are isomorphic if there is a bijection between the vertex sets of the two graphs that preserves adjacency.&lt;br /&gt;
&lt;br /&gt;
==Applications==&lt;br /&gt;
Graph theory is used in many areas, including:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Computer Networks&amp;#039;&amp;#039;&amp;#039;: To model and analyze the structure of the internet and other communication networks.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Social Networks&amp;#039;&amp;#039;&amp;#039;: To analyze the relationships between individuals or organizations.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Biology&amp;#039;&amp;#039;&amp;#039;: To model the structures of molecules, the spread of diseases, and ecological networks.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Transportation and Logistics&amp;#039;&amp;#039;&amp;#039;: To find the most efficient routes and schedules.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Algorithms&amp;#039;&amp;#039;&amp;#039;: Many algorithms in computer science are based on graph theoretical concepts, such as searching and sorting.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
Graph theory originated in the 18th century with the work of [[Leonhard Euler]] on the [[Königsberg bridge problem]], which led to the concept of the Eulerian path. The field has since grown and diversified, touching many disciplines and contributing to the development of many areas of mathematics and science.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Network theory]]&lt;br /&gt;
* [[Topology]]&lt;br /&gt;
* [[Combinatorics]]&lt;br /&gt;
* [[Algorithm]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Graph Theory]]&lt;br /&gt;
[[Category:Mathematics]]&lt;br /&gt;
[[Category:Computer Science]]&lt;br /&gt;
&lt;br /&gt;
{{math-stub}}&lt;/div&gt;</summary>
		<author><name>Prab</name></author>
	</entry>
</feed>