Though I sincerely doubt any of you have a clue about this.
What I'm currently taking classes in is the basics of computer chips and hardware components. As of now, we're doing boolean algebra to learn how to optimize and things like that. Because who wants to use 100 chips when just one will suffice?
Here's the problem. I understood all of chapter one, which was simply converting between bases and doing arithmetic with binary (fun to the max, might I add). Chapter two is giving me problems. These in particular.
This one I know. But, I don't know how to do it the CONVENTIONAL way! I know how to do this using methods other than what he wants to see, and if the exams require me to show my work, I won't be getting it right.
The answer is AB + C. You achieve the same output using this correlation and the other one in the code box. However, when I do it the conventional way, I get ABC. Which is obviously wrong. I don't see where I went wrong.
For some background information, note the following.
' = NOT. Inverse. A = 1, A' = 0.
+ = OR. A+B means A OR B.
* = AND. AB (A*B) means A AND B.
Literals are how many "A B C"s you have leftover. AB+C is three literals and two terms (which are separated by the OR).
Hopefully someone out there can explain this to me better than this textbook can.
~Squeek
What I'm currently taking classes in is the basics of computer chips and hardware components. As of now, we're doing boolean algebra to learn how to optimize and things like that. Because who wants to use 100 chips when just one will suffice?
Here's the problem. I understood all of chapter one, which was simply converting between bases and doing arithmetic with binary (fun to the max, might I add). Chapter two is giving me problems. These in particular.
Code:
Reduce these to the specified literals. (a) A'C' + ABC + AC in 3 literals.
The answer is AB + C. You achieve the same output using this correlation and the other one in the code box. However, when I do it the conventional way, I get ABC. Which is obviously wrong. I don't see where I went wrong.
For some background information, note the following.
' = NOT. Inverse. A = 1, A' = 0.
+ = OR. A+B means A OR B.
* = AND. AB (A*B) means A AND B.
Literals are how many "A B C"s you have leftover. AB+C is three literals and two terms (which are separated by the OR).
Hopefully someone out there can explain this to me better than this textbook can.
~Squeek

Comment