Lec1 - Tuple, set,... Flashcards
What is “n-tuple”?
tuple of length n
Name of objects in a tuple
term
True/False (0,1) = (1,0)
False b/c ORDER is matter in a TUPLE
True/False: (0,0,1) = (0,1)
False b/c MAGNITUDE is matter in a TUPLE
What is 0-tuple called?, 1-tuple?, 2-tuple?, 3-tuple?
empty, singleton, pair, triple
What is objects in a set called?
Element
A={0,1} B={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: 0∈A?
True
A={0,1} B={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: 2∈A?
False
A={0,1} B={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: B∈A?
False
A={0,1} B={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: 78∈B?
True
A={0,1} B={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {}∈A?
False
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {}∈{}?
False
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: B∈D?
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {}∈{ {} }?
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {}∈{ {} }?
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {}∈{ {} }?
True
What is a subset if A is a subset of B or A⊆B?
if and only if every element of A also element of B
What is a PROPER SUBSET if A is a proper subset of B or A⊂B?
iff A⊆B and A≠B
What if B is a superset of A?
if and only if every element of A also element of B
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: A⊆A
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: A ⊂ A
False
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: B ⊂ D
False
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: {} ⊂ A
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: ∅ ⊆ {}
True
A={0,1} b={0,1,2,3,…,99}, C={1,1/2,1/3,1/4,…} D={(0,1),3.1,Dumbo,B}.
True/False: A ⊆ B
True
What is a Cartesian product?
A set
What is AxB?
set of all pairs (a,b) in which a∈A and b∈B
What is A^2?, A^3?
set of all pairs (a,a), set of all triples (a,a,a)