View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

boolean networks

Home   How To   Code Pool   Public Library   Theory   Events
¬

patterns that implement boolean networks,
rewritten after the original implementation (here)
by Sekhar Ramakrishnan


class: Pboolnet.sc
helpfile: Pboolnet.rtf

helpfile is the original helpfile by SR, slightly modified (less loud, e.g.)

jrh


http://en.wikipedia.org/wiki/Boolean_algebra

(true.or(false)).postln; true
(false.or(true)).postln; true

(true.xor(false)).postln; true
(false.xor(true)).postln; true

(true.and(false)).postln; false
(false.and(true)).postln; false

(true.not(false)).postln; false
(false.not(true)).postln; true



Uploaded Image: xx3.gif

therefore:

0 = x(x-1)

multiplication: "and",
-1: "not"
0: "false"
1: "true"

therefore:
false = x and not x

i.e. true and false are mutually exclusive, something
(according to this bivalent logic) can not be true and false at the same time.
excluded middle


Links to this Page