I] Introduction Flashcards

1
Q

Which type of value is assigned to a statement?

A

Truth (True or False)

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

How is written the negative statement?

A

¬A (none A)

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

How many possibilities is there for a 2 statements operator?

A

2^4

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

What is the symbol for “AND” operator?

A

A∧B

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

What does ∧ mean?

A

True if both are True, otherwise, it’s False

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

What is the symbol for the “OR” operator?

A

A∨B

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

What does ∨ mean?

A

True if one, at least, is True

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

What is the symbol for “Exclusive OR” / “XOR”

A

AwB

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

What does w mean?

A

True if ONLY one statement is True

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

What is the symbol for “equivalence”?

A

A < = > B

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

What does “A < = > B” mean?

A

True when both statement are the same value

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

What is the symbol for “implication”?

A

A=>B

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

What does A=>B mean?

A

True when B is True or both are False

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

What is “contraposition”?

A

A=>B is the same as (¬B)=>(¬A)

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

What is a “set”?

A

Collection (final or not) of elements.

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

How do you denote a set?

A

S={1,2,3,4}

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

What is the symbol for set inclusion?

A

x∈S

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

What is the symbol for a none-inclusion in a set?

A

x∉S

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

How do you write the “empty set”?

A

∅={ }

20
Q

How do you write a “subset?

A

B⊂A

21
Q

How do you write a none-subset?

A

B⊄A

22
Q

How do you write the quantifier “for all”?

A

∀x∈S (All x that belong to S)

23
Q

How do you write the quantifier “at least 1”?

A

∃x∈S (At least 1 x that belong to S)

24
Q

How do you write a “union” of 2 sets?

A

A∪B

25
Q

What does mean A∪B?

A

A∪B= {x⎪x∈A ∨ x∈B}

26
Q

How do you write an “intersection” of 2 sets”?

A

A∩B

27
Q

What does A∩B mean?

A

A∩B={x⎪x∈A ∧ x∈B}

28
Q

A∪∅=?

A

A∪∅=A

29
Q

A∪A=?

A

A∪A=A

30
Q

If B⊂A, A∪B=?

A

A∪B=A

31
Q

A∩∅=?

A

A∩∅=∅

32
Q

A∩A=?

A

A∩A=A

33
Q

If B⊂A, A∩B=?

A

A∩B=B

34
Q

How do you write a “set minus”?

A

A∖B

35
Q

What does mean “A∖B”?

A

A∖B = {x⎪x∈A ∧ x∉B}

36
Q

How do you write a “set complement”?

A

37
Q

What does mean “A̅”?

A

A̅= S∖A

38
Q

∅̅=?

A

∅̅=S∖∅

∅̅=S

39
Q

S̅=?

A

S̅=S∖S

S̅=∅

40
Q

X̅̅=?

A

X̅̅=X

41
Q

What is “commutativity”?

A
A∪B = B∪A
A∩B = B∩A
42
Q

What is “associativity”?

A
A∩(B∩C) = (A∩B)∩C
A∪(B∪C) = (A∪B)∪C
43
Q

What is a “neutral element”?

A

e✻a=a e is the neutral element

44
Q

What are the “neutral elements” for ∪ and ∩?

A

S for ∩ (S∩A = A)

∅ for ∪ (∅∪A = A)

45
Q

What is “involution”?

A

A̅̅ = A

46
Q

What is “distributivity”?

A
A∩(B∪C) = (A∩B)∪(A∩C)
A∪(B∩C) = (A∪B)∩(A∪C)
47
Q

What are “duality equalities” / “De Morgan laws”?

A

(A∪B) bar = A̅∩B̅

(A∩B) bar = A̅∪B̅