Skip to main content

Fuzzy Logic - Decision Making

It is an activity which includes the steps to be taken for choosing a suitable alternative from those that are needed for realizing a certain goal.

Steps for Decision Making

Let us now discuss the steps involved in the decision making process −

  • Determining the Set of Alternatives − In this step, the alternatives from which the decision has to be taken must be determined.

  • Evaluating Alternative − Here, the alternatives must be evaluated so that the decision can be taken about one of the alternatives.

  • Comparison between Alternatives − In this step, a comparison between the evaluated alternatives is done.

Types of Decision

Making We will now understand the different types of decision making.

Individual Decision Making

In this type of decision making, only a single person is responsible for taking decisions. The decision making model in this kind can be characterized as −

  • Set of possible actions

  • Set of goals Gi(iXn);

  • Set of Constraints Cj(jXm)

The goals and constraints stated above are expressed in terms of fuzzy sets.

Now consider a set A. Then, the goal and constraints for this set are given by −

Gi(a) = composition[Gi(a)] = Gi1(Gi(a)) with Gi1

Cj(a) = composition[Cj(a)] = Cj1(Cj(a)) with Cj1 for aA

The fuzzy decision in the above case is given by −

FD=min[iXninfGi(a),jXminfCj(a)]

Multi-person Decision Making

Decision making in this case includes several persons so that the expert knowledge from various persons is utilized to make decisions.

Calculation for this can be given as follows −

Number of persons preferring xi to xj = N(xi,xj)

Total number of decision makers = n

Then, SC(xi,xj)=N(xi,xj)n

Multi-objective Decision Making

Multi-objective decision making occurs when there are several objectives to be realized. There are following two issues in this type of decision making −

  • To acquire proper information related to the satisfaction of the objectives by various alternatives.

  • To weigh the relative importance of each objective.

Mathematically we can define a universe of n alternatives as −

A=[a1,a2,...,ai,...,an]

And the set of “m” objectives as O=[o1,o2,...,oi,...,on]

Multi-attribute Decision Making

Multi-attribute decision making takes place when the evaluation of alternatives can be carried out based on several attributes of the object. The attributes can be numerical data, linguistic data and qualitative data.

Mathematically, the multi-attribute evaluation is carried out on the basis of linear equation as follows −



Anurag Rana

Comments

Popular posts from this blog

JAVA Scrollbar, MenuItem and Menu, PopupMenu

ava AWT Scrollbar The  object  of Scrollbar class is used to add horizontal and vertical scrollbar. Scrollbar is a  GUI  component allows us to see invisible number of rows and columns. AWT Scrollbar class declaration public   class  Scrollbar  extends  Component  implements  Adjustable, Accessible   Java AWT Scrollbar Example import  java.awt.*;   class  ScrollbarExample{   ScrollbarExample(){               Frame f=  new  Frame( "Scrollbar Example" );               Scrollbar s= new  Scrollbar();               s.setBounds( 100 , 100 ,  50 , 100 );               f.add(s);               f.setSize( 400 , 400 );               f.setLayout( null );               f.setVisible( true );   }   public   static   void  main(String args[]){           new  ScrollbarExample();   }   }   Output: Java AWT Scrollbar Example with AdjustmentListener import  java.awt.*;   import  java.awt.event.*;   class  ScrollbarExample{        ScrollbarExample(){               Frame f=  new  Frame( "Scro

Difference between net platform and dot net framework...

Difference between net platform and dot net framework... .net platform supports programming languages that are .net compatible. It is the platform using which we can build and develop the applications. .net framework is the engine inside the .net platform which actually compiles and produces the executable code. .net framework contains CLR(Common Language Runtime) and FCL(Framework Class Library) using which it produces the platform independent codes. What is the .NET Framework? The Microsoft .NET Framework is a platform for building, deploying, and running Web Services and applications. It provides a highly productive, standards-based, multi-language environment for integrating existing investments with next-generation applications and services as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class librari

C++ this Pointer, static, struct and Enumeration

C++ this Pointer In C++ programming,  this  is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++. It can be used  to pass current object as a parameter to another method. It can be used  to refer current class instance variable. It can be used  to declare indexers. C++ this Pointer Example Let's see the example of this keyword in C++ that refers to the fields of current class. #include <iostream>    using   namespace  std;   class  Employee {       public :           int  id;  //data member (also instance variable)               string name;  //data member(also instance variable)            float  salary;          Employee( int  id, string name,  float  salary)             {                   this ->id = id;                  this ->name = name;                  this ->salary = salary;            }             void  display()             {                 cout<<id<< "  " <<name<&