Truth Tables MATH HELP

StevenYoo

Diamond Member
Jul 4, 2001
8,628
0
0
the '~' means 'not'

so if q is T, then ~q is F

the AND operator (the ^) is only true when both values are true (ie, when they're both T and T).
 

her209

No Lifer
Oct 11, 2000
56,336
11
0
Wow... this is fundamental logic. How can anyone not understand this?
 

Cattlegod

Diamond Member
May 22, 2001
8,687
1
0
Dude, do you work at a Burger King in Michigan?

I saw one of the register guys doing truth tables on Friday.
 

kranky

Elite Member
Oct 9, 1999
21,019
156
106
The last two colums mean not q and p AND (not q)

So on the second line, q is False, so "not q" must be True.
Then, p AND (not q) is done by substitution. p is T, we know that "not q" is F, so we're left to evaluate the expression T AND F - which evaluates to F.
 

mugs

Lifer
Apr 29, 2003
48,920
46
91
Originally posted by: her209
Wow... this is fundamental logic. How can anyone not understand this?

Give him a break, everyone has to learn it sometime. Hopefully he's no older than 13 though.
 

Soccer55

Golden Member
Jul 9, 2000
1,660
4
81
Well, if q is false, then what would ~q be? For that, you would have to know what the operator ~ means. For the next column, if you have that p is true and ~q is false, then use the rules for the operation ^ to determine whether p^~q is true or false.

-Tom
 

chuckywang

Lifer
Jan 12, 2004
20,133
1
0
~ means NOT.

^ means AND.

That should be all the info you need. It's kinda hard to say more without giving away the answer.
 

imported_hscorpio

Golden Member
Sep 1, 2004
1,617
0
0
Originally posted by: thescreensavers

I looked at it it confused me more.Like How exactly step by step do you solve 10

Did you understand the "~q" column at least? You just reverse whatever q is. The "^" column is a little harder but still very easy once you know what AND is. Think of it as two switches connected in series to a light bulb. Both switches have to be on (true) in order for the lightbulb to be on(true).
 

Soccer55

Golden Member
Jul 9, 2000
1,660
4
81
Originally posted by: thescreensavers
waa ;scraches head: I dont get any of waht your all saying

Let's forget about filling in the blank spots in the truth table for now. Do you at least understand the meanings of the things that are already there?

-Tom
 

Sc4freak

Guest
Oct 22, 2004
953
0
0
Ahaha, do this from the view of a C++ programmer, and take all the operators as bitwise operations :D
 

sao123

Lifer
May 27, 2002
12,653
205
106
Originally posted by: thescreensavers
waa ;scraches head: I dont get any of waht your all saying

Directions:
In each row...Use the values of the first 2 columns, to figure out the values for the second 2 columns.


Example Row 1
given: P is true, Q is true
What is (not Q)? well if Q is true, then the opposite of Q is False. So (not Q) is false.

What is P and (not Q)? Well if we just determined that (not Q) is false.
Hopefully you remember the basic and table...
T + T = T
F + T = F
T + F = F
F + F = F

So then P AND False is False.

So ROW 1 would look like
[T][T][F][F]
 

Mathlete

Senior member
Aug 23, 2004
652
0
71
Think of p, q and r as parts of a statement. In order to test the TRUTH of the statement we need to evaluate the truth of the parts.

You also need to understand the "and" and "or" operators. Two atatements joined by the "and"(/\) operator need to both be true for the statement to be true. In an "or"(\/) statement only one part needs to be true for the statement to be true.

For example:

If p is true
q is true
r is false

Then
p /\ q = True /\ True
=True

p /\ r = True /\ False
=False
 

imported_hscorpio

Golden Member
Sep 1, 2004
1,617
0
0
Here I drew an awesome picture explaining it. Truth

That plus some of the detailed replies given to you here should do it. If you still don't get it then I think you are just not trying or are too frustrated or something. This is pretty basic logic that you probably know but are letting the symbols confuse you.
 

thescreensavers

Diamond Member
Aug 3, 2005
9,916
2
81
so no one can walk me through number 10 click the link and look at question 10. Since you all know it so well You can walk me through it.

:p I am screwed for the test today

BTW: thanks every one for trying to help me. maybe I am just stupid. Or its really basic and I cant see it b/c of this truth table that complicates things.

BTW2: Why would I need to learn this for what job requires knowing a truth table.