Skip to main content
GameDev.net gamedev.net
🔒 Locked

Boolean Algebra and Proofs

Started by Alatar Feb 24, 2012 at 3:42 AM 0 replies 1.9k views
Original Post
Alatar
Alatar
Hi everyone,

Does anyone have a link to a good intro to boolean algebra? I'm trying to do my homework, and my notes and the professor's powerpoints don't work. Our textbook is no help either. I'm trying to solve problems like:

  1. (A+B).(A+ !B) = A
  2. A.(A + B) = A
  3. A.(A +!A.B) = A
  4. A + A . B = A+B

We are expected to prove them analytically using Boolean algebra laws. The ones with ! are supposed to have a bar above them according to my professor, but the ! (not) means the same thing.



If someone has a good link, or could help me with this, I would really appreciate it.



Thanks

"All you have to decide is what to do with the time that is given to you." - Gandalf
TheUnbeliever
TheUnbeliever
Just memorizing the properties (e.g. distributivity, and which are pretty intuitive) and de Morgan's seems sufficient. Using your notation: (A+B).(A+!B) = A.(A+!B) + B.(A+!B) = A.A + A.!B + B.A + B.!B = A + A.!B + A.B = A.(B+!B) = A
[TheUnbeliever]

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.