proofs and sets

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:39 PM on 8/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

28 Terms

1
New cards

witness for ∃x

a value of x that makes p(x) true, proving the truth of the existential formula ∃x,p(x)

2
New cards

witness for ∀x

a value of x that makes p(x) false, proving the falsehood of the universal formula ∀x,p(x)

3
New cards

inductive arguments

arguments to prove ∀ formulae or disprove ∃ formulae, or prove theorems

4
New cards

natural induction

For a predicate p(n) about the natural numbers (n = 0, 1, 2, . . .) natural induction is a proof by the following argument. p(0): base case (prove true, sometimes p(1) can be used as the base case instead) p(k) ⇒ p(k + 1): inductive case (assume p(k) is true then prove it's true for p(k+1) is true too) ∴ ∀n, p(n)

5
New cards

set specification

an expression of the form {member | predicate}, or members can simply be listed in any order {…} e.x. {p | prime(p) ∧ p < 10}, or {2, 3, 5, 7}

6
New cards

natural numbers

N, the set of non-negative whole numbers

7
New cards

integers

Z, the set of whole numbers

8
New cards

empty set

Ø

9
New cards

universal set

U, the set of all available elements in some agreed world of one or more values

10
New cards

set membership notation

x ∈ S means x is a member of set s x ∉ S means x is not a member of set s

11
New cards

axioms of membership

{x|x ∈ S} = S "the set of all objects x such that x is a member of s is equal to the set S" y ∈ {x|p(x)} ≡ p(y) "for an object y, y is a member of the set of things that satisfy property p if and only if y satisfies property p"

12
New cards

subset notation

P ⊆ Q

13
New cards

proper subset notation

P ⊂ Q

14
New cards

subsets as logical connectives

P ⊆ Q ≡ ∀x, x ∈ P ⇒ x ∈ Q P ⊂ Q ≡ (∀x, x ∈ P ⇒ x ∈ Q) ∧ (∃x, x ∈ Q ∧ x ∈ / P)

15
New cards

set equality as logical connectives

P = Q ≡ ∀x, x ∈ P ⇔ x ∈ Q

16
New cards

union and intersection as logical connectives

P ∪ Q = {x|x ∈ P ∨ x ∈ Q} P ∩ Q = {x|x ∈ P ∧ x ∈ Q}

17
New cards

difference

notated as P \ Q the set of all items which are in P and not Q

18
New cards

difference as logical connectives

P \ Q = {x|x ∈ P ∧ x ∉ Q}

19
New cards

distributivity and sets

P ∩ (Q ∪ R) = (P ∩ Q) ∪ (P ∩ R) P ∪ (Q ∩ R) = (P ∪ Q) ∩ (P ∪ R)

20
New cards

complement

denoted P' P' = {x|x ∉ P} = U \ P

21
New cards

disjoint sets

sets with no elements in common

22
New cards

disjoint sets notation

P ⊆ Q 0 P \ Q = P P ∩ Q = Ø P ∪ Q 0 = Q 0

23
New cards

disjoint union

the union of two disjoint sets P and Q is notated using a ∪ sign with a + in the middle

24
New cards

cardinality rule

(P ∪ Q) + #(P ∩ Q) = #P + #Q

25
New cards

powerset

the powerset 2^s of set S is the set containing all subsets of S its cardinality is 2^(#S)

26
New cards

partition

a set of disjoint, non-empty subsets of a set, where every element of the parent set is included in one of the subsets (the exception to these rules is the partition of Ø, where the partition will itself be Ø)

27
New cards

∃!

means "there exists only one"

28
New cards

number of distinct partitions of a set

for a sett with n elements

parts(0) = 1

parts(n) = (n-1)Σ (n-1)Cj x parts(n-j-1)

where C(n,j) = n!/j!(n-j)! is the number of ways of choosing an j-element subset from an n element set