Term
|
Definition
integers {..,-1,0,1,....} |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
Natural numbers
INCLUDES 0
{0, 1, 2, 3,...} |
|
|
Term
|
Definition
positive integers
{1, 2, 3, ...} |
|
|
Term
|
Definition
real numbers - both rational and irrational |
|
|
Term
|
Definition
rational numbers (fraction that involves two integers - ex 4/3) |
|
|
Term
|
Definition
|
|
Term
|
Definition
⌊ x ⌋ Rounds DOWN function floor(-3.75) = -4 floor (3.75) = 3 |
|
|
Term
|
Definition
⌈ x ⌉
Rounds UP function ceiling(-3.75) = -3 ceiling(3.75) = 4 |
|
|
Term
Notation for set membership, and not being in set membership |
|
Definition
Use x ∈ Z for x is an element of Z Cross out ∈ for not an element - similar to not equals to. |
|
|
Term
|
Definition
statement that is either true or false (but never both)
example: 2 < 15
Cannot contain variables (ex: x < 3) |
|
|
Term
truth table example for p ∧ q |
|
Definition
|
|
Term
|
Definition
"not p"
Example: Urbana is not in Illinois |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
True if only ONE is true.
See table:
[image] |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
p implies q and conversely |
|
Definition
|
|
Term
|
Definition
negate both p and q, swap their roles
p → q ¬q → ¬p |
|
|
Term
• If it’s below zero, my car won’t start.
Converse and contrapositive this |
|
Definition
• converse: If my car won’t start, it’s below zero • contrapositive: If my car will start, then it’s not below zero. |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
¬p ∨ q is equivalent to ____ |
|
Definition
|
|
Term
Logical Equivalence Symbol |
|
Definition
≡
Give the same truth table/output |
|
|
Term
|
Definition
¬(p ∧ q) ≡ ¬p ∨ ¬q
¬(p ∨ q) ≡ ¬p ∧ ¬q
¬(¬p) ≡ p
Distributing in ¬ |
|
|
Term
p ∨ (q ∧ r) ≡
p ∧ (q ∨ r) ≡ |
|
Definition
1. (p ∨ q) ∧ (p ∨ r)
2. (p ∧ q) ∨ (p ∧ r) |
|
|
Term
|
Definition
|
|
Term
|
Definition
¬() around whole statement |
|
|
Term
|
Definition
Statement that can be true or false |
|
|
Term
|
Definition
Expresses a range of values in a domain that make something true
Example in english: “some”, “a couple”, “a few”, “many”, “most.” |
|
|
Term
With shorthand and english definitions:
universal quantifier
existential quantifier
unique existence quantifier
How to combine quantifiers? |
|
Definition
universal - "for all" - ∀
existential - "there exists" - ∃
unique existence - "there is a unique" - ∃!
Combine with a comma. |
|
|