s1l3nced
Member
- Joined
- Jan 15, 2010
- Messages
- 108
Hey all. I am enrolled in a computer programming course. One of my classes, I have to construct a truth table for the following expressions:
Actually I tried completing the second expression and here's my truth table. I'm comparing it to online truth table generators but I can't seem to understand one part. I'll explain after I type it out.
I've left the 5th down and 5th over piece blank because all over the internet it says T. However, I can't help but to disagree.
Step 1:
~a [OR] ~~b (is b) is TRUE (~a is true in table)
~~a (is a) [OR] ~c is FALSE (a is false, and c is true in table)
~b or ~c is FALSE (both are true in the table)
Online though, on the generators, they say it's true. How can it be true? I thought at least one of each variable in paranthesis has to be true? Right off the bat.. ~(bVc) cannot be true is b and c are true in the table, which they are in mine.
I know I'm asking for a lot, but I hope someone here is generous enough to help!
Edit: If you can help me with my homework, I am willing to pay you. Not specifying an amount on here, but we can talk in private if interested.
Code:
a XOR NOT(a) AND NOT(b)
Code:
NOT((a OR NOT(b)) AND (NOT(a) OR c) AND (b OR c)
or
~((aV~b)&(~aVc)&(bVc))
Actually I tried completing the second expression and here's my truth table. I'm comparing it to online truth table generators but I can't seem to understand one part. I'll explain after I type it out.
Code:
a b c ~((aV~b)&(~aVc)&(bVc))
T T T F
T T F T
T F T F
T F F T
F T T
F T F T
F F T F
F F F T
I've left the 5th down and 5th over piece blank because all over the internet it says T. However, I can't help but to disagree.
Step 1:
~a [OR] ~~b (is b) is TRUE (~a is true in table)
~~a (is a) [OR] ~c is FALSE (a is false, and c is true in table)
~b or ~c is FALSE (both are true in the table)
Online though, on the generators, they say it's true. How can it be true? I thought at least one of each variable in paranthesis has to be true? Right off the bat.. ~(bVc) cannot be true is b and c are true in the table, which they are in mine.
I know I'm asking for a lot, but I hope someone here is generous enough to help!
Edit: If you can help me with my homework, I am willing to pay you. Not specifying an amount on here, but we can talk in private if interested.
Last edited: