Glossary
Glossary
Glossary
VLORBIK
1. Glossary
finite (adj.) Limited in extent. A set is finite if it is possible (at least in principle) to
list its elements in order from first to last. Thus, for example, {1, 2, 3, . . . , 1, 000, 000, 000}
is a finite set but { 12 , 31 , 14 , . . .} is not. See infinity.
hex (adj.) Short for hexadecimal.
hexadecimal (adj.) Base sixteen. Because 16 = 24 , “hex” notation translates easily to
and from binary (one hex digit ↔ four bits).
identity element (n.) For S a set with operation ◦, an element e ∈ S is called
absorbing if for every s ∈ S, one has e ◦ s = s ◦ e = s. For example, zero is an identity
element for the operation of addition, 1 is an identity element for multiplication, and t
(true) and f (false) are elements for the operations of conjunction and disjunction
respectively.
implication (n.) (1) The operation defined at implies.
(2) A conditional statement.
implies (n.) The logical operation (also known as “implication”) denoted by ⇒. Thus
“p ⇒ q” is pronounced “p implies q” (another common pronunciation is “if p then q”). This
compound statement is true unless q is false while at the same time p is true.
infinite (adj.) Not finite; without end.
infinite loop (n.) See circular definition.
integers (n.) The set Z = {. . . − 2, −1, 0, 1, 2, 3, . . .}.
intersection (n.) The intersection of sets X and Y is denoted by X ∩ Y and consists
of all the elements of X that are at the same time also elements of Y . The corresponding
logical operation is conjunction.
invalid (adj.) Not valid.
ISBN (n.) The International Standard Book Number used by publishers throughout
the world to identify books. An example of an error-detecting code based on equivalence
mod eleven.
lexicographer (n.) A harmless drudge, according to Samuel Johnson. Examples include
Ambrose Bierce, Josepha Heifetz Byrne, Sir James Murray, and Voltaire.
lexicographic (adj.) A generalization of “alphabetic” as applied to ordering the objects
of a set.
logically equivalent (adj.) Two statements are logically equivalent when every pos-
sible assignment of the values true and false to the boolean variables of the statements
makes the truth values of the two statements match (both true or both false). In other
words, statements are equivalent if they “have the same truth table”.
logical operation (n.) An operation on statements. Examples include conjunction,
disjunction, implication, and negation.
mod (adv.) Given a natural number n > 1, the natural numbers a ≤ b are said to be
equivalent (mod n), and we write a ≡n b, when n divides b − a (this amounts to the
same thing as saying that a and b have the same remainder on division by n).
modular (adj.) Involving a modulus.
modulus (n.) The number n in the mod n equivalence a ≡n b is called the modulus
of the equivalence.
GLOSSARY 5
natural numbers (n.) The set N = {0, 1, 2, 3 . . .}. Some texts refer to the set {1, 2, 3, . . .}
(the counting numbers or the positive integers) as the natural numbers, so particular care
is required on this point. Throughout this text, the convention is that zero is a natural
number.
negate (vt.) To form the negation of (a statement).
negation (n.) The logical operation commonly known as “not” and abbreviated by
∼. The corresponding operation for sets is complement. The negation of a statement
is true when the original statement is false and false when the original statement is true.
not (n.) The logical operation formally known as “negation” and abbreviated by ∼.
Thus “∼p” is pronounced “not p” and is true when p is false (and false when p is true).
numeral (n.) A written or typographic symbol representing a number. For example “3”,
“III”, and “112 ” are numerals representing the number three in Hindu-Arabic, Roman, and
binary notations.
octal (adj.) Base eight. Because 8 = 23 , octal notation translates easily to and from
binary (one octal digit ↔ three bits).
operand (n.) An “input” to an operation on a set.
operation (n.) An operation on a set can be thought of as a device taking a certain
number of elements of the set as “input” and producing an element of the set as “output”.
The “input” elements are known as operands. An example of a unary (one operand)
operation is logical negation: this operation on the set of statements turns true inputs
into false outputs and false into true. Examples of binary operations (two operands)
include the familiar arithmetic operations (+, −, ·, ÷) on sets of numbers, set operations
(∩, ∪,0 ) on sets of sets, logical operations (∧, ∨, ∼, ⇒) on sets of propositions, and many
others.
or (n.) The logical operation formally known as “disjunction” and abbreviated by ∨.
Thus the compound statement “p ∨ q” is pronounced “p or q” and is true when at least
one of the statements represented by the variables is true.
parity (n.) The parity of the natural number n is even or odd (depending, of course,
on whether 2 divides n or not).
partition (1) (n.) A splitting-into-parts. Given a set S, a collection of subsets of S
is called a partition of S provided that (i) none of the subsets is empty and (ii) every
element of S belongs to exactly one of the subsets. The sets of a partition are sometimes
referred to as equivalence classes.
(2) (vt.) To form a partition of (a set).
pixel (n.) (Derived from picture element). The location for a single “dot” in a computer
graphic output device.
place value (n.) A base n positional notation system uses the rightmost digit for
“ones”, the next digit to the right for “n’s”, and so on — multiplying by n at each move to
the left. For example, the “8” in 187 (= 18710 ) is in the tens place, and the “1” in 1000002
is in the thirty-twos place (32 = 25 ). Compare face value.
premise (n.) A statement assumed to be true for purposes of argument.
prime (adj.) The natural number n is prime if it has exactly two natural number
factors: 1 and itself (note in particular that 1 is not prime). Thus the set of prime
6 VLORBIK
truth table (n.) A display showing the result of every possible substitution of values
for the boolean variables of a statement or sequence of statements.
union (n.) The union of sets X and Y is denoted by X ∪ Y and consists of all of
the elements of X together with all of the elements of Y . The corresponding logical
operation is disjunction.
universal set (n.) A universal set U for a particular context is a set containing every
element of interest for that context. One advantage of defining a universal set is that for
an arbitrary set S one may then speak of the set of things not in S (the complement of
S, denoted by S 0 ).
valid (adj.) . An argument form is valid provided that whenever the premises are
true, the conclusion will also be true. Not to be confused with “true” — it is possible
for a valid argument to have a false conclusion (and for an invalid argument to have a
true conclusion).
validity (n.) “Correctness”. See valid.
variable (n.) A typographical symbol used to represent an (arbitrarily chosen) element
of a set. Common examples are arithmetic variables (representing numbers) and logical
or boolean variables (representing statements or their logical values—true or false).
well-formed formula (n.) A string of symbols that “makes sense” according to the
rules of a particular system. Usually used in the context of the system of boolean algebra.
wff (n.) Abbreviation for well-formed formula. Pronounced “woof”.
zero (n.) The least natural number (no pun intended). The identity element for
the operation of addition: x + 0 = x. The absorbing element of multiplication: x · 0 = 0.
The rôle of the numeral 0 as a face value in a base ten numeration system apparently
originated in India in the second century b.c.e..