Lecture Notes in Discrete Mathematics

Total Page:16

File Type:pdf, Size:1020Kb

Lecture Notes in Discrete Mathematics Lecture Notes in Discrete Mathematics Marcel B. Finan Arkansas Tech University c All Rights Reserved 2 Preface This book is designed for a one semester course in discrete mathematics for sophomore or junior level students. The text covers the mathematical concepts that students will encounter in many disciplines such as computer science, engineering, Business, and the sciences. Besides reading the book, students are strongly encouraged to do all the exer- cises. Mathematics is a discipline in which working the problems is essential to the understanding of the material contained in this book. Students are strongly encouraged to keep up with the exercises and the sequel of concepts as they are going along, for mathematics builds on itself. Instructors can request the solutions to the problems via email: mfi[email protected] Finally, I would like to take the opportunity to thank Professor Vadim Pono- marenko from San Diego State University for pointing out to me many errors in the book and for his valuable suggestions. Marcel B. Finan May 2001 3 4 PREFACE Contents Preface 3 Fundamentals of Mathematical Logic 7 1 Propositions and Related Concepts . 8 2 Conditional and Biconditional Propositions . 18 3 Rules of Inferential Logic . 24 4 Propositions and Quantifiers . 33 5 Arguments with Quantified Premises . 41 6 Project I: Digital Logic Design . 45 7 Project II: Number Systems . 50 Fundamentals of Mathematical Proofs 53 8 Methods of Direct Proof I . 53 9 More Methods of Proof . 59 10 Methods of Indirect Proofs: Contradiction and Contraposition . 64 11 Method of Proof by Induction . 67 12 Project III: Elementary Number Theory and Mathematical Proofs 75 13 Project IV: The Euclidean Algorithm . 77 14 Project V: Induction and the Algebra of Matrices . 79 Fundamentals of Set Theory 83 15 Basic Definitions . 83 16 Properties of Sets . 92 17 Project VI: Boolean Algebra . 100 Relations and Functions 101 18 Equivalence Relations . 101 19 Partial Order Relations . 113 5 6 CONTENTS 20 Functions: Definitions and Examples . 119 21 Bijective and Inverse Functions . 127 22 Recursion . 133 23 Project VII: Applications to Relations . 149 24 Project VIII: Well-Ordered Sets and Lattices . 152 25 Project IX: The Pigeonhole Principle . 153 26 Project X: Countable Sets . 154 27 Project XI: Finite-State Automaton . 156 Introduction to the Analysis of Algorithms 159 28 Time Complexity and O-Notation . 159 29 Logarithmic and Exponential Complexities . 167 30 Θ- and Ω-Notations . 171 Fundamentals of Counting and Probability Theory 175 31 Elements of Counting . 175 32 Basic Probability Terms and Rules . 182 33 Binomial Random Variables . 194 Elements of Graph Theory 201 34 Graphs, Paths, and Circuits . 201 35 Trees . 215 Fundamentals of Mathematical Logic Logic is commonly known as the science of reasoning. The emphasis here will be on logic as a working tool. We will develop some of the symbolic techniques required for computer logic. Some of the reasons to study logic are the following: • At the hardware level the design of 'logic' circuits to implement in- structions is greatly simplified by the use of symbolic logic. • At the software level a knowledge of symbolic logic is helpful in the design of programs. 7 8 FUNDAMENTALS OF MATHEMATICAL LOGIC 1 Propositions and Related Concepts A proposition is any meaningful statement that is either true or false, but not both. We will use lowercase letters, such as p; q; r; ··· ; to represent propositions. We will also use the notation p : 1 + 1 = 3 to define p to be the proposition 1+1 = 3: The truth value of a proposition is true, denoted by T, if it is a true statement and false, denoted by F, if it is a false statement. Statements that are not propositions include questions and commands. Example 1.1 Which of the following are propositions? Give the truth value of the propo- sitions. a. 2 + 3 = 7: b. Julius Caesar was president of the United States. c. What time is it? d. Be quiet ! Solution. a. A proposition with truth value (F). b. A proposition with truth value (F). c. Not a proposition since no truth value can be assigned to this statement. d. Not a proposition Example 1.2 Which of the following are propositions? Give the truth value of the propo- sitions. a. The difference of two primes. b. 2 + 2 = 4: c. Washington D.C. is the capital of New York. d. How are you? Solution. a. Not a proposition. b. A proposition with truth value (T). c. A proposition with truth value (F). 1 PROPOSITIONS AND RELATED CONCEPTS 9 d. Not a proposition New propositions called compound propositions or propositional func- tions can be obtained from old ones by using symbolic connectives which we discuss next. The propositions that form a propositional function are called the propositional variables. Let p and q be propositions. The conjunction of p and q; denoted p ^ q; is the proposition: p and q: This proposition is defined to be true only when both p and q are true and it is false otherwise. The disjunction of p and q; denoted p _ q; is the proposition: p or q: The 'or' is used in an inclusive way. This proposition is false only when both p and q are false, otherwise it is true. Example 1.3 Let p : 5 < 9 q : 9 < 7: Construct the propositions p ^ q and p _ q: Solution. The conjunction of the propositions p and q is the proposition p ^ q : 5 < 9 and 9 < 7: The disjunction of the propositions p and q is the proposition p _ q : 5 < 9 or 9 < 7 Example 1.4 Consider the following propositions p : It is Friday q : It is raining: Construct the propositions p ^ q and p _ q: 10 FUNDAMENTALS OF MATHEMATICAL LOGIC Solution. The conjunction of the propositions p and q is the proposition p ^ q : It is Friday and it is raining: The disjunction of the propositions p and q is the proposition p _ q : It is Friday or It is raining A truth table displays the relationships between the truth values of propo- sitions. Next, we display the truth tables of p ^ q and p _ q: p q p ^ q p q p _ q T T T T T T T F F T F T F T F F T T F F F F F F Let p and q be two propositions. The exclusive or of p and q; denoted p⊕q; is the proposition that is true when exactly one of p and q is true and is false otherwise. The truth table of the exclusive `or' is displayed below p q p ⊕ q T T F T F T F T T F F F Example 1.5 a. Construct a truth table for (p ⊕ q) ⊕ r: b. Construct a truth table for p ⊕ p: Solution. a. p q r p ⊕ q (p ⊕ q) ⊕ r T T T F T T T F F F T F T T F T F F T T F T T T F F T F T T F F T F T F F F F F 1 PROPOSITIONS AND RELATED CONCEPTS 11 b. p p ⊕ p T F F F The final operation on a proposition p that we discuss is the negation of p: The negation of p; denoted ∼ p; is the proposition not p: The truth table of ∼ p is displayed below p ∼ p T F F T Example 1.6 Consider the following propositions: p: Today is Thursday. q: 2 + 1 = 3: r: There is no pollution in New Jersey. Construct the truth table of [∼ (p ^ q)] _ r. Solution. p q r p ^q ∼ (p ^ q) [∼ (p ^ q)] _ r T T T T F T T T F T F F T F T F T T T F F F T T F T T F T T F T F F T T F F T F T T F F F F T T Example 1.7 Find the negation of the proposition p : −5 < x ≤ 0: Solution. The negation of p is the proposition ∼ p : x > 0 or x ≤ −5 A compound proposition is called a tautology if it is always true, regardless of the truth values of the basic propositions which comprise it. 12 FUNDAMENTALS OF MATHEMATICAL LOGIC Example 1.8 a. Construct the truth table of the proposition (p^q)_(∼ p_ ∼ q): Determine if this proposition is a tautology. b. Show that p_ ∼ p is a tautology. Solution. a. p q ∼ p ∼ q ∼ p_ ∼ q p ^ q (p ^ q) _ (∼ p_ ∼ q) T T F F F T T T F F T T F T F T T F T F T F F T T T F T Thus, the given proposition is a tautology. b. p ∼ p p_ ∼ p T F T F T T Again, this proposition is a tautology Two propositions are equivalent if they have exactly the same truth values under all circumstances. We write p ≡ q: Example 1.9 a. Show that ∼ (p _ q) ≡∼ p^ ∼ q: b. Show that ∼ (p ^ q) ≡∼ p_ ∼ q: c. Show that ∼ (∼ p) ≡ p: a. and b. are known as DeMorgan's laws. Solution. a. p q ∼ p ∼ q p _ q ∼ (p _ q) ∼ p^ ∼ q T T F F T F F T F F T T F F F T T F T F F F F T T F T T 1 PROPOSITIONS AND RELATED CONCEPTS 13 b. p q ∼ p ∼ q p ^ q ∼ (p ^ q) ∼ p_ ∼ q T T F F T F F T F F T F T T F T T F F T T F F T T F T T c.
Recommended publications
  • Research Statement
    D. A. Williams II June 2021 Research Statement I am an algebraist with expertise in the areas of representation theory of Lie superalgebras, associative superalgebras, and algebraic objects related to mathematical physics. As a post- doctoral fellow, I have extended my research to include topics in enumerative and algebraic combinatorics. My research is collaborative, and I welcome collaboration in familiar areas and in newer undertakings. The referenced open problems here, their subproblems, and other ideas in mind are suitable for undergraduate projects and theses, doctoral proposals, or scholarly contributions to academic journals. In what follows, I provide a technical description of the motivation and history of my work in Lie superalgebras and super representation theory. This is then followed by a description of the work I am currently supervising and mentoring, in combinatorics, as I serve as the Postdoctoral Research Advisor for the Mathematical Sciences Research Institute's Undergraduate Program 2021. 1 Super Representation Theory 1.1 History 1.1.1 Superalgebras In 1941, Whitehead dened a product on the graded homotopy groups of a pointed topological space, the rst non-trivial example of a Lie superalgebra. Whitehead's work in algebraic topol- ogy [Whi41] was known to mathematicians who dened new graded geo-algebraic structures, such as -graded algebras, or superalgebras to physicists, and their modules. A Lie superalge- Z2 bra would come to be a -graded vector space, even (respectively, odd) elements g = g0 ⊕ g1 Z2 found in (respectively, ), with a parity-respecting bilinear multiplication termed the Lie g0 g1 superbracket inducing1 a symmetric intertwining map of -modules.
    [Show full text]
  • Introduction to Computational Social Choice
    1 Introduction to Computational Social Choice Felix Brandta, Vincent Conitzerb, Ulle Endrissc, J´er^omeLangd, and Ariel D. Procacciae 1.1 Computational Social Choice at a Glance Social choice theory is the field of scientific inquiry that studies the aggregation of individual preferences towards a collective choice. For example, social choice theorists|who hail from a range of different disciplines, including mathematics, economics, and political science|are interested in the design and theoretical evalu- ation of voting rules. Questions of social choice have stimulated intellectual thought for centuries. Over time the topic has fascinated many a great mind, from the Mar- quis de Condorcet and Pierre-Simon de Laplace, through Charles Dodgson (better known as Lewis Carroll, the author of Alice in Wonderland), to Nobel Laureates such as Kenneth Arrow, Amartya Sen, and Lloyd Shapley. Computational social choice (COMSOC), by comparison, is a very young field that formed only in the early 2000s. There were, however, a few precursors. For instance, David Gale and Lloyd Shapley's algorithm for finding stable matchings between two groups of people with preferences over each other, dating back to 1962, truly had a computational flavor. And in the late 1980s, a series of papers by John Bartholdi, Craig Tovey, and Michael Trick showed that, on the one hand, computational complexity, as studied in theoretical computer science, can serve as a barrier against strategic manipulation in elections, but on the other hand, it can also prevent the efficient use of some voting rules altogether. Around the same time, a research group around Bernard Monjardet and Olivier Hudry also started to study the computational complexity of preference aggregation procedures.
    [Show full text]
  • Introduction to Computational Social Choice Felix Brandt, Vincent Conitzer, Ulle Endriss, Jérôme Lang, Ariel D
    Introduction to Computational Social Choice Felix Brandt, Vincent Conitzer, Ulle Endriss, Jérôme Lang, Ariel D. Procaccia To cite this version: Felix Brandt, Vincent Conitzer, Ulle Endriss, Jérôme Lang, Ariel D. Procaccia. Introduction to Computational Social Choice. Felix Brandt, Vincent Conitzer, Ulle Endriss, Jérôme Lang, Ariel D. Procaccia, Handbook of Computational Social Choice, Cambridge University Press, pp.1-29, 2016, 9781107446984. 10.1017/CBO9781107446984. hal-01493516 HAL Id: hal-01493516 https://hal.archives-ouvertes.fr/hal-01493516 Submitted on 21 Mar 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 1 Introduction to Computational Social Choice Felix Brandta, Vincent Conitzerb, Ulle Endrissc, J´er^omeLangd, and Ariel D. Procacciae 1.1 Computational Social Choice at a Glance Social choice theory is the field of scientific inquiry that studies the aggregation of individual preferences towards a collective choice. For example, social choice theorists|who hail from a range of different disciplines, including mathematics, economics, and political science|are interested in the design and theoretical evalu- ation of voting rules. Questions of social choice have stimulated intellectual thought for centuries. Over time the topic has fascinated many a great mind, from the Mar- quis de Condorcet and Pierre-Simon de Laplace, through Charles Dodgson (better known as Lewis Carroll, the author of Alice in Wonderland), to Nobel Laureates such as Kenneth Arrow, Amartya Sen, and Lloyd Shapley.
    [Show full text]
  • Factorisations of Some Partially Ordered Sets and Small Categories
    Factorisations of some partially ordered sets and small categories Tobias Schlemmer Received: date / Accepted: date Abstract Orbits of automorphism groups of partially ordered sets are not necessarily con- gruence classes, i.e. images of an order homomorphism. Based on so-called orbit categories a framework of factorisations and unfoldings is developed that preserves the antisymmetry of the order Relation. Finally some suggestions are given, how the orbit categories can be represented by simple directed and annotated graphs and annotated binary relations. These relations are reflexive, and, in many cases, they can be chosen to be antisymmetric. From these constructions arise different suggestions for fundamental systems of partially ordered sets and reconstruction data which are illustrated by examples from mathematical music theory. Keywords ordered set · factorisation · po-group · small category Mathematics Subject Classification (2010) 06F15 · 18B35 · 00A65 1 Introduction In general, the orbits of automorphism groups of partially ordered sets cannot be considered as equivalence classes of a convenient congruence relation of the corresponding partial or- ders. If the orbits are not convex with respect to the order relation, the factor relation of the partial order is not necessarily a partial order. However, when we consider a partial order as a directed graph, the direction of the arrows is preserved during the factorisation in many cases, while the factor graph of a simple graph is not necessarily simple. Even if the factor relation can be used to anchor unfolding information [1], this structure is usually not visible as a relation. According to the common mathematical usage a fundamental system is a structure that generates another (larger structure) according to some given rules.
    [Show full text]
  • Discrete Mathematics Discrete Probability
    Introduction Probability Theory Discrete Mathematics Discrete Probability Prof. Steven Evans Prof. Steven Evans Discrete Mathematics Introduction Probability Theory 7.1: An Introduction to Discrete Probability Prof. Steven Evans Discrete Mathematics Introduction Probability Theory Finite probability Definition An experiment is a procedure that yields one of a given set os possible outcomes. The sample space of the experiment is the set of possible outcomes. An event is a subset of the sample space. Laplace's definition of the probability p(E) of an event E in a sample space S with finitely many equally possible outcomes is jEj p(E) = : jSj Prof. Steven Evans Discrete Mathematics By the product rule, the number of hands containing a full house is the product of the number of ways to pick two kinds in order, the number of ways to pick three out of four for the first kind, and the number of ways to pick two out of the four for the second kind. We see that the number of hands containing a full house is P(13; 2) · C(4; 3) · C(4; 2) = 13 · 12 · 4 · 6 = 3744: Because there are C(52; 5) = 2; 598; 960 poker hands, the probability of a full house is 3744 ≈ 0:0014: 2598960 Introduction Probability Theory Finite probability Example What is the probability that a poker hand contains a full house, that is, three of one kind and two of another kind? Prof. Steven Evans Discrete Mathematics Introduction Probability Theory Finite probability Example What is the probability that a poker hand contains a full house, that is, three of one kind and two of another kind? By the product rule, the number of hands containing a full house is the product of the number of ways to pick two kinds in order, the number of ways to pick three out of four for the first kind, and the number of ways to pick two out of the four for the second kind.
    [Show full text]
  • Section 4.1 Relations
    Binary Relations (Donny, Mary) (cousins, brother and sister, or whatever) Section 4.1 Relations - to distinguish certain ordered pairs of objects from other ordered pairs because the components of the distinguished pairs satisfy some relationship that the components of the other pairs do not. 1 2 The Cartesian product of a set S with itself, S x S or S2, is the set e.g. Let S = {1, 2, 4}. of all ordered pairs of elements of S. On the set S x S = {(1, 1), (1, 2), (1, 4), (2, 1), (2, 2), Let S = {1, 2, 3}; then (2, 4), (4, 1), (4, 2), (4, 4)} S x S = {(1, 1), (1, 2), (1, 3), (2, 1), (2, 2), (2, 3), (3, 1), (3, 2) , (3, 3)} For relationship of equality, then (1, 1), (2, 2), (3, 3) would be the A binary relation can be defined by: distinguished elements of S x S, that is, the only ordered pairs whose components are equal. x y x = y 1. Describing the relation x y if and only if x = y/2 x y x < y/2 For relationship of one number being less than another, we Thus (1, 2) and (2, 4) satisfy . would choose (1, 2), (1, 3), and (2, 3) as the distinguished ordered pairs of S x S. x y x < y 2. Specifying a subset of S x S {(1, 2), (2, 4)} is the set of ordered pairs satisfying The notation x y indicates that the ordered pair (x, y) satisfies a relation .
    [Show full text]
  • Why Theory of Quantum Computing Should Be Based on Finite Mathematics Felix Lev
    Why Theory of Quantum Computing Should be Based on Finite Mathematics Felix Lev To cite this version: Felix Lev. Why Theory of Quantum Computing Should be Based on Finite Mathematics. 2018. hal-01918572 HAL Id: hal-01918572 https://hal.archives-ouvertes.fr/hal-01918572 Preprint submitted on 11 Nov 2018 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Why Theory of Quantum Computing Should be Based on Finite Mathematics Felix M. Lev Artwork Conversion Software Inc., 1201 Morningside Drive, Manhattan Beach, CA 90266, USA (Email: [email protected]) Abstract We discuss finite quantum theory (FQT) developed in our previous publica- tions and give a simple explanation that standard quantum theory is a special case of FQT in the formal limit p ! 1 where p is the characteristic of the ring or field used in FQT. Then we argue that FQT is a more natural basis for quantum computing than standard quantum theory. Keywords: finite mathematics, quantum theory, quantum computing 1 Motivation Classical computer science is based on discrete mathematics for obvious reasons. Any computer can operate only with a finite number of bits, a bit represents the minimum amount of information and the notions of one half of the bit, one third of the bit etc.
    [Show full text]
  • Relations II
    CS 441 Discrete Mathematics for CS Lecture 22 Relations II Milos Hauskrecht [email protected] 5329 Sennott Square CS 441 Discrete mathematics for CS M. Hauskrecht Cartesian product (review) •Let A={a1, a2, ..ak} and B={b1,b2,..bm}. • The Cartesian product A x B is defined by a set of pairs {(a1 b1), (a1, b2), … (a1, bm), …, (ak,bm)}. Example: Let A={a,b,c} and B={1 2 3}. What is AxB? AxB = {(a,1),(a,2),(a,3),(b,1),(b,2),(b,3)} CS 441 Discrete mathematics for CS M. Hauskrecht 1 Binary relation Definition: Let A and B be sets. A binary relation from A to B is a subset of a Cartesian product A x B. Example: Let A={a,b,c} and B={1,2,3}. • R={(a,1),(b,2),(c,2)} is an example of a relation from A to B. CS 441 Discrete mathematics for CS M. Hauskrecht Representing binary relations • We can graphically represent a binary relation R as follows: •if a R b then draw an arrow from a to b. a b Example: • Let A = {0, 1, 2}, B = {u,v} and R = { (0,u), (0,v), (1,v), (2,u) } •Note: R A x B. • Graph: 2 0 u v 1 CS 441 Discrete mathematics for CS M. Hauskrecht 2 Representing binary relations • We can represent a binary relation R by a table showing (marking) the ordered pairs of R. Example: • Let A = {0, 1, 2}, B = {u,v} and R = { (0,u), (0,v), (1,v), (2,u) } • Table: R | u v or R | u v 0 | x x 0 | 1 1 1 | x 1 | 0 1 2 | x 2 | 1 0 CS 441 Discrete mathematics for CS M.
    [Show full text]
  • Chарtеr 2 RELATIONS
    Ch=FtAr 2 RELATIONS 2.0 INTRODUCTION Every day we deal with relationships such as those between a business and its telephone number, an employee and his or her work, a person and other person, and so on. Relationships such as that between a program and a variable it uses and that between a computer language and a valid statement in this language often arise in computer science. The relationship between the elements of the sets is represented by a structure, called relation, which is just a subset of the Cartesian product of the sets. Relations are used to solve many problems such as determining which pairs of cities are linked by airline flights in a network or producing a useful way to store information in computer databases. In this chapter, we will study equivalence relation, equivalence class, composition of relations, matrix of relations, and closure of relations. 2.1 RELATION A relation is a set of ordered pairs. Let A and B be two sets. Then a relation from A to B is a subset of A × B. Symbolically, R is a relation from A to B iff R Í A × B. If (x, y) Î R, then we can express it by writing xRy and say that x is related to y with relation R. Thus, (x, y) Î R Û xRy 2.2 RELATION ON A SET A relation R on a set A is the subset of A × A, i.e., R Í A × A. Here both the sets A and B are same. -xample Let A = {2, 3, 4, 5} and B = {2, 4, 6, 10, 12}.
    [Show full text]
  • Relations CIS002-2 Computational Alegrba and Number Theory
    Relations CIS002-2 Computational Alegrba and Number Theory David Goodwin [email protected] 11:00, Tuesday 29th November 2011 bg=whiteRelations Equivalence Relations Class Exercises Outline 1 Relations Inverse Relation Composition Reflexive relation 2 Equivalence Symmetric relation Relations Antisymmetric relation Equivalence relation Transitive relation Equivalence classes Partial order 3 Class Exercises bg=whiteRelations Equivalence Relations Class Exercises Outline 1 Relations Inverse Relation Composition Reflexive relation 2 Equivalence Symmetric relation Relations Antisymmetric relation Equivalence relation Transitive relation Equivalence classes Partial order 3 Class Exercises bg=whiteRelations Equivalence Relations Class Exercises Relations A (binary) relation R from a set X to a set Y is a subset of the Cartesian product X × Y . If (x; y 2 R, we write xRy and say that x is related to y. If X = Y , we call R a (binary) relation on X . A function is a special type of relation. A function f from X to Y is a relation from X to Y having the properties: • The domain of f is equal to X . • For each x 2 X , there is exactly one y 2 Y such that (x; y) 2 f bg=whiteRelations Equivalence Relations Class Exercises Relations - example Let X = f2; 3; 4g and Y = f3; 4; 5; 6; 7g If we define a relation R from X to Y by (x; y) 2 R if x j y we obtain R = f(2; 4); (2; 6); (3; 3); (3; 6); (4; 4)g bg=whiteRelations Equivalence Relations Class Exercises Relations - reflexive A relation R on a set X is reflexive if (x; x) 2 X , if (x; y) 2 R for all x 2 X .
    [Show full text]
  • Mathematics 1
    Mathematics 1 MATH 1030 College Algebra (MOTR MATH 130): 3 semester hours Mathematics Prerequisites: A satisfactory score on the UMSL Math Placement Examination, obtained at most one year prior to enrollment in this course, Courses or approval of the department. This is a foundational course in math. Topics may include factoring, complex numbers, rational exponents, MATH 0005 Intermediate Algebra: 3 semester hours simplifying rational functions, functions and their graphs, transformations, Prerequisites: A satisfactory score on the UMSL Math Placement inverse functions, solving linear and nonlinear equations and inequalities, Examination, obtained at most one year prior to enrollment in this polynomial functions, inverse functions, logarithms, exponentials, solutions course. Preparatory material for college level mathematics courses. to systems of linear and nonlinear equations, systems of inequalities, Covers systems of linear equations and inequalities, polynomials, matrices, and rates of change. This course fulfills the University's general rational expressions, exponents, quadratic equations, graphing linear education mathematics proficiency requirement. and quadratic functions. This course carries no credit towards any MATH 1035 Trigonometry: 2 semester hours baccalaureate degree. Prerequisite: MATH 1030 or MATH 1040, or concurrent registration in MATH 1020 Contemporary Mathematics (MOTR MATH 120): 3 either of these two courses, or a satisfactory score on the UMSL Math semester hours Placement Examination, obtained at most one year prior to enrollment Prerequisites: A satisfactory score on the UMSL Math Placement in this course. A study of the trigonometric and inverse trigonometric Examination, obtained at most one year prior to enrollment in this functions with emphasis on trigonometric identities and equations. course. This course presents methods of problem solving, centering on MATH 1045 PreCalculus (MOTR MATH 150): 5 semester hours problems and questions which arise naturally in everyday life.
    [Show full text]
  • How to Choose a Winner: the Mathematics of Social Choice
    Snapshots of modern mathematics № 9/2015 from Oberwolfach How to choose a winner: the mathematics of social choice Victoria Powers Suppose a group of individuals wish to choose among several options, for example electing one of several candidates to a political office or choosing the best contestant in a skating competition. The group might ask: what is the best method for choosing a winner, in the sense that it best reflects the individual pref- erences of the group members? We will see some examples showing that many voting methods in use around the world can lead to paradoxes and bad out- comes, and we will look at a mathematical model of group decision making. We will discuss Arrow’s im- possibility theorem, which says that if there are more than two choices, there is, in a very precise sense, no good method for choosing a winner. This snapshot is an introduction to social choice theory, the study of collective decision processes and procedures. Examples of such situations include • voting and election, • events where a winner is chosen by judges, such as figure skating, • ranking of sports teams by experts, • groups of friends deciding on a restaurant to visit or a movie to see. Let’s start with two examples, one from real life and the other made up. 1 Example 1. In the 1998 election for governor of Minnesota, there were three candidates: Norm Coleman, a Republican; Skip Humphrey, a Democrat; and independent candidate Jesse Ventura. Ventura had never held elected office and was, in fact, a professional wrestler. The voting method used was what is called plurality: each voter chooses one candidate, and the candidate with the highest number of votes wins.
    [Show full text]