What is fuzzy logic? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:40:38Z http://stackoverflow.com/feeds/question/399618 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/399618/what-is-fuzzy-logic 7 What is fuzzy logic? DFectuoso 2008-12-30T06:05:18Z 2009-03-26T23:14:15Z <p>I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just read about how instead of a state going from On to Off it's a diagonal line and something can be in both states but in different "levels". </p> <p>I've read the wikipedia entry and a couple of tutorials and even programmed stuff that "uses fuzzy logic" (an edge detector and a 1-wheel self-controlled robot) and still I find it very confusing going from Theory to Code... for you, in the less complicated definition, what is fuzzy logic?</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399629#399629 3 Answer by Jonathan Leffler for What is fuzzy logic? Jonathan Leffler 2008-12-30T06:20:32Z 2008-12-30T06:20:32Z <p>Well, you could read the works of <a href="http://sipi.usc.edu/~kosko/" rel="nofollow">Bart Kosko</a>, one of the 'founding fathers'. '<a href="http://rads.stackoverflow.com/amzn/click/078688021X" rel="nofollow">Fuzzy Thinking: The New Science of Fuzzy Logic</a>' from 1994 is readable (and available quite cheaply secondhand via Amazon). Apparently, he has a newer book '<a href="http://rads.stackoverflow.com/amzn/click/0670034959" rel="nofollow">Noise</a>' from 2006 which is also quite approachable.</p> <p>Basically though (in my paraphrase - not having read the first of those books for several years now), fuzzy logic is about how to deal with the world where something is perhaps 10% cool, 50% warm, and 10% hot, where different decisions may be made on the degree to which the different states are true (and no, it wasn't entirely an accident that those percentages don't add up to 100% - though I'd accept correction if needed).</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399634#399634 1 Answer by Peter Rowell for What is fuzzy logic? Peter Rowell 2008-12-30T06:21:43Z 2008-12-30T06:37:43Z <p>The following is sort of an empirical answer.</p> <p>A simple (possibly simplistic answer) is that "fuzzy logic" is any logic that returns values other than straight true / false, or 1 / 0. There are a lot of variations on this and they tend to be highly domain specific.</p> <p>For example, in my previous life I did search engines that used "content similarity searching" as opposed to then common "boolean search". Our similarity system used the Cosine Coefficient of weighted-attribute vectors representing the query and the documents and produced values in the range 0..1. Users would supply "relevance feedback" which was used to shift the query vector in the direction of desirable documents. This is somewhat related to the training done in certain AI systems where the logic gets "rewarded" or "punished" for results of trial runs.</p> <p>Right now Netflix is running a competition to find a better suggestion algorithm for their company. See <a href="http://www.netflixprize.com/" rel="nofollow">http://www.netflixprize.com/</a>. Effectively all of the algorithms could be characterized as "fuzzy logic"</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399635#399635 11 Answer by chaos for What is fuzzy logic? chaos 2008-12-30T06:21:56Z 2009-02-21T02:57:04Z <p>Fuzzy logic is logic where state membership is, essentially, a float with range 0..1 instead of an int 0 or 1. The mileage you get out of it is that things like, for example, the changes you make in a control system are somewhat naturally more fine-tuned than what you'd get with naive binary logic.</p> <p>An example might be logic that throttles back system activity based on active TCP connections. Say you define "a little bit too many" TCP connections on your machine as 1000 and "a lot too many" as 2000. At any given time, your system has a "too many TCP connections" state from 0 (&lt;= 1000) to 1 (>= 2000), which you can use as a coefficient in applying whatever throttling mechanisms you have available. This is much more forgiving and responsive to system behavior than naive binary logic that only knows how to determine "too many", and throttle completely, or "not too many", and not throttle at all.</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399638#399638 2 Answer by Wouter van Nifterick for What is fuzzy logic? Wouter van Nifterick 2008-12-30T06:23:56Z 2008-12-30T09:18:25Z <p>Maybe an example clears up what the benefits can be:</p> <p>Let's say you want to make a thermostat and you want it to be 24 degrees. </p> <p><hr /></p> <p>This is how you'd implement it using boolean logic:</p> <ul> <li>Rule1: heat up at full power when it's colder than 21 degrees. </li> <li>Rule2: cool down at full power when it's warmer than 27 degrees.</li> </ul> <p>Such a system will only once and a while be 24 degrees, and it will be very inefficient.</p> <p><hr /></p> <p>Now, using fuzzy logic, it would be like something like this:</p> <ul> <li>Rule1: For each degree that it's colder than 24 degrees, turn up the heater one notch (0 at 24).</li> <li>Rule2: For each degree that it's warmer than 24 degress, turn up the cooler one notch (0 at 24).</li> </ul> <p>This system will always be somewhere around 24 degrees, and it only once and will only once and a while make a tiny adjustment. It will also be more energy-efficient.</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399671#399671 2 Answer by tinkertim for What is fuzzy logic? tinkertim 2008-12-30T06:44:43Z 2008-12-30T06:44:43Z <p>I know what you mean about it being difficult to go from concept to code. I'm writing a scoring system that looks at the values of sysinfo and /proc on Linux systems and comes up with a number between 0 and 10, 10 being the absolute worst. A simple example:</p> <p>You have 3 load averages (1, 5, 15 minute) with (at least) three possible states, good, getting bad, bad. Expanding that, you could have six possible states per average, adding 'about to' to the three that I just noted. Yet, the result of all 18 possibilities can only deduct 1 from the score. Repeat that with swap consumed, actual VM allocated (committed) memory and other stuff .. and you have one big bowl of conditional spaghetti :)</p> <p>Its as much a definition as it is an art, how you implement the decision making process is always more interesting than the paradigm itself .. whereas in a boolean world, its rather cut and dry.</p> <p>It would be very easy for me to say if load1 &lt; 2 deduct 1, but not very accurate at all.</p> <p>If you can teach a program to do what you would do when evaluating some set of circumstances and keep the code readable, you have implemented a good example of fuzzy logic.</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399680#399680 4 Answer by Alan for What is fuzzy logic? Alan 2008-12-30T06:54:12Z 2008-12-30T06:54:12Z <p>To build off of chaos' answer, a formal logic is nothing but an inductively defined set that maps sentences to a valuation. At least, that's how a model theorist thinks of logic. In the case of a sentential boolean logic:</p> <pre><code> (basis clause) For all A, v(A) in {0,1} (iterative) For the following connectives, v(!A) = 1 - v(A) v(A &amp; B) = min{v(A), v(B)} v(A | B) = max{v(A), v(B)} (closure) All sentences in a boolean sentential logic are evaluated per above. </code></pre> <p>A fuzzy logic changes would be inductively defined:</p> <pre><code> (basis clause) For all A, v(A) between [0,1] (iterative) For the following connectives, v(!A) = 1 - v(A) v(A &amp; B) = min{v(A), v(B)} v(A | B) = max{v(A), v(B)} (closure) All sentences in a fuzzy sentential logic are evaluated per above. </code></pre> <p>Notice the only difference in the underlying logic is the permission to evaluate a sentence as having the "truth value" of 0.5. An important question for a fuzzy logic model is the threshold that counts for truth satisfaction. This is to ask: for a valuation v(A), for what value D it is the case the v(A) > D means that A is satisfied.</p> <p>If you really want to found out more about non-classical logics like fuzzy logic, I would recommend either <a href="http://rads.stackoverflow.com/amzn/click/0521854334" rel="nofollow"><em>An Introduction to Non-Classical Logic: From If to Is</em></a> or <a href="http://rads.stackoverflow.com/amzn/click/0199259879" rel="nofollow"><em>Possibilities and Paradox</em></a></p> <p>Putting my coder hat back on, I would be careful with the use of fuzzy logic in real world programming, because of the tendency for a fuzzy logic to be undecidable. Maybe it's too much complexity for little gain. For instance a supervaluational logic may do just fine to help a program model vagueness. Or maybe probability would be good enough. In short, I need to be convinced that the domain model dovetails with a fuzzy logic.</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399716#399716 2 Answer by Vinegar for What is fuzzy logic? Vinegar 2008-12-30T07:25:53Z 2008-12-30T07:25:53Z <p>A very good explanation, with a help of <a href="http://mathematica.ludibunda.ch/fuzzy-logic6.html" rel="nofollow">Fuzzy Logic Washing Machines</a>.</p> http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399781#399781 10 Answer by SnOrfus for What is fuzzy logic? SnOrfus 2008-12-30T08:29:15Z 2008-12-30T08:29:15Z <p>I'd like to add to the answers (that have been modded up) that, a good way to visualize fuzzy logic is follows:</p> <p>Traditionally, with binary logic you would have a graph whose membership function is true or false whereas in a fuzzy logic system, the membership function is not.</p> <pre> 1| | /\ | / \ | / \ 0|/ \ ------------ a b c d </pre> <p>Assume for a second that the function is "likes peanuts"</p> <pre> a. kinda likes peanuts b. really likes peanuts c. kinda likes peanuts d. doesn't like peanuts </pre> <p>The function itself doesn't have to be triangular and often isn't (it's just easier with ascii art).</p> <p>A fuzzy <em>system</em> will likely have many of these, some even overlapping (even opposites) like so:</p> <pre> 1| A B | /\ /\ A = Likes Peanuts | / \/ \ B = Doesn't Like Peanuts | / /\ \ 0|/ / \ \ ------------ a b c d </pre> <p>so now c is "kind likes peanuts, kinda doesn't like peanuts" and d is "really doesn't like peanuts"</p> <p>And you can program accordingly based on that info.</p> <p>Hope this helps for the visual learners out there.</p>