Jump to content

Boolean algebra

Featured Replies

Simplify this Boolean expression please: F(a,b,c)=((c+a)' *(c⊕b)')'

 

⊕=XOR

Edited by Spyros13

  • 2 weeks later...

Boolean Algebra is the most basic algebra in mathematics, you should be able to do this ...

 

http://en.wikipedia.org/wiki/Boolean_algebra_%28logic%29

 

I'll take * as AND, + as OR, and ⊕ as XOR, and ' as NOT

 

Following De Morgan Laws, we get the following ...

 

while NOT AND = OR, and NOT OR = AND

 

(a+a') = 1 :: always true (something can happen or not)

 

(a*a') = 0 :: always false (something can happen and not)

 

(c+a)' = c' * a'

 

(c⊕b)' = ( (c * b') + (c' * b) )' = (c * b')' * (c' * b)' = (c' + b) * (c + b')

 

we get ...

 

((c+a)' * (c⊕b)')' = ( (c' * a') * ((c' + b) * (c + b')) )' = (c' * a')' + ((c' + b) * (c + b'))'

 

= (c + a) + ( (c' + b)' + (c + b')' ) = (c + a) + ( (c * b') + (c' * b') )

 

= c + a + ((c * b') + (c' * b')) = c + a + (b' * (c + c'))

 

= c + a + b'

Archived

This topic is now archived and is closed to further replies.

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.