Appendix F Glossary
Glossary An Informal Glossary of Terms
Many of the words in this glossary are not formally defined in the book either because they are viewed as prerequisites to a course in discrete mathematics or are terms in computer science that some students may be unfamiliar with.
- An.
- When referring to βan entityβ we mean that the object can be any of the elements is some set. For example, if you say that
is an integer, it could be any integer. - Bit.
- The smallest unit of computer memory, normally represented as a 0 or 1.
- Byte.
- Complex Number.
- Composite Integer.
- Constant.
- A numerical value that is unchanging . The value might be unknown and it still may be represented with a symbol. For example if we are discussing the process of sorting a file of
numbers, is considered a constant with respect to the sorting algorithm. Constants can become variables though. If we have designed a sorting algorithm, and want to analyze its efficiency, we would consider to be a variable. - Creative Commons.
- An organization which has created several open licenses for creative works such as Applied Discrete Structures.
- Data Structure.
- A format for organizing, processing, retrieving and storing data.
- Distinct.
- Even Integer.
- Factor.
- If an algebraic expression is the product of several expressions, each of those expressions is a factor.
- Iff.
- Shorthand for βif and only ifβ
- Integer.
- Whole number, whether positive, negative or zero.
- Irrational Number.
- A number that is not equal to any fraction.
is one we prove to be irrational in the book. - LaTeX.
- A markup language used for books and papers with lots of mathematics, which is built on TeX. PreTeXt uses LaTeX as an intermediate format to produce PDF and print output.
- Multiples.
- Natural Numbers.
- In this book, its the numbers 0,1,2,3,4,β¦ . There isnβt 100% agreement here. Some people say its the numbers 1,2,3,4, β¦ . We call those numbers the positive integers. The symbol we use of the natural numbers is
There is no consistent definition of positive complex numbers. - Nonnegative Number.
- A number that is either positive or zero.
- Odd Integer.
- Positive Number.
- A positive number is a number that is greater than zero. Normally visualized as being to the right of zero on a conventional number line. The set of positive integers is denoted
The sets of positive rational and real numbers are denoted and respectively - Powers.
- PreTeXt.
- An authoring and publishing system for authors of textbooks, research articles, and monographs, especially in STEM disciplines. Applied Discrete Structures is produced using PreTeXt.
- Prime.
- A positive integer that is divisible by exactly two positive integers, itself and
One is not prime, but is the oddest prime because itβs even. See also Composite Integer. - Queue.
- A conventional waiting line, with the first come-first serve service rule. A queue is a common Data Structure in computer science. See also Stack.
- Rational Number.
- Real Number.
- For the purposes of this book, think of the numbers on a standard number line. All of the points make up the set of real numbers.
- SageMath.
- An open source computer algebra system for a wide range of symbolic and numerical mathematical computations. Originally named simply Sage.
- Stack.
- A Data Structure similar to a queue, but where the last come-first serve service rule is used. This wouldnβt be a fair waiting line rule, but it is a very useful data structure. See also Queue
- Subtraction.
- Subtraction is really addition of the negation of a number:
- Term.
- If an algebraic expression is the sum of several expressions, each of those expressions is a term. For example there are three terms in the expression
Note that subtraction is considered the same as addition here. - Unique.
- Variable.
- A quantity whose value that can vary within a specified set. Normally represented by an algebraic symbol. For discrete variables it is customary to use the letters in the range from i to n, but this isnβt a rigid rule. Letters at the end of the alphabet are traditionally used for continuous variables.