6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Fri Sep 20, 2024 12:42 pm

All times are UTC




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: Boolean Algebra Question
PostPosted: Mon Sep 25, 2017 1:48 am 
Offline
User avatar

Joined: Wed May 11, 2016 4:15 am
Posts: 24
Location: Texas
I created a truth table with three inputs and randomly select high outputs so that I could practice doing boolean algebra. I've been able to answer some I've seen on the internet, but have failed when I just made up my own example to practice with. I've included a picture to see how far I got and ultimately where I've not been able to move past.

I have my rules cheat sheet beside me, but I'm going nowhere fast.


Attachments:
example.png
example.png [ 10.88 KiB | Viewed 2285 times ]
Top
 Profile  
Reply with quote  
PostPosted: Mon Sep 25, 2017 4:45 am 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1948
Location: Sacramento, CA, USA
It has been about 30 years since I attempted any boolean algebra or Karnaugh mapping, so please take my limited advice with a grain of salt, but I think that you might be able to leave the first term alone and factor /C out of the second and third terms, ending up with /A/BC + /CA. Going back to your strategy, /AB + A/B can be reduced to A XOR B, but I don't know if introducing XOR into the mix is in line with what you are asking.

Mike B.


Top
 Profile  
Reply with quote  
PostPosted: Mon Sep 25, 2017 6:08 am 
Offline
User avatar

Joined: Wed May 11, 2016 4:15 am
Posts: 24
Location: Texas
barrym95838 wrote:
It has been about 30 years since I attempted any boolean algebra or Karnaugh mapping, so please take my limited advice with a grain of salt, but I think that you might be able to leave the first term alone and factor /C out of the second and third terms, ending up with /A/BC + /CA. Going back to your strategy, /AB + A/B can be reduced to A XOR B, but I don't know if introducing XOR into the mix is in line with what you are asking.

Mike B.


That's for the reply Mike.

I haven't tried what you mentioned yet, but I'm going to rework it as you suggested in the morning. However, I know of XOR, it's truth table and the gate symbol. When I went to reduce the term in the picture, I didn't immediately recognized that A~C + ~AC was an XOR until I plugged in a truth table. I was trying to factor out and reduce, but the example in the picture I fail to see what I'm missing. Does that mean you can go to factor out a term, but the resulting expression cannot be reduced? Given all the examples I've worked before, I just assume that every time you factor you can reduce. It doesn't appear so in that example.


Top
 Profile  
Reply with quote  
PostPosted: Mon Sep 25, 2017 7:12 am 
Offline

Joined: Thu Mar 03, 2011 5:56 pm
Posts: 284
The way you should factor this is not via the first two terms, but the first and the third:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + AB/C

If you're going to practice doing this by hand, you should take a look at Karnaugh maps (e.g, https://en.wikipedia.org/wiki/Karnaugh_map)


Top
 Profile  
Reply with quote  
PostPosted: Mon Sep 25, 2017 1:55 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 9:02 pm
Posts: 1738
Location: Sacramento, CA
There is a minor error in this:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + AB/C

It should be:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + /A/BC

This truth table is a good example of logic that does not reduce to simple terms.

Daryl

_________________
Please visit my website -> https://sbc.rictor.org/


Last edited by 8BIT on Tue Sep 26, 2017 11:47 am, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Mon Sep 25, 2017 8:13 pm 
Offline

Joined: Thu Mar 03, 2011 5:56 pm
Posts: 284
8BIT wrote:
There is a minor error in this:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + AB/C

If should be:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + /A/BC


Argh. Yes. It should be the same as the result that barrym got, and I thought I checked that... clearly not.

Quote:
This truth table is a good example of logic that does not reduce to simple terms.

Daryl


Top
 Profile  
Reply with quote  
PostPosted: Wed Sep 27, 2017 4:22 am 
Offline

Joined: Tue Jun 08, 2004 11:51 pm
Posts: 213
If you combine the bottom two terms, the B's cancel.
That is about the most I see.
The problems you may find are often like the math problems you get in grammar school.
You see problems like 24 / 3 but rarely 26 / 3.
Dwight


Top
 Profile  
Reply with quote  
PostPosted: Sun Oct 01, 2017 7:48 am 
Offline
User avatar

Joined: Wed May 11, 2016 4:15 am
Posts: 24
Location: Texas
Thanks for everyone that replied.


Top
 Profile  
Reply with quote  
PostPosted: Sun Oct 01, 2017 7:49 am 
Offline
User avatar

Joined: Wed May 11, 2016 4:15 am
Posts: 24
Location: Texas
rwiker wrote:
8BIT wrote:
There is a minor error in this:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + AB/C

If should be:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + /A/BC


What does the underline represent?


Top
 Profile  
Reply with quote  
PostPosted: Sun Oct 01, 2017 7:53 am 
Offline
User avatar

Joined: Wed May 11, 2016 4:15 am
Posts: 24
Location: Texas
8BIT wrote:
This truth table is a good example of logic that does not reduce to simple terms.

Daryl


If I'm understanding this correctly, I just happened to make up an example that was a little complex.


Top
 Profile  
Reply with quote  
PostPosted: Sun Oct 01, 2017 3:16 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 9:02 pm
Posts: 1738
Location: Sacramento, CA
N2TheRed wrote:
rwiker wrote:
8BIT wrote:
There is a minor error in this:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + AB/C

If should be:

/A/BC + A/B/C + AB/C = A/B/C + AB/C + /A/BC = A/C(B+/B) + AB/C = A/C + /A/BC


What does the underline represent?


it was the best way for me to point out what part was wrong... it has nothing to do with logic representation.

_________________
Please visit my website -> https://sbc.rictor.org/


Top
 Profile  
Reply with quote  
PostPosted: Sun Oct 01, 2017 3:20 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 9:02 pm
Posts: 1738
Location: Sacramento, CA
N2TheRed wrote:
8BIT wrote:
This truth table is a good example of logic that does not reduce to simple terms.

Daryl


If I'm understanding this correctly, I just happened to make up an example that was a little complex.


Yes, sometimes you get lucky and your truth table will reduce to something simple...but more often than not (for me), I end up with something that is not much simpler than the original equation.

Daryl

_________________
Please visit my website -> https://sbc.rictor.org/


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 12 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: