Test 1 Flashcards

1
Q

¬

A

NOT, Negation, inverses value, T becomes F, F becomes T.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A

AND, Conjunction, both have to be true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A

Inclusive OR, disjunction, if either is true the compound statement is true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A

Exclusive OR (XOR), exclusive disjunction, only true if ONE statement true but not both.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A

If and only if (IFF), biconditional, only true if both values the same, 2T or 2F.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A

Implies, conditional, only false if true implies false.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to prove something is a WFF?

A
  1. Show individual atoms are WFF e.g p, q, r
  2. If the atoms are WFF so too are (¬p) (p∧q) etc.
  3. Keep expanding for the whole example.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is De Morgan’s Law?

A

A way of pushing ¬ inside brackets.
e.g ¬(p∧q) becomes ¬p ∨ ¬q.
The ¬ goes in front of the atoms, AND switch to OR,
OR switches to AND.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is double negation?

A

When there are 2 NOTs together so they cancel out.

eg ¬¬P ≡ P

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A

Logically equivalent, relationship between WFFs, not a logical connective

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Tautology

A

All outputs true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Satisfiable

A

At least 1 output true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Contradiction

A

All outputs false.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What logical connectives can generate all truth tables?

A

¬, ∧, V

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Associativity

A

When you have the same connective (all ∧ or V) then you don’t need brackets because of associativity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Commutativity

A

p∧q ≡ q∧p and pVq ≡ qVp

17
Q

Idempotence

A

p∧p ≡ p and pVp ≡ p

18
Q

Distributivity

A

p∧(q∨r) ≡ (p∧q)∨(p∧r) and p∨(q∧r) ≡ (p∨q)∧(p∨r)

19
Q

Absorption

A

p ∨ (p ∧ q) ≡ p and p ∧ (p ∨ q) ≡ p

20
Q

|=

A

Semantic turnstile. If on the left of a WFF it means it is a tautology, if on the right of a WFF means it is a Contradiction

21
Q

How to show 2 WFF are logical equivalents?

A

WFF A ≡ WFF B if and only if |= A ↔ B (a tautology)

22
Q

Contingency

A

A WFF that is sometimes true and sometimes false

23
Q

What does Satisfy the WFF mean?

A

A truth assignment that makes a WFF true is said to satisfy the WFF.

24
Q

What does falsify the WFF mean?

A

A truth assignment that makes a WFF false is said to falsify the WFF.

25
Q

The Satisfiability Problem

A

(SAT) Given a wff in PL, decide whether there is some truth assignment to the atoms that make the wff take the value true. A program that solves SAT is called a SAT solver.

26
Q

Statement

A

A Sentence that can be true or false.

27
Q

Compound statement

A

Statements glued together with logical connectives so the T or F can be calculated.

28
Q

How to figure out how many rows a truth table will have?

A

2^n where n is the number of atoms.

29
Q

A

Therefore