I] Introduction Flashcards

(47 cards)

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”?

20
Q

How do you write a “subset?

21
Q

How do you write a none-subset?

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?

25
What does mean A∪B?
A∪B= {x⎪x∈A ∨ x∈B}
26
How do you write an "intersection" of 2 sets"?
A∩B
27
What does A∩B mean?
A∩B={x⎪x∈A ∧ x∈B}
28
A∪∅=?
A∪∅=A
29
A∪A=?
A∪A=A
30
If B⊂A, A∪B=?
A∪B=A
31
A∩∅=?
A∩∅=∅
32
A∩A=?
A∩A=A
33
If B⊂A, A∩B=?
A∩B=B
34
How do you write a "set minus"?
A∖B
35
What does mean "A∖B"?
A∖B = {x⎪x∈A ∧ x∉B}
36
How do you write a "set complement"?
37
What does mean "A̅"?
A̅= S∖A
38
∅̅=?
∅̅=S∖∅ | ∅̅=S
39
S̅=?
S̅=S∖S | S̅=∅
40
X̅̅=?
X̅̅=X
41
What is "commutativity"?
``` A∪B = B∪A A∩B = B∩A ```
42
What is "associativity"?
``` A∩(B∩C) = (A∩B)∩C A∪(B∪C) = (A∪B)∪C ```
43
What is a "neutral element"?
e✻a=a e is the neutral element
44
What are the "neutral elements" for ∪ and ∩?
S for ∩ (S∩A = A) | ∅ for ∪ (∅∪A = A)
45
What is "involution"?
A̅̅ = A
46
What is "distributivity"?
``` A∩(B∪C) = (A∩B)∪(A∩C) A∪(B∩C) = (A∪B)∩(A∪C) ```
47
What are "duality equalities" / "De Morgan laws"?
(A∪B) bar = A̅∩B̅ | (A∩B) bar = A̅∪B̅