5

I was looking at an exercise where it asked the following:

pqpqTTT

So, for the third column, I just put T which was correct but I didn't understand what meant. I have seen but I haven't the arrow. Are they the same thing?

Thanks a bunch!

| cite | improve this question | |
11

The symbol is a connective. It's a symbol which connects two propositions in the context of propositional logic (and its extensions, first-order logic, and so on).

The truth table of is defined to be that pq is false if and only if p is true and q is false.

Indeed this is the same meaning of , but the difference is that pq is a statement about propositions, whereas pq is a proposition. In some contexts, though, people don't make this distinction between material implication (the connective) and logical implication (the arrow). But they are not the same thing in every context of propositional logic.

| cite | improve this answer | |
  • I'll add here that A. N. Prior's textbook Formal Logic has parts of it which read like the following: "Rule: Detachment (α, DαDβγ γ) and (In all cases the sole rule beside substitution is E-detachment: α, Eαβ β. And in my opinion Prior's symbolism comes as clearer here than writing {Eαβ, α} β, since the "" symbol suggests that one transitions from the left-hand side to the right hand side. – Doug Spoonwood Nov 10 '14 at 19:26
1

Given p, then we have q.

or p implies q.

The two arrows mean the same thing.

| cite | improve this answer | |
1

It is a material conditional, or otherwise known as p implies q, or if p, then q

The truth table for that is as follows

p  q  p implies q
T  T  T 
T  F  F
F  T  T
F  F  T

can also be written as .

In computer science, pq can be rewritten as (not p) or q, or !p||q

| cite | improve this answer | |
-2

Now, although I am only a rising 8th grader taking geometry, I can assure you that there is no difference to the arrows. I have seen a two sided arrow (p<-->q), but that is different. The single arrow just indicates a conditional statement.

| cite | improve this answer | |

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.