2.5 - 2.7

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

Set Identity

An equation involving sets that is true regardless of the contents of the sets in the expression.

2
New cards

Associative Laws

knowt flashcard image
3
New cards

Commutative Laws

knowt flashcard image
4
New cards

Distributive Laws

knowt flashcard image
5
New cards

Identity Laws

knowt flashcard image
6
New cards

Domination Laws

knowt flashcard image
7
New cards

Double Complement Laws

knowt flashcard image
8
New cards

Complement Laws

knowt flashcard image
9
New cards

De Morgan’s Laws

knowt flashcard image
10
New cards

Absorption Laws

knowt flashcard image
11
New cards

What is the entry of ordered pairs? (x,y)

The x comes first, then the y comes second

12
New cards

Cartesian Product

Denoted A X B, it is the set of all ordered pairs in which the first entry is the A and the second entry is the B.

It is important to know A X B is not the same as B X A, as the entry orders would be different.

13
New cards

Ordered triple

an ordered list of three items, denoted as (x,y,z)

14
New cards

n-tuple

an ordered list of 4 or more items. Denoted as (w,x,y,z), increases as the number of items increases.

15
New cards

How is a cartesian product with a set with itself denoted?

A X A, more generally as A^k

16
New cards

Strings

a sequences of characters

17
New cards

how do you find the length of a string?

find the number of characters in the string

18
New cards

what are the characters used in a string called?

the alphabet for the set of strings

19
New cards

Binary String

A string with the alphabet {0,1}

20
New cards

Bit

a character in a binary string

21
New cards

how is a set of binary strings with a length of n denoted?

{0,1}^n

22
New cards

Empty string

string with a length of 0, denoted with the symbol λ

λ = {0,1}^0

23
New cards

Concatenation

string obtained by putting two strings together

ex. s = 010, t = 11

st = 01011

strings can also be concatenated with a single symbol

ex. t0 = 110

24
New cards

What happens when you concatenate a string with λ?

You would still have the string you concatenated λ with, as the empty string wouldn’t add anything

25
New cards

Disjoint

The intersection of two sets are empty (A ∩ B = ∅)

26
New cards

Pairwise Disjoint

Every pair of distinct sets in the sequence is disjoint

27
New cards

Partition

A collection of non-empty subsets of A (A is non-empty) such that each element of A is in exactly one of the subsets.

ex. A = {1,2,3,4,5,6}

A1 = {1,4,5}, A2 = {2,3}, A3 = {6}

A1 - A3 form a partition of A