predicates

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/8

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:18 PM on 8/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

9 Terms

1
New cards

predicate

a proposition whose inputs can take values other than true/false, such as numeric values

2
New cards

predicate definition example: adult

adult(s): for some x, age(s, x) ∧ x ≥ 18 adult(s) ≡ ∃x,(age(s, x) ∧ x ≥ 18)

3
New cards

predicate definition example: prime

prime(x): for all k, factor(k, x) ⇒ k = 1 xor k =x prime(x) ≡ ∀k,(factor(k, x) ⇒ k = 1 xor k =x) (underlying logic: any number k that is a factor of x, is equal to either 1 or x, but not both as 1 is not a prime number)

4
New cards

existential forumula

denoted ∃x, p(x) a formula that is considered true as long as it is true for at least one value equal to a chain of statements linked by ∨: ∃x, p(x) ≡ p(1) ∨ p(2) ∨ p(3) ∨ . . .

5
New cards

universal formula

denoted ∀x, p(x) a formula that is considered true only if it is true for all values equal to a chain of statements linked by ∧: ∀x, p(x) ≡ p(1) ∧ p(2) ∧ p(3) ∧ . . .

6
New cards

quantifier

the symbol ∃ or ∀

7
New cards

de morgan's law and quantifiers

de morgan's law extends to quantifiers ¬(∃x, p(x)) ≡ ∀x, ¬p(x) ¬(∀x, p(x)) ≡ ∃x, ¬p(x)

8
New cards

restricting values of a quantified statement

∀x,(r(x) ⇒ p(x)) "for all x of type r, p(x)" ∃x,(r(x) ∧ q(x)) "for some x of type r, q(x)"

9
New cards

de morgan's law and predicates

¬(∃x,(r(x) ∧ p(x)) ≡ ∀x,(r(x) ⇒ ¬p(x)) ¬(∀x,(r(x) ⇒ p(x)) ≡ ∃x,(r(x) ∧ ¬p(x))