does order matter for substrings and subsets
Order matters in substring but not subsets
A ⊆ B (subset)
x ∈ A ⇒ x ∈ B
A ∈ B (element)
A ∈ B
A ∪ B (union)
x ∈ A or x ∈ B
A ∩ B (and)
x ∈ A and x ∈ B
A \ B (difference)
x ∈ A and x ∉ B
A = B
A ⊆ B and B ⊆ A
How to calculate number of subset?
2^n where n is the length of the set