Monday, June 3, 2019

Analysis of Graph Theory

Analysis of Graph TheoryIn mathematics and figurer science, intend theory is the study of graphs mathematical structures utilise to computer simulation pair wise relations among objects from a certain collection.A graph is a very simple structure consisting of a set of vertices and a family of lines (possibly oriented), called edges (undirected) or arcs (directed), each of them linking some pair of vertices. An undirected graph may for deterrent example exemplification conflicts between objects or persons. A directed graph (or digraph) may typically represent a discourse network, or some domination relation between individuals, etc.The famous job of the bridges of Knigsberg, realized by Euler, is viewed as the first formal result in graph theory. This theory has develop during the second half of the 19th century (with Hamilton, Heawood, Kempe, Kirchhoff, Petersen, Tait), and has boomed since the 1930s (with Knig, Hall, Kuratowski, Whitney, Erds, Tutte, Edmonds, Berge, Lovs z, Seymour, and some(prenominal) other people). It is clearly related to Algebra, Topology, and other topics from Combinatorics. It applies to and gets motivating new problems from Computer Science, trading operations Research, Game Theory, Decision Theory.Because of its inherent simplicity, graph theory has a very wide range of applications in plan, in physical, social, and biological sciences, in linguistics, and in legion(predicate) other atomic number 18as. A graph push aside be used to represent almost any physical situation involving discrete objects and relationship among them (Narsingh Deo).The term graph in mathematics has different meanings. There is a graph for the function and relation. Graphs, especially tree graphs and directed graphs appear in the computer and education sciences. Flowcharts for example are directed graphs. A flowchart is a visual representation of an algorithm. It is frequently used in the planning, reading and structuring of an algorithm fo r solving a coordination compound problem. The flowchart is regarded as an demand part of the documentation of any computer translation of the original algorithm (Seymour Lipschutz).There are two comm completely used tools to help to document program logic (the algorithm). These are flowcharts and Pseudocode. Generally, flowcharts work well for small problems but Pseudocode is used for larger problems.Flowcharts are used in the be after phase of software creation. It specifies the logical flow of a program. The semantics of a flowchart are totally concerned just with control flow-what happens first, and then what happens next, and so on. A flowchart is drawn using a small set of symbols with well-defined meanings. An elongated oval denotes the beginning of the program, where the execution commences. Passage of flow from the beginning, and at afterwards stages, is denoted by edges with directional arrows. A box in the shape of a parallelogram denotes either an input (such as a RE AD), or an output (such as a PRINT). A rectangle denotes a computational step, such as addition, and a diamond-shaped box denotes a decision step. A diamond usually has one arrow hint in, and two or more leading out, denoting different ways the control buns proceed from that point. A diamond is used in cases of decision statements like, If A is more than 7, proceed to multiply B and C else, divide C and D.Example of flowchart which reads 2 numbers A and B, and prints them in decreasing erect after assigning the larger number to BIG and smaller number to SMALL.Essential computer mathematics Seymour Lipschutz, 1987, page 101A flowchart is a visual representation of sequence of operations performed to get the solution of the problem. They are usually drawn in early stages of programming project. They help with better communication between the programmers and their business customers. The flowcharts are very helpful with understanding complicated problems and programming logic, espec ially for people who do not work with (or understand) programming and coding. We lowlife say that flowcharts are necessary for better documentation of complex programs. They overly work as a guide during the system analysis and program development phase. If we have good flowchart for the programme the maintenance becomes easier, as the programmer can be more efficient in debugging process, as he can clearly see which parts he has to focus on.Flowcharts are also used in industrial and process engineering and management. The Unified Modelling wrangle (UML) created by the Three Amigos of software engineering borrows some of its basic ideas from the flowchart paradigm, although it is much more sophisticated.Visual Paradigm for UML is a professional tool that supports peg software lifecycle object-oriented analysis, object-oriented design, construction, testing and deployment. The UML modelling software helps to build quality applications faster and better. You can draw all types of class diagrams, reverse or generate code. It allows bout models into Java codes and Java codes into models.Graph theory is also helpful when building databases. Directed graphs (or digraphs) are a special case of graphs that constitute a healthy and convenient way of representing relationships between entities. In a digraph, entities are represented as nodes and relationships as directed lines or arrows that connect the nodes. The orientation of the arrows follows the flow of information in the digraph . Digraphs offer a number of advantages to information visualization, with the most important of them being comprehensibility the information that a digraph contains can be easily and accurately understood by humans and expressiveness- digraph topology bears non-trivial information. Case of graphical representation of logic rules, digraphs seem to be extremely appropriate. They can offer explanation of derived final results, since the series of inference steps in the graph can be easily detected and retraced. Also, by going backwards from the conclusion to the triggering conditions, one can validate the truth of the inference result, gaining a means of proof visualization and validation. ane of the examples can be found in the bear change Data Processing and Computations by David I. Donatoy. It is an example of geographic names database. An algorithm specifies how to quickly identify names that approximately match any item name when searching the mentioned database. The algorithm identifies matching names by applying an artificial measure of name simplicity. A digraph index enables computer name searches that are carried out within this technique to be fast enough for Web application.The use of digraph index enables name search application to restrict comparisons to a small subset of the database name, speeding up processing.A digraph index lists in digraph sequence all digraphs found in the database of geographic names. The entry for a detail digraph consists of a set of pointers to all names in the geographic-names database that includes at least one occurrence of that digraph. Once the search-for name has itself been broken cut down into a list of its unique constituent digraphs, the digraph index can then be used to produce a candidate list containing only those names from the database that include at least one of the digraphs found in the search-for name. In most cases, several names in the candidate list get out be referenced more than once (by different digraphs). After sorting the list of candidate names (thus, bringing together all occurrences of each particular candidate name), the number of occurrences of each candidate name can be counted. The number of occurrences of a candidate name will be the same as the number of unique digraphs a candidate name has in common with the search-for name. This number can be regarded as a first-approximation measure of a names similarity to the search-for name, with larger numbers c orresponding to stronger similarity.Computer scientists have developed a great deal of theory about graphs and operations on them. One reason for this is because graphs can be used to represent many problems in computer science that are otherwise abstract. Finding a way to represent the solution to a problem as a graph can present new approaches to solving the problem or even lead at a time to a solution derived from graph theory. This sort of technique is frequently used when discussing algorithmic efficiency and when trying to prove that a certain algorithm is NP-Complete because many problems involving graphs, such as finding the shortest path to traverse all nodes (the Travelling Salesman Problem), are NP-Complete, if you can find a way to represent a problem as a graph and show that it is analogous to one of the other NP-Complete problems, then you can show the problem you are trying to solve is also NP-Complete, which gives you a hint that the solution will take a great deal of time.Another reason for using graphs is that many problems computers are used to solve involve representing relationships between objects, places, or concepts. Because graphs can be either directed or undirected, they are a flexible method of showing connections. For instance, you can severalize who knows who in a room as a collection of nodes, each representing a person, and directed edges, each representing that one person knows another.Because graphs are so often used and because they allow the representation of many problems in computer science, they are a convenient means of expressing problems with which many people are comfortable. This familiarity simplifies the process of creating psychic models of problems, which ultimately leads to better problem solving.Because computer science is a young discipline, it played essential role in development of graph theory. Mathematics plays essential role in computer science, as its language defines the generic structures and prove s properties of those structures. Computer systems can be very complex and it is very difficult to have a clear picture of all details and keep the overview of the whole system.Computer science has put lots of effort to develop mathematically based frameworks to model computer systems.ReferencesGibbons, Alan (1985), Algorithmic graph theory, Cambridge University Presshttp//www-leibniz.imag.fr/GRAPH/english/overview.htmlhttp//www.bookrags.com/research/flowchart-wcs/Brent Daviduck Introduction to Programming in C++ Algorithms,Flowcharts and PseudocodeNarsingh Deo Graph theory with applications to engineering and computer science2004An augmented directed graph base for application development Dan C. Clarke , 1982 Knoxville, TennesseeDavid I. Donato Fast, Inclusive Searches for Geographic Names Using Digraphs Chapter 1 of Book 7, Automated Data Processing and Computations, Section A, Algorithms, page 2-3Quentin Charatan Aaron Kans Java in two semesters, The McGraw Hill, 2006, page 4-7S eymour Lipschutz Essential computer mathematics, McGraw Hill 1987, page 95-107

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.