Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

CATopalian JavaScript Boolean Algebra

An in-depth tutorial on Boolean Algebra and how to express Boolean logic using JavaScript.


Complement

A + !A = 1


Null

A * !A = 0


Idempotent

A + A = A

A * A = A


Identity

A + 0 = A

A * 1 = A


Domination

A + 1 = 1

A * 0 = 0


Double Negation Law

!!A = A


Absorption Law

A + (A · B) = A

A + (A · B) = A


Distributive Law

A · (B + C) = (A · B) + (A · C)

A + (B · C) = (A + B) · (A + C))


DeMorgan's Law

!(A · B) = !A + !B

!(A + B) = !A · !B


Consensus Theorem

(A·B) + (!A·C) + (B·C) = (A·B) + (!A·C)


How to Download this App

  1. Click the green Code Button on this github page
  2. Choose Download ZIP
  3. Save the Zip File
  4. Extract All
  5. Double click the HTML file to start the App

Happy Scripting :-)

About

An in-depth tutorial on Boolean Algebra and how to express Boolean logic using JavaScript.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors