<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://optimization.cbe.cornell.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kpc654</id>
	<title>Cornell University Computational Optimization Open Textbook - Optimization Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://optimization.cbe.cornell.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kpc654"/>
	<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Special:Contributions/Kpc654"/>
	<updated>2026-04-30T20:13:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=2469</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=2469"/>
		<updated>2020-12-13T13:55:18Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jarred Melancon (SYSEN 5800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: Wei-Han Chen, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also known as statistical analysis. However, sometimes uncertainty is sometimes described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old and hot or cold, because exact boundaries do not necessarily exist [1].   &lt;br /&gt;
&lt;br /&gt;
Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below is an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and a hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u &amp;gt; 0) to describe that they are &amp;quot;hotter&amp;quot; or warmer. Lastly, temperatures above 70°F are definitely hot (u=1) [3]. &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, automated braking in cars, water resource management, and control systems in HVAC systems. HVAC (Heating, Ventilation, and Air Condition) Systems are used to maintain a comfortable environment with a building, such as an office or school. The system works to maintain certain temperature/humidities according to a set schedule. The system monitors the environment closely to understand when it has reach a certain set point. Fuzzy programming is applied to the control systems to create a more cost efficient systems as these HVAC systems are often expensive to run. Compared to traditional PID (Proportional, Integral, Derivative) controller, the application of Fuzzy programming has been shown to be a more efficient way to run these systems [4].  &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An example that showcases fuzzy logic can be described by a simple water allocation problem [1]. Suppose we have a scenario where we have 3 firms wishing to receive a certain amount of water from the flow of a river. Each firm has its own benefit from the water allocation and the amount of water allocated to all of the firms can&#039;t exceed the amount in the river or the amount of flow Q. &lt;br /&gt;
[[File:Tps94 water allocation.png|thumb|712x712px|Water Allocation Scenario|alt=|center]]&lt;br /&gt;
&lt;br /&gt;
Our goal in this problem is to maximize the water allocation to three separate firms from a single source, in this case being a river. Therefore we get this optimization problem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt; max \  \ TB(X)=(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. \ x_1+x_2+x_3\leq K&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_i \geq 0  \ \ i=1,2,3 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As we mentioned before, the total allocation of water for these three firms cannot exceed the total amount of water available, which will be represented by the variable Q. This value deducted from that total will be the amount of water that has to remain in the river, R, which gives us our value: &amp;lt;math&amp;gt;Q-R=K &amp;lt;/math&amp;gt;. Using this will give us an idea of the water that can be allocated to the firms. For our case, we will assume that the value &amp;lt;math&amp;gt;K = 6&amp;lt;/math&amp;gt;. Thus our new optimization function becomes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt; max \ \ TB(X)=(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;s.t. \ x_1+x_2+x_3\leq 6&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_i \geq 0  \ \ i=1,2,3 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that constraint, the optimal solution will be &amp;lt;math&amp;gt;x_1=1,x_2=1, x_3=4, &amp;lt;/math&amp;gt; giving a value of &amp;lt;math&amp;gt;TB(X)=34.5 &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
The problem depicted above was an example of a crisp problem where we knew the exact value for the limit of water to allocate. However, in the real world, we don&#039;t always have exact values; therefore, we can apply fuzzy logic to make the problem more realistic. &lt;br /&gt;
&lt;br /&gt;
A fuzzy variant of this model would be when each firm&#039;s benefits are maximized. The first step for this fuzzy variant would be adding a new factor involving the membership function for each of the firms. The member function can be summed up into the equation below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m(X)= [(6x_1 - x_1^2) +(7x_2- 1.5x_2^2)+ (8x_3- 0.5x_3^2)]/ 49.17&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This has a similar constraint to the linear version in regards to the total water, &amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_1+x_2+x_3\leq 6&amp;lt;/math&amp;gt;. The optimal solution of this function is thus the same as the linear variant and the degree of satisfaction is &amp;lt;math&amp;gt;m(X)=0.7&amp;lt;/math&amp;gt;. However, things begin to change when the total amount of units of water becomes &#039;&#039;&#039;more or less 6 units&#039;&#039;&#039; instead of just a crisp 6. The nomenclature &amp;quot;more or less 6 &amp;quot; is where we start to apply the fuzzy logic implying that the value will be around 6. Therefore we  can classify the possibilities into membership functions around the values (5, 6, 7) adjusting the membership value between 0 and 1.&lt;br /&gt;
&lt;br /&gt;
Adjusting the membership with these values yields the membership function:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_c(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ x_{1}+x_{2}+x_{3}\leq 5\\ \frac{7-(x_{1}+x_{2}+x_{3})}{2},\quad\ if \ 5 &amp;lt; x_{1}+x_{2}+x_{3}\leq7 \\ 0,\qquad \qquad \quad \ if \ x_{1}+x_{2}+x_{3} &amp;gt; 7 \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thus the overall optimization problem changes to a maximum/minimum dilemma where we are maximizing &amp;lt;math&amp;gt;M_G(X)&amp;lt;/math&amp;gt; and minimizing &amp;lt;math&amp;gt;M_C(X)&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_G(X)=[(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)]/49.17&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_C(X)=[7-(x_1+x_2+x_3)]/2&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This results in &amp;lt;math&amp;gt;x_1=0.91, x_2=0.94, x_3=3.81, m(X)=0.67&amp;lt;/math&amp;gt;, and the total benefit being &amp;lt;math&amp;gt;TB(X)=33.1&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This result accounts for some uncertainty in our assumptions which is a common issue in a lot of real world problems which is why fuzzy programming is used in a lot of real world applications and controllers for various systems.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. It&#039;s a vital tool that can help characterize and solve optimization models in the presence of uncertainty which are very common in the real world. The premise of Fuzzy Programming centers around Fuzzy Logic which allows for a mathematical representation of partial truth or partial falsehood rather than strict Boolean Logic system. Incorporating this partial state introduces a flexibility or &amp;quot;fuzziness&amp;quot; to the problem to allow it to better interpret imprecisions and unknowns we may encounter in the real world data and measurements. Instead of fixed categories, we define degrees of membership to our function where we can apply certain ranges or criteria that link to a different membership function within our Fuzzy Set. Therefore instead of the basic black or white scenario we get to also take into account the gray area between these two sets. Strict sets and precise measurements are nearly impossible to find in the real world so the use of Fuzzy Programming is essential to get optimal solutions that can accurately relate to real world situations. The versatility that it provides is precisely why is it used in numerous controllers in all industries from HVAC systems to automated breaking systems. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] Daniel P. Loucks, Eelco van Beek, Jery R. Stedinger, Jozef P.M. Dijkman, Monique T. Villars, [https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y &#039;&#039;Water Resources Systems Planning and Management: An Introduction to Methods, Models, and Applications&#039;&#039;], UNESCO, p.135-142, 2005. &lt;br /&gt;
&lt;br /&gt;
[2] Nitin A. Bansod, Vaishali Kulkerni and S.H. Paul, [https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false &#039;&#039;Soft Computing-A Fuzzy Logic Approach&#039;&#039;], Bharati Vidyapeeth College of Engineering,  p.73-74, 2005. &lt;br /&gt;
&lt;br /&gt;
[3]  MathWorks, (2020). &#039;&#039;Foundations of Fuzzy Logic&#039;&#039;, Retrieved November 6th, 2020 from https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] M.K. Luhandjula,  [http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf &#039;&#039;Fuzzy Mathematical Programming: Theory, Applications, and Extension&#039;&#039;], University of South Africa Department of Decision Sciences, Journal of Uncertain Systems, Vol.1, No.2, p.124-136, 2007.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1954</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1954"/>
		<updated>2020-11-30T03:50:03Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jarred Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: Wei-Han Chen, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also known as statistical analysis. However, sometimes uncertainty is sometimes described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old and hot or cold, because exact boundaries do not necessarily exist [1].   &lt;br /&gt;
&lt;br /&gt;
Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below is an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and a hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u &amp;gt; 0) to describe that they are &amp;quot;hotter&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1) [3]. &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, automated braking in cars, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An example that showcases fuzzy logic can be described by a simple water allocation problem [1]. Suppose we have a scenario where we have 3 firms wishing to receive a certain amount of water from the flow of a river. Each firm has their own benefit from the water allocation and the amount of water allocated to all of the firms can&#039;t exceed the amount in the river or the amount of flow Q. &lt;br /&gt;
[[File:Tps94 water allocation.png|thumb|712x712px|Water Allocation Scenario|alt=|center]]&lt;br /&gt;
&lt;br /&gt;
Our goal in this problem is to maximize the water allocation to three separate firms from a single source, being a river. Therefore we get this optimization problem:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt; max \  \ TB(X)=(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;s.t. \ x_1+x_2+x_3\leq K&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_i \geq 0  \ \ i=1,2,3 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As we mentioned before, the total allocation of water for these three firms cannot exceed the total amount of water available, which will be represented by the variable Q. This deducted from that total will be the amount of water that has to remain in the river, R which gives us our value: &amp;lt;math&amp;gt;Q-R=K &amp;lt;/math&amp;gt;. Using this will give us an idea of the water that can be allocated to the firms. For our case, we will assume that the value &amp;lt;math&amp;gt;K = 6&amp;lt;/math&amp;gt;. Thus our new optimization function becomes:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt; max \ \ TB(X)=(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;s.t. \ x_1+x_2+x_3\leq 6&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_i \geq 0  \ \ i=1,2,3 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
With that constraint, the optimal solution will be &amp;lt;math&amp;gt;x_1=1,x_2=1, x_3=4, &amp;lt;/math&amp;gt; giving a value of &amp;lt;math&amp;gt;TB(X)=34.5 &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
The problem depicted above was an example of a crisp problem where we knew the exact value for the limit of water to allocate. However, in the real world, we don&#039;t always have exact values; therefore, we can apply fuzzy logic to make the problem more realistic. &lt;br /&gt;
&lt;br /&gt;
A fuzzy variant of this model would be when each firm&#039;s benefits are maximized. The first step for this fuzzy variant would be adding a new factor involving the membership function for each of the firms. The member function can be summed up into the equation below:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m(X)= [(6x_1 - x_1^2) +(7x_2- 1.5x_2^2)+ (8x_3- 0.5x_3^2)]/ 49.17&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This has a similar constraint to the linear version in regards to the total water, &amp;lt;math display=&amp;quot;inline&amp;quot;&amp;gt;x_1+x_2+x_3\leq 6&amp;lt;/math&amp;gt;. The optimal solution of this function is thus the same as the linear variant and the degree of satisfaction is &amp;lt;math&amp;gt;m(X)=0.7&amp;lt;/math&amp;gt;. However, things begin to change when the total amount of units of water becomes &#039;&#039;&#039;more or less 6 units&#039;&#039;&#039; instead of just a crisp 6. The nomenclature &amp;quot;more or less 6 &amp;quot; is where we start to apply the fuzzy logic implying that the value will be around 6. Therefore we  can classify the possibilities into membership functions around the values (5, 6, 7) adjusting the membership value between 0 and 1.&lt;br /&gt;
&lt;br /&gt;
Adjusting the membership with these values yields the membership function:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_c(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ x_{1}+x_{2}+x_{3}\leq 5\\ \frac{7-(x_{1}+x_{2}+x_{3})}{2},\quad\ if \ 5 &amp;lt; x_{1}+x_{2}+x_{3}\leq7 \\ 0,\qquad \qquad \quad \ if \ x_{1}+x_{2}+x_{3} &amp;gt; 7 \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thus the overall optimization problem changes to a maximum/minimum dilemma where we are maximizing &amp;lt;math&amp;gt;M_G(X)&amp;lt;/math&amp;gt; and minimizing &amp;lt;math&amp;gt;M_C(X)&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_G(X)=[(6x_1-x_1^2)+(7x_2-1.5x_2^2)+(8x_3-0.5x_3^2)]/49.17&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_C(X)=[7-(x_1+x_2+x_3)]/2&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This results in &amp;lt;math&amp;gt;x_1=0.91, x_2=0.94, x_3=3.81, m(X)=0.67&amp;lt;/math&amp;gt;, and the total benefit being &amp;lt;math&amp;gt;TB(X)=33.1&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This result accounts for some uncertainty in our assumptions which is a common issue in a lot of real world problems which is why fuzzy programming is used in a lot of real world applications and controllers for various systems.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y &lt;br /&gt;
&lt;br /&gt;
[2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false &lt;br /&gt;
&lt;br /&gt;
[3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1884</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1884"/>
		<updated>2020-11-25T23:46:02Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: Wei-Han Chen, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty is sometimes described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because exact boundaries do not necessarily exist [1].   &lt;br /&gt;
&lt;br /&gt;
Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1) [3]. &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets. or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1883</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1883"/>
		<updated>2020-11-25T23:43:39Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Fuzzy Logic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: Wei-Han Chen, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty is sometimes described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because exact boundaries do not necessarily exist [1].   &lt;br /&gt;
&lt;br /&gt;
Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1) [3]. &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets. or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1882</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1882"/>
		<updated>2020-11-25T23:42:41Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: Wei-Han Chen, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty is sometimes described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because exact boundaries do not necessarily exist [1].   &lt;br /&gt;
&lt;br /&gt;
Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets. or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1873</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1873"/>
		<updated>2020-11-25T20:55:06Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets. or &amp;lt;math&amp;gt;maximize \ u_D(x) = min \ u_i(x)&amp;lt;/math&amp;gt; [4].     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1872</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1872"/>
		<updated>2020-11-25T20:54:02Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets. or &amp;lt;math&amp;gt;maximize \ u_D(x) = min u_i(x)&amp;lt;/math&amp;gt;     &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1871</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1871"/>
		<updated>2020-11-25T20:46:11Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets [4].    &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1870</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1870"/>
		<updated>2020-11-25T20:45:34Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function like the function shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \quad \ if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \quad \ if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The optimal solution then becomes the value of x that provides the highest degree of membership while satisfying all constraints expressed by the above fuzzy sets.    &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1869</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1869"/>
		<updated>2020-11-25T20:38:46Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function as shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad \qquad \qquad if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 0,\qquad \qquad \qquad if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1868</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1868"/>
		<updated>2020-11-25T20:33:07Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;, then the constraint is not violation. If &amp;lt;math&amp;gt;u_i(x) = 0&amp;lt;/math&amp;gt;, then the constraint is violated. The in between case of &amp;lt;math&amp;gt;u_i(x) \in (0,1)&amp;lt;/math&amp;gt; allows for partial violation of a constraint. This is the beauty of Fuzzy Programming. The values of &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; can be carefully selected to create constraints that allow for the desired amount of flexibility. &lt;br /&gt;
&lt;br /&gt;
The above membership functions can be combined into a single piecewise function as shown within the Fuzzy Logic section of this page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = \begin{cases} 1, \qquad if \ g_i(x) \leq b_i \\ 1- \frac{g_i(x)-b_i}{d_i},\quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i \\ 1,\qquad if \ g_i(x) &amp;gt; b_i + d_i \end{cases}&amp;lt;/math&amp;gt;   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1867</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1867"/>
		<updated>2020-11-25T20:16:01Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of &amp;lt;math&amp;gt;\reals&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt; represents the set of constraints which have a certain threshold that can be violated. The above membership functions are used to determine the degree of membership or how violated a certain constraint is. If &amp;lt;math&amp;gt;u_i(x) = 1&amp;lt;/math&amp;gt;   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1866</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1866"/>
		<updated>2020-11-25T20:12:57Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of R.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;d_i(i = 1,...,m)&amp;lt;/math&amp;gt;   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1865</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1865"/>
		<updated>2020-11-25T20:11:29Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of R.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \qquad \  \ \ if \ g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if \ b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \qquad \ \  if \ g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1864</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1864"/>
		<updated>2020-11-25T20:09:03Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of R.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \quad if g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \quad if g_i(x) \leq b_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where   &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1863</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1863"/>
		<updated>2020-11-25T20:08:12Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ s.t. \ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X = \{ x \in \reals^2 | x \geq 0 \} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
An easier way to represent the constraints is through the use of membership functions which are fuzzy sets of R.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 0 \quad if g_i(x) &amp;gt; b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) \in (0,1) \quad if b_i &amp;lt; g_i(x) \leq b_i + d_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_i(x) = 1 \quad if g_i(x) \leq b_i&amp;lt;/math&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1856</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1856"/>
		<updated>2020-11-25T18:13:52Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Flexible Mathematical Programming Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X {x \in R^2 | x \geq 0} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the &amp;quot;~&amp;quot; conveys the concept that the objective statement and constraints have some freedom in how they are satisfied. This approach is useful when strict satisfaction of the constraints creates an empty feasible set. Relaxing the constraints with the &amp;quot;~&amp;quot; allows for maneuverability within the potential solutions. &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1853</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1853"/>
		<updated>2020-11-25T17:48:40Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Mathematical Programming Method ==&lt;br /&gt;
An optimization technique used to implement Fuzzy Programming is Flexible Mathematical Programming. This kind of problem takes on the form of&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\begin{cases} \tilde{min} f(x) \\ g_i(x)  \leq \sim b_i; i=1,...,m \\ x \in X {x \in R^2 | x \geq 0} \end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1845</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1845"/>
		<updated>2020-11-25T17:19:49Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Programming Method ==&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept &lt;br /&gt;
&lt;br /&gt;
[4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1705</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1705"/>
		<updated>2020-11-23T23:46:33Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
&lt;br /&gt;
== Flexible Programming Method ==&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept [4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1704</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1704"/>
		<updated>2020-11-23T23:45:35Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
== Applications ==&lt;br /&gt;
Fuzzy Programming can be applied in a number of fields including media selection in advertising, water resource management, and control systems in HVAC systems [4]. &lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept [4] http://www.worldacademicunion.com/journal/jus/jusVol01No2paper03.pdf&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1703</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1703"/>
		<updated>2020-11-23T23:32:22Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3]. Below in an example of an L-Function.                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 50°F as not hot (u=0). As temperatures increase from 50°F, they are given a higher degree of membership (u&amp;gt;0) to describe that they are &amp;quot;more hot&amp;quot; or warm. Lastly, temperatures above 70°F are definitely hot (u=1). &lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1702</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1702"/>
		<updated>2020-11-23T23:28:04Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3].                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leq b \\ \frac{x-a}{b-a},\quad a\leq x \leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 40°F as definitely cold (u=1). As temperatures increase from 40°F, they are given a lower degree of membership (u&amp;lt;1) to describe that they are &amp;quot;less cold&amp;quot;.&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1701</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1701"/>
		<updated>2020-11-23T23:26:00Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3].                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leqb \\ \frac{x-a}{b-a},\quad a\leqx\leq b \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 40°F as definitely cold (u=1). As temperatures increase from 40°F, they are given a lower degree of membership (u&amp;lt;1) to describe that they are &amp;quot;less cold&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1700</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1700"/>
		<updated>2020-11-23T23:24:43Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3].                    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u_A(x) = \begin{cases} 0,\qquad x\leqb \\ \frac{x-a}{b-a},\quad a\leqx\leqb \\ 1,\qquad x&amp;gt;b \end{cases}&amp;lt;/math&amp;gt;                    &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 40°F as definitely cold (u=1). As temperatures increase from 40°F, they are given a lower degree of membership (u&amp;lt;1) to describe that they are &amp;quot;less cold&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1698</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1698"/>
		<updated>2020-11-23T23:14:46Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3].          &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 40°F as definitely cold (u=1). As temperatures increase from 40°F, they are given a lower degree of membership (u&amp;lt;1) to describe that they are &amp;quot;less cold&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1697</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1697"/>
		<updated>2020-11-23T23:02:46Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. Rather than having strict criteria for defining what is part of the set and what is not (e.g. hot or cold, young or old), we allow data to have a degree of membership (u) to each set. A membership function defines how each input value is mapped to a degree of membership (u) between the two extremes, 0 and 1. Membership functions can be several different types of functions. However, they are often Piece-Wise Linear Functions [3].    &lt;br /&gt;
&lt;br /&gt;
[[File:Example Membership Function.png|left|thumb]]          &lt;br /&gt;
&lt;br /&gt;
For instance, let&#039;s say that we have a set of values that describe temperatures over the course of a week. In Boolean logic, we could create two sets, a cold set and an hot set. We could say that temperatures [0°F, 60°F)  belong to the cold set and temperatures [60°F, 100°F] belong to the hot set. However, it is not very accurate to say that 60°F is cold, but 60.1°F is hot. Instead, we could use Fuzzy Logic to describe temperatures 0°F - 40°F as definitely cold (u=1). As temperatures increase from 40°F, they are given a lower degree of membership (u&amp;lt;1) to describe that they are &amp;quot;less cold&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false [3] https://www.mathworks.com/help/fuzzy/foundations-of-fuzzy-logic.html#:~:text=northern%20hemisphere%20climates).-,Membership%20Functions,name%20for%20a%20simple%20concept.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=File:Example_Membership_Function.png&amp;diff=1696</id>
		<title>File:Example Membership Function.png</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=File:Example_Membership_Function.png&amp;diff=1696"/>
		<updated>2020-11-23T23:01:31Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This piece-wise linear function is an example of an L-Function.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1694</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1694"/>
		<updated>2020-11-23T22:29:01Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Fuzzy Logic ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. For instance, let&#039;s say that we have a set of integers that describe the ages of a group of people and we wanted to categorize them as either young or old. In Boolean logic, we could create two sets, a young set and an old set. We could say that ages 0 - 25 years old belong to the young set and ages 26+ belong to the old set. However, it is not very accurate to say that someone who is 25 years and 11 months of age is young, but as soon as you hit 26 years of age, you are suddenly old. This is where Fuzzy Logic comes into play. Rather than having strict criteria for defining what is part of the set and what is not (e.g. age ranges), we allow data to have a degree of membership to each set. This degree of membership can be determine by a membership function.  &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1693</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1693"/>
		<updated>2020-11-23T22:23:26Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or some value between the two extremes. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions, also know as statistical analysis. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist [1]. Fuzzy Programming is built on the concept of Fuzzy Logic. The motivation for Fuzzy Logic, or more precisely Fuzzy Set Theory, is to accurately model and represent real world data which is often &#039;Fuzzy&#039; due to uncertainty. This uncertainty can be introduced into a system by a number of factors such as imprecision in measurement tools or due to the use of vague language. The examples present below will show these concepts [2]. &lt;br /&gt;
&lt;br /&gt;
== Methodology ==&lt;br /&gt;
While Boolean Logic is used to describe situations as completely true or completely false, Fuzzy Logic allows for a mathematical representation of partial truth or partial falsehood. For instance, let&#039;s say that we have a set of integers that describe the ages of a group of people and we wanted to categorize them as either young or old. In Boolean logic, we would create two sets, a young set and an old set. We could say that ages 0 - 25 years old belong to the young set and ages 26+ belong to the old set. However, &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://books.google.com/books?id=IkajJC9iGxMC&amp;amp;pg=PA73#v=onepage&amp;amp;q&amp;amp;f=false&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1115</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1115"/>
		<updated>2020-11-17T18:46:23Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or any real number in-between. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist. &lt;br /&gt;
&lt;br /&gt;
== Methodology ==&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1114</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1114"/>
		<updated>2020-11-17T18:45:09Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: /* Conclusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or any real number in-between. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions. However, sometimes uncertainty can be better described using qualitative adjectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist. &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The optimization technique of Fuzzy Programming is useful when qualitative adjectives are the only available descriptors for a system&#039;s performance criteria/parameters and decision variables. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y [2] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1113</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1113"/>
		<updated>2020-11-17T18:37:50Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. Specifically, the truth values associated with the system can be completely false (0), completely true (1), or any real number in-between. This aims to capture the concept of partial truth. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions. However, sometimes uncertainty can be better described using qualitative objectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist. &lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1112</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1112"/>
		<updated>2020-11-17T18:12:25Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. This optimization technique is used when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. One approach to account for uncertainty in a system is to model the uncertainty using probability distributions. However, sometimes uncertainty can be better described using qualitative objectives, or &#039;Fuzzy&#039; statements, such as young or old, and hot or cold, because clear boundaries do not necessarily exist. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1111</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1111"/>
		<updated>2020-11-17T18:03:53Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy Programming is an optimization model that deals with performing optimization in the presence of uncertainty. Fuzzy Programming arises when determining the exactness of a system&#039;s performance criteria/parameters and decision variables is not possible. &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
[1] https://ecommons.cornell.edu/bitstream/handle/1813/2804/05_chapter05.pdf?sequence=16&amp;amp;isAllowed=y&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
	<entry>
		<id>https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1110</id>
		<title>Fuzzy programming</title>
		<link rel="alternate" type="text/html" href="https://optimization.cbe.cornell.edu/index.php?title=Fuzzy_programming&amp;diff=1110"/>
		<updated>2020-11-17T17:28:43Z</updated>

		<summary type="html">&lt;p&gt;Kpc654: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Authors: Kyle Clark, Matt Schweider, Tommy Sheehan, Jared Melancon (SYSEN 6800, Fall 2020)&lt;br /&gt;
&lt;br /&gt;
Steward: TA&#039;s name, Fengqi You&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Fuzzy programming is an optimization model that deals with performing optimization in the presence of uncertainty.&lt;/div&gt;</summary>
		<author><name>Kpc654</name></author>
	</entry>
</feed>