Abstract

We consider an intuitionistic fuzzy shortest path problem (IFSPP) in a directed graph where the weights of the links are intuitionistic fuzzy numbers. We develop a method to search for an intuitionistic fuzzy shortest path from a source node to a destination node. We coin the concept of classical Dijkstra’s algorithm which is applicable to graphs with crisp weights and then extend this concept to graphs where the weights of the arcs are intuitionistic fuzzy numbers. It is claimed that the method may play a major role in many application areas of computer science, communication network, transportation systems, and so forth. in particular to those networks for which the link weights (costs) are ill defined.

1. Introduction

Graphs [14] are a very important model of networks. There are many real-life problems of network of transportation, communication, circuit systems, and so forth, which are modeled into graphs and hence solved. Graph theory has wide varieties of applications in several branches of engineering, science, social science, medical science, economics, and so forth, to list a few only out of many. Many real-life situations of communication network, transportation network, and so forth cannot be modeled into crisp graphs because of the reason that few or all of the arcs/links have the cost/weight which is ill defined. The weights of the arcs are not always crisp but intuitionistic fuzzy (or fuzzy).

One of the first studies on fuzzy shortest path problem (FSPP) in graphs was done by Dubois and Prade [5] and then by Klein [6]. However, few more solutions to FSPP proposed in [710] are also interesting. Though the work of Dubois and Prade [5] was a major breakthrough, that paper lacked any practical interpretation even if fuzzy shortest path is found, but still this may not actually be any of the path in the corresponding network for which it was found. There are very few works reported in the literature on finding an intuitionistic fuzzy shortest path in a graph. Mukherjee [11] used a heuristic methodology for solving the IF shortest path problem using the intuitionistic fuzzy hybrid geometric (IFHG) operator, with the philosophy of Dijkstra’s algorithm. In [12], Karunambigai et al. in a team work with Atanassov, present a model based on dynamic programming to find the shortest paths in intuitionistic fuzzy graphs. Nagoor Gani and Mohammed Jabarulla in [13] also developed a method on searching intuitionistic fuzzy shortest path in a network. But all these algorithms have both merits and demerits (none is absolutely the best), as all these are greedy algorithms. In this paper we solve the intuitionistic fuzzy shortest path problem (IFSPP) for a graph where the arc weights are intuitionistic fuzzy numbers, and then we reduce the method to the case of finding fuzzy shortest path in a graph. Our work here does also have the same kind of demerits (as in [12, 13]), but the major significance lies in the fact that we follow the concept of classical Dijkstra’s algorithm which is applicable to graphs with crisp weights and then extend this concept to graphs where the weights of the arcs are intuitionistic fuzzy numbers.

2. Preliminaries

A graph is an ordered pair () which consists of two sets and , where or is the set of vertices (or, nodes), and or is the set of edges (or, arcs/links). Throughout in our work here we consider those graphs which are without loops. Graphs may be of two types: undirected graphs and directed graphs. In an undirected graph the edge () and the edge (), if exist, are obviously identical unlike that in the case of directed graph. For a fast visit on the theory of graphs, one could see [14].

The intuitionistic fuzzy set theory of Atanassov [1416] is now a well-known powerful soft computing tool to the world scientists. If is a universe of discourse, an intuitionistic fuzzy set in is a set of ordered triplets , where are functions such that for all . For each the values and represent the degree of membership and degree of nonmembership of the element to , respectively, and the amount is called the hesitation part. Of course, a fuzzy set is a particular case of the intuitionistic fuzzy set if , for all . For details of the classical notion of intuitionistic fuzzy set theory, one could see the book authored by Atanassov [15]. The concept of an intuitionistic fuzzy number is of importance for quantifying an ill-known quantity. Intuitionistic fuzzy numbers are the more generalized form of fuzzy numbers involving two independently estimated degrees: degree of acceptance and degree of rejection. In our work here throughout, we use the notion of triangular intuitionistic fuzzy numbers and the basic operations like IF addition , IF subtraction , “ranking” of intuitionistic fuzzy numbers, and so forth. Trivially, any crisp real number can be viewed as a fuzzy number or as an intuitionistic fuzzy number. There is no unique method for ranking the number of intuitionistic fuzzy numbers, because all the existing methods [1719] are soft computing methods. Each method has got merits and demerits depending upon the properties of the application domains and the problem under consideration. However, if are intuitionistic fuzzy numbers sorted in IF ascending order (in fact it is a kind of nonascending order, assuming that the IF equal intuitionistic fuzzy numbers take corresponding positions at random if there is no loss of generality) by any good predecided method, that is, if , then and are called, respectively, the IF-min and IF-max of these n intuitionistic fuzzy numbers. Almost all the existing methods [1719] of ranking intuitionistic fuzzy numbers were developed independently, that is, not as extensions of the existing methods [2026] of ranking of fuzzy numbers [27]. Although several authors [2026] have reported several ranking methods of fuzzy numbers, all are having limitations too, that is, not an absolute method suitable for every application domain. However, if are fuzzy numbers sorted in fuzzy ascending order by a predecided method, that is, , then and are called, respectively, the fuzzy-min and fuzzy-max of these fuzzy numbers.

3. Graphs with IF Weighted Arcs

In most of the real-life problems of networks, be it in a communication model or transportation model, the weights of the arcs are not always crisp but intuitionistic fuzzy numbers (or, at best fuzzy numbers). For example, Figure 3 shows a public road transportation model for a traveler where the cost parameter for traveling each arc has been available to him as an intuitionistic fuzzy number.

But for such type of ill graph, there is no attempt made so far in the literature for searching an IF shortest path. In our method here, we solve this intuitionistic fuzzy shortest path problem (IFSPP) for graphs where we also use the notion of Dijkstra’s algorithm but with simple soft-computations without using any hybrid geometric operators, using only basics of Atanassov’s operators [15].

4. Intuitionistic Fuzzy Shortest Path in a Graph

In this section we solve the IFSPP for graphs where we use the philosophy of Dijkstra’s algorithm but with simple soft-computations with IF data. Consider a directed graph where the arcs are of intuitionistic fuzzy weights (intuitionistic fuzzy numbers), as shown in Figure 1. Suppose that the subalgorithm IF() returns the intuitionistic fuzzy weight set corresponding to each arc.

4.1. IF Shortest Path Estimate of a Vertex in a Directed Graph

As shown in Figure 2, suppose that is the source vertex and the currently traversed vertex is . The IF estimate in graph is computed using IF addition as follows: or

4.2. Intuitionistic Fuzzy Relaxation of an Arc in a Directed Graph

We extend the classical notion of relaxation to the case here with intuitionistic fuzzy number weights. We call it “IF relaxation.” For this, first of all we initialize the graph along with its starting vertex and IF shortest path estimate for each vertices of the graph . The “INTUITIONISTIC-FUZZY-INITIALIZATION-SINGLE-SOURCE” algorithm IFISS will do what is shown in Algorithm 1.

IFISS ( )
(1)  For each vertex
(2)   
(3)   
(4) 

After the IF initialization, the process of IF relaxation of each arc begins, as shown in Figure 3. The subalgorithm IF-RELAX plays the vital role to update , that is, the IF shortest distance value between the starting vertex and the vertex , which is a neighbour of the current traversed vertex (see Algorithm 2), where is the IF weight of the arc from the vertex to the vertex and denotes the parent node of vertex .

IF-RELAX
(1)  IF
(2)   THEN
(3)     

4.3. IF Shortest Path Algorithm (IFSP Algorithm) in a Graph

We now present our main algorithm to find single source IF shortest path in a graph. We name this “intuitionistic fuzzy shortest path algorithm,” that is, in short by the title IFSP algorithm. In this algorithm we use the previously designed above subalgorithms and also the subalgorithm EXTRACT-IF-MIN () which extracts the node with minimum key using a predecided IF ranking method and updates (see Algorithm 3).

IFSP ( )
(1)  IFISS ( )
(2)  
(3)  
(4)  
(5)  WHILE
(6)     DO
(7)         
(8)         FOR each rn vertex
(9)          DO IF-RELAX

Example 1 (an example). Consider the following directed graph where the IF weights (here they are intuitionistic fuzzy numbers) are shown against each link, as shown in Figure 4. We want to solve the single-source IF shortest path problem (IFSPP) taking the vertex as the source vertex and the vertex as the destination vertex.

Our algorithm computes the following results:(1), , , , , , and then(2); that is, the IF shortest path from the source vertex is (3)with -values, that is, IF shortest distance estimate values of each vertex from the starting vertex are

5. Conclusion

There are many real-life problems in the networks of transportation, communication, circuit systems, and so forth which are initially modeled into graphs and hence solved. In many of these directed graphs, in reality, the weights of the arcs are not always crisp but fuzzy numbers. In this paper we develop a new method to solve the intuitionistic fuzzy shortest path problem (IFSPP) from a source vertex to a destination vertex in a directed graph. The importance of our method lies in its potential to give solution in intuitionistic fuzzy environment, unlike any of the existing algorithms of IFSPP. Obviously, our algorithm does also work in case few or all of the weights are fuzzy numbers or crisp numbers, as a special case of IF numbers.