show/hide this revision's text 4 Rollback to Revision 2

EDIT: whoops, wrote 'boolean' instead of 'fuzzy' above the second example. Sorry for the confusion.

Maybe an example clears up what the benefits can be:

Let's say you want to make a thermostat and you want it to be 24 degrees.


This is how you'd implement it using boolean logic:

  • Rule1: heat up at full power when it's colder than 21 degrees.
  • Rule2: cool down at full power when it's warmer than 27 degrees.

Such a system will only once and a while be 24 degrees, and it will be very inefficient.


Now, using fuzzy logic, it would be like something like this:

  • Rule1: For each degree that it's colder than 24 degrees, turn up the heater one notch (0 at 24).
  • Rule2: For each degree that it's warmer than 24 degress, turn up the cooler one notch (0 at 24).

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.

show/hide this revision's text 3 added 132 characters in body

EDIT: whoops, wrote 'boolean' instead of 'fuzzy' above the second example. Sorry for the confusion.


Maybe an example clears up what the benefits can be:

Let's say you want to make a thermostat and you want it to be 24 degrees.


This is how you'd implement it using boolean logic:

  • Rule1: heat up at full power when it's colder than 21 degrees.
  • Rule2: cool down at full power when it's warmer than 27 degrees.

Such a system will only once and a while be 24 degrees, and it will be very inefficient.


Now, using fuzzy logic, it would be like something like this:

  • Rule1: For each degree that it's colder than 24 degrees, turn up the heater one notch (0 at 24).
  • Rule2: For each degree that it's warmer than 24 degress, turn up the cooler one notch (0 at 24).

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.

show/hide this revision's text 2 deleted 2 characters in body

Maybe an example clears up what the benefits can be:

Let's say you want to make a thermostat and you want it to be 24 degrees.


This is how you'd implement it using boolean logic:

  • Rule1: heat up at full power when it's colder than 21 degrees.
  • Rule2: cool down at full power when it's warmer than 27 degrees.

Such a system will only once and a while be 24 degrees, and it will be very inefficient.


Now, using boolean fuzzy logic, it would be like something like this:

  • Rule1: For each degree that it's colder than 24 degrees, turn up the heater one notch (0 at 24).
  • Rule2: For each degree that it's warmer than 24 degress, turn up the cooler one notch (0 at 24).

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.

show/hide this revision's text 1