{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "view-in-github"
},
"source": [
""
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "tyFvzv_djNWw"
},
"source": [
"# Network Model "
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "Nc5NT9WpZHkN"
},
"source": [
"## Introduction\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "92wkrOTjh8ot"
},
"source": [
"Many problems in computer science can be presented in the form of graphs which consists of nodes & links between them. Network flow problems can be taken as an example, as it involves the transportation of goods and material across networks. The motivation for taking advantage of their structure usually has been the need to solve larger problems than otherwise would be possible to solve with\n",
"existing computer technology. Historically, the first of these special structures to be analyzed was the transportation problem, which is a particular type of network problem. The development of an efficient solution procedure for this problem resulted in the first widespread application of linear programming to problems of\n",
"industrial logistics. More recently, the development of algorithms to efficiently solve particular large-scale systems has become a major concern in applied mathematical programming.\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "kLY1of_91b2K"
},
"source": [
"### History Of Network Model\n",
"It was introduced by Charles Bachaman and developed into standard specifications by Conference on Data System Language (CODASYL) Consortium in 1969.Researchers sponsered by the U.S. Department of Defensen's Advanced Researvh Projects Agency created the First Packet-switched network, called the ARPANET, in 1969.\n",
"\n",
"Today’s globalization as the world has evolved to an advanced planet in Information Technology because of computer networks. One of the key contributing factors of the information technology rise in the world is network and data communication because of network and technology’s advancement as the system. The goal of network model has always been same, which is convergence and achieving service integration. From early 1960s to present, the development and progress that network model has gone through has always accommodated the rapidly increasing number of users and applications. It has made the global environment of information and technology transparent to applications. "
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "2zIO8oLPlrfu"
},
"source": [
"## Example 1\n",
"\n",
"\n",
"### Shortest Route/Path Problem\n",
"In Network Models, problems can be presented in many ways. Here, one of the common problem is the shortest route problems. Shortest route problem is a network model problem which has received a great deal of attention for both the practical and theoretical reasons. For instance, given a network with a distance associated with each arc, this network model helps us to find the shortest distance from origin (source) to the destination (which is called sink).\n",
" \n",
"These problems can be formulated in real life problems like equipment replacement, capital, investment, project scheduling, and inventory planning. The theoretical interest of this problem is due to the efficient solution problems. Shortest route problems can be interpreted as a network problem very easily. \n",
"\n",
"\n",
"A graph's shortest route issue asks for a path between vertices that has the least total weight of all its edges [5-7]. In which we must identify all the paths and then we must sum of all the distances of specific path. Then the path has less distance it will be considered as the shortest route. \n",
"\n",
"***\n",
"\n",
"### Example\n",
"\n",
"**Find the shortest path in the given graph from point A to E.**\n",
"\n",
"