Sets and Logic Linear Algebra, Spring 2012

Size: px
Start display at page:

Download "Sets and Logic Linear Algebra, Spring 2012"

Transcription

1 Sets and Logic Linear Algebra, Spring 2012 There is a certain vocabulary and grammar that underlies all of mathematics, and mathematical proof in particular. Mathematics consists of constructing airtight logical arguments, called proofs, to justify certain statements, called theorems, about mathematical objects. Because the mathematical objects we study are all related to sets in one way or another, and because the tools we use to study them are called logic, it is wise for us to begin this class with a cursory review of sets and a brief introduction to logic. When reading this handout or your textbook, go slowly! Make sure you understand every sentence and every formula; if you don t, please come see me in office hours. 1 Sets and set notation 1.1 Basics about sets We begin with a review of some (but not all) basic concepts of sets and set notation. Sets and elements. Intuitively, a set is a collection of objects, which are called its elements or members. Some commonly used sets are C = the set of complex numbers, R = the set of real numbers, Q = the set of rational numbers (quotients), Z = the set of integers (in German, Zahlen), N = the set of positive integers (or natural numbers). Element-list notation. One can name a set by listing, in curly braces, all the objects that the set contains. For example, the statement S = {1, 2, 3} defines S to be the set containing the numbers 1, 2, and 3. The order in which the elements are listed does not matter; thus {1, 2, 3} is the same set as {3, 2, 1} and {2, 1, 3}. Sometimes we use an ellipsis (...) to save ink, especially for sets with infinitely many elements; for example, N = {1, 2, 3,...} If we happen to list an element twice, it still belongs to the set just once ; for example, {1, 2, 3} and {3, 1, 2, 2} are exactly the same set. The symbol. The notation x S means that x is an element of the set S, whereas the notation x / S means that x is not an element of S. For example, 2 N and π R, while 4 5 / Z and 2 / Q.

2 Sets and Logic Linear Algebra, Spring 2012 Page 2 of 15 Sets containing sets. The elements of one set might be other sets; for example, {2, {5}} is the set whose elements are 2 and {5}. So 2 {2, {5}} and {5} {2, {5}}, but 5 / {2, {5}}. (This is because 5 {5}.) The empty set. The empty set, denoted, is a special set which doesn t have any elements; in other words, = {}. One can think of the empty set as a box with nothing inside. (The empty set is a potential source of confusion. Be sure you understand why {0} and 0.) Subsets. Consider two sets A and B. If every element of A is also an element of B, we say that A is a subset of B, and we write A B. For example, Z is a subset of R, but R is not a subset of Z. Every set is a subset of itself. Also, the empty set is a subset of every set. Equality of sets. Two sets are equal if and only if they have the same elements. For example, {1, 2, 3} = {2, 3, 1} = {3, 1, 2, 2, 1, 1, 1, 3, 3} but {2, {5}} {2, 5}. 1.2 Set-builder notation Basic form Another, more powerful way to name a set X is to start with a bigger set U (for universe ) and give a rule that determines whether or not a particular element of U is an element of our set X. For example, we might want to let E be the set of all even integers, which of course is a subset of Z. So we could name that set as which is written symbolically as The set of all x Z such that x is even. E = { x Z : x is even} or { x Z x is even}. The set of all such that The set of all such that The colon and vertical bar are synonyms in these expressions, and are both pronounced such that. The initial { should be pronounced The set of all.... (Do not use : or to mean such that except in this context.) You can think of this as an algorithm: run through all x Z, and for each one decide whether x is even. If so, keep it; if not, throw it out. In the end, you will have the desired set.

3 Sets and Logic Linear Algebra, Spring 2012 Page 3 of 15 As another example, N = {x Z x > 0}, which reads, the set of all x Z such that x > 0. Additional form What if we want to form the set S of all perfect squares (1, 4, 9, 16, etc.)? We could write it as S = {x Z x = k 2 for some k Z}, but that is a little bulky. set-builder notation: Mathematicians therefore have come up with another form of S = {k 2 k Z}, which (as before) is pronounced the set of all k 2 such that k Z. As an algorithm, this says to run through all k Z, and for each one compute k 2 and keep that. We could even add conditions to this; for example, is the set of all squares of odd integers. T = {k 2 k Z and k is odd} 1.3 Unions, intersections, differences, and Venn diagrams The union of two sets A and B, denoted by A B, is the set of all objects that are in A or B (or both): A B = {x : x A or x B} The intersection of A and B is the set of all objects that are in both A and B: A B = {x : x A and x B} For example, {1, 2, 3} {3, 4, 5} = {1, 2, 3, 4, 5} and {1, 2, 3} {3, 4, 5} = {3}. Venn diagrams are a good way to visualize these and other set-theoretic concepts. In Figure 1(a), the inside of the circle on the left represents the contents of A, while the inside of the circle on the right represents B. The shaded region is A B. In Figure 1(b), the shaded region is A B. How would we demonstrate the meaning of A B with a Venn diagram? The difference between two sets A and B, denoted by A \ B or A B, is defined as follows: A \ B = {x A : x / B} Figure 1(c) gives a Venn diagram illustrating this operation. For example, Z \ N is the set of nonpositive integers, i.e. {..., 3, 2, 1, 0}.

4 Sets and Logic Linear Algebra, Spring 2012 Page 4 of 15 A B A B A \ B A B A B A B (a) (b) (c) Figure 1: Venn diagrams of the union, intersection, and set difference of A and B 2 Logic The business of mathematics is proving theorems by constructing proofs that is, airtight logical arguments that must convince every rational reader. Usually in mathematical proofs we express our logic in English 1 words, but in this section we will be using logical symbols to look under the hood at how logic works. For one thing, the mathematical meanings of logical words like or and and are very precise, and using symbols is a good way to understand exactly what is happening. Moreover, when it comes to more complicated logic involving quantifiers and negation, it may actually be easier to work with the symbols than with English sentences. Throughout this section, try to think both symbolically and in English. When you see logical symbols, try coming up with an example and running through the logic in English too. When you see logic in English, try translating it into symbols like P, Q,,,,, etc. When you can easily translate both ways, you will be ready to do proofs. In mathematics, a statement is a sentence that is either true or false, but not both. For example, 6 is an even integer and 4 is an odd integer are statements. (The first one is true, and the second is false.) We will use capital letters such as P and Q to denote statements. 2.1 Logical Operations In arithmetic, we can combine or modify numbers with operations such as +,, etc. Likewise, in logic, we have certain operations for combining or modifying statements. In mathematics, these words have precise meanings, which are given below. Watch out! In some cases, the mathematical meanings of these words differ slightly from, or are more precise than, common English usage. 1 or Latin or Russian or German or Chinese...

5 Sets and Logic Linear Algebra, Spring 2012 Page 5 of 15 Not. The simplest logical operation is negation, denoted by the word not or the symbol. If P is a statement, then not P or P is defined to be true, when P is false; false, when P is true. We can summarize this in the truth table below. To the left of the double line, we see the two possible values for P ; to the right of the double line we read the corresponding values of P. P P T F F T In English, a statement can usually negated by putting the word not before the verb. As an English example, if P = It is snowing, then P = It is not snowing. And. If P and Q are two statements, then the statement P and Q is denoted P Q and is defined to be true, when P and Q are both true; false, when P is false, or Q is false, or both P and Q are false. Since the joins two statements, P and Q, our truth table needs 4 rows to list all the possibilities. P Q P Q T T T T F F F T F F F F If P = It is snowing and Q = My dog is cold, then P Q = It is snowing and my dog is cold. Please note that the word but in English is logically synonymous with and. Saying It is raining but the sun is shining too simply means It is raining and the sun is shining (and I am a little surprised by this!). The extra connotation of surprise attached to the word but is unimportant in logic. Or. If P and Q are two statements, then the statement P or Q is abbreviated P Q and is defined to be true, when P is true or Q is true or both P and Q are true; false, when both P and Q are false.

6 Sets and Logic Linear Algebra, Spring 2012 Page 6 of 15 Be careful! In English, sometimes P or Q means P is true or Q is true, but not both. (For example, a menu might read The steak dinner comes with soup or salad. ) However, this is never, ever the case in mathematics. In mathematics, saying P or Q, or even either P or Q, always allows for the possibility that both P and Q are true, unless we explicitly say otherwise. P Q P Q T T T T F T F T T F F F For example, let P = It is snowing and Q = My dog is cold. Then the statement P Q = It is snowing or my dog is cold (or both). If... then. A more involved relationship is that of logical implication. If P and Q are two statements, then we can form the statement if P then Q, which is abbreviated P Q and pronounced P implies Q. We refer to P as the assumption or hypothesis and Q as the conclusion. Understanding implication is a little tricky. If we claim that the implication P Q is true, we are not claiming that P or Q is necessarily true. 2 Rather, we are making the conditional statement that if P happens to be true, then Q is also true. So if P is false, the statement P Q is vacuously true. Hence the statement P Q is mathematically defined to be true, when P and Q are both true or when P is false; false, when P is true and Q is false. Thus P Q is logically equivalent to Q P, as we see in the following truth tables. P Q P Q T T T T F F F T T F F T P Q P Q P T T F T T F F F F T T T F F T T Students are often bothered the idea of vacuously true. Sometimes it helps to ask the question How could the statement be proved wrong? For example, suppose I claim If there is a blizzard, then there will be no classes. If there is a blizzard, and classes are canceled, then of course I am right. (This is the first row of the truth table.) If there is a blizzard, but classes are not canceled, then of course I am wrong. (This is the second row of the truth table.) But if there is no blizzard, then you cannot prove 2 For example, if I say If there is a blizzard, there will be no classes, I am not actually claiming there is a blizzard, nor that there will really be no classes.

7 Sets and Logic Linear Algebra, Spring 2012 Page 7 of 15 me wrong, so (being innocent until proven guilty) my statement is true. (These are the third and fourth rows of the truth table.) Here is yet another way to understand it: The statement If x > 4, then x 2 > 16 should be true, right? And it should be true for all x, not just for some special x s. So how can it be true when x = 3? If x = 3, then x 4; so the statement is true because it doesn t apply. If and only if. If P and Q are statements, then the statement P if and only if Q or P iff Q or P Q is the claim that P and Q are either both true or both false; that is, P and Q are logically equivalent. In other words, P Q is defined to be true, when P and Q are both true or both false; false, when one of P and Q is true and the other is false. P Q P Q T T T T F F F T F F F T The phrase if and only if may seem a little funny at first, but it does make sense. To say P if Q means If Q, then P in other words, Q P. To say P only if Q means that P only happens if Q does too; hence if P happens, you know Q must also have happened, so P Q. So if either P or Q is true, they both are; likewise if either P or Q is false, they both are false. Order of operations If we encounter a statement like P Q R, how should we interpret it? (P Q) R, or P (Q R)? The following rule is used: Should it be 1. First, do anything in parentheses. 2. Second, apply negations. 3. Third, do. 4. Fourth, do. 5. Finally, do and. So for example, P Q means ( P ) Q, and P Q R means P (Q R). A word of caution: the priority of over isn t very obvious to the eye. Although technically P Q R should automatically mean P (Q R), it s best to explicitly write the parentheses out to make your meaning clear.

8 Sets and Logic Linear Algebra, Spring 2012 Page 8 of Truth tables Truth tables were introduced in the last section. A truth table needs to have as many rows as there are possibilities for each of its variables to be true or false. Thus a truth table with only one variable P only needs two rows, but a truth table with two statements P and Q requires four rows. A truth table with three statements P, Q, and R would need eight rows, and so on. Sometimes you may need to construct a truth table for a complicated statement like (P Q) P. One good approach is to use multiple columns. Just as you would compute a complicated expression like 4(3 (2 + 5) ) by first adding 2 + 5, then taking 3 times that, and so on, so in logic you can do the innermost operations, then the next innermost, and so on. Example: Find the truth table for (P Q) P. Solution: We have a P and a Q, so we ll need 4 rows in our truth table. Now the innermost operation in (P Q) P is finding Q, so let s put that in the first column of the table. P Q Q T T F T F T F T F F F T Next, let s compute P Q and put that in a new column in the table. We go down, row by row, and compare P and Q according to the rule for : if one or the other or both are T, then we put down T; if both are F, then we put down F. Next we need P. P Q Q P Q T T F T T F T T F T F F F F T T P Q Q P Q P T T F T F T F T T F F T F F T F F T T T Finally, we combine the (P Q) and P with an to get our answer: P Q Q P Q P (P Q) P T T F T F F T F T T F F F T F F T F F F T T T T

9 Sets and Logic Linear Algebra, Spring 2012 Page 9 of Converse, inverse, and contrapositive There are three ways of changing the implication P Q into related statements: the converse, the inverse, and the contrapositive. Take as an example the statement If the Cobbers are winning, then we are happy. Writing P = The Cobbers are winning and Q = We are happy, the four related statements are: original P Q If the Cobbers are winning, then we are happy. converse Q P If we are happy, then the Cobbers are winning. inverse P Q If the Cobbers are not winning, then we are not happy. contrapositive Q P If we are not happy, then the Cobbers are not winning. If we examine the truth tables for these statements (below), we see that the converse and inverse always have the same truth values. Similarly the original statement and the contrapositive also always have the same truth values. We say that a statement and its contrapositive are logically equivalent. original converse inverse contrapositive P Q P Q P Q Q P P Q Q P T T F F T T T T T F F T F T T F F T T F T F F T F F T T T T T T Thus you can always replace a statement with its contrapositive, but take care! Neither the converse nor the inverse is logically equivalent to the original statement, nor even implied by it. Many logical mistakes, both inside the classroom and out in the world, are made by taking a true statement and assuming its converse or inverse also holds but that s not true! It is possible for a statement (and its contrapositive) to be true, but the converse (and inverse) to be false. (For example, we might be happy even though the Cobbers are losing, just because we re eating ice cream.) It is also possible for all four statements to be true, but only when P and Q are logically equivalent. Remember, a statement is not equivalent to its converse! 2.4 Quantifiers Consider the sentence x is even. This is not what we have been calling a statement; we can t say whether it is true or false until we know what x is. We call a sentence like this, that depends on the value of x, a statement about x. If we denote the sentence x is even by P (x) then we can think of

10 Sets and Logic Linear Algebra, Spring 2012 Page 10 of 15 the sentence as a function: when you plug in a particular value of x, you get an output of T or F. For example, P (5) = 5 is even = F, but P (72) = 72 is even = T, and so forth. There are three basic ways to turn a statement about x like P (x) into a statement pure and simple. The first, rather boring, way is to say exactly what x is. For example, When x = 6, x is even. The following are two more interesting ways of turning the sentence into a statement: There exists an integer x such that x is even. For every integer x, x is even. The phrases there exists and for every are called quantifiers; they explain which x or x s the statement is referring to. Let us examine the two types of quantifiers in detail. Existential quantifier ( ). An existential quantifier makes a rather modest statement: it says only that there is at least one instance when a claim is satisfied. In other words, it says there exists some x that makes the claim true. Common existential quantifiers in English are some, there exist(s), and at least one. In mathematics, we sometimes abbreviate these with the symbol, which is pronounced there exists. When writing mathematics in English (as opposed to symbols), the words such that usually come between there exists x and the claim. For example, There exists an integer x such that x is even. Moreover, we often want to state in what set we will find this x; we usually do this right after the there exists phrase, as in There exists x Z such that x is even. We can express the whole sentence symbolically, if we like: ( x Z) x is even. Universal quantifier ( ). A universal quantifier, on the other hand, asserts that a claim is always true, no matter what particular x is chosen. Common universal quantifiers in English are every, all, any, whenever, no, and none. The mathematical symbol for a universal quantifier is, which is pronounced for all. In practice, we usually restrict our attention a little bit. If I said For all x, x 2 0, before you decided whether I was right or not, you would naturally ask, What kind of x? Are imaginary numbers allowed? So to make my statement true, I ought to say For all x R, x 2 0. In pure symbols, I would write ( x R) x 2 0.

11 Sets and Logic Linear Algebra, Spring 2012 Page 11 of 15 As an example of the use of quantifiers, we can give precise definitions of the terms even and odd. Definition 1: An integer x is even if and only if there exists an integer y such that x = 2y. Symbolically, x is even means ( y Z) x = 2y. Definition 2: An integer x is odd if and only if there exists an integer y such that x = 2y+1. Symbolically, x is odd means ( y Z) x = 2y + 1. In order to have a statement, every variable needs a quantifier. For example, ( y Z) x = 2y is not a statement, because there is no quantifier for the variable x; thus it is only a statement about x. We can turn it into a genuine statement by using a quantifier to say what x is. Examples: The statement ( x Z)( y Z) x = 2y says that all integers are even. (This is of course false.) The statement ( x Z)( y Z) x = 2y says that there exists at least one even integer. (This is true.) The sentence ( y Z) x = 2y + 1 means that x is odd, so the statement ( (( y ) ( ) ) ( x Z) Z) x = 2y ( y Z) x = 2y + 1 says that every integer x is even or odd. Order of quantifiers Although we might put the quantifier at the end in English, saying x 2 0 for all x R, nevertheless when writing symbolically we always put the quantifiers first: ( x R) x 2 0. If there are multiple quantifiers, the order in which they are written is very important! Changing the order of the quantifiers alters the meaning of a statement dramatically. For example, the statement ( x Z)( y Z) x < y says for every integer x, there is some integer y that is less than x, so it is true. With the quantifiers swapped, however, the statement ( y Z)( x Z) x < y says that there is some maximum integer y that is greater than every integer x, which is patently false.

12 Sets and Logic Linear Algebra, Spring 2012 Page 12 of Negating statements We often need to find the negations of complicated statements (for instance, in finding the contrapositive of a statement). Negating a simple statement is not difficult, but if we add in quantifiers and connectives, it becomes rather tricky. Let us take a look, keeping some English examples in mind. Rules for negating statements with quantifiers: The negation of a statement involving a universal quantifier uses an existential quantifier. In symbols, ( x) P (x) ( x) P (x). For example, the negation of Every piece of candy is sweet would be There exists a piece of candy that is not sweet, say a lemon drop. The negation of a statement involving an existential quantifier uses a universal quantifier. In symbols, ( x) P (x) ( x) P (x). For example, the negation of There exists a cow that is purple would be Every cow is not purple. In short, you can move the across the quantifier, but only if you flip the quantifier from to or vice versa. Remember, you ll still have a when you are done, so the P (x) claim itself will be negated. Rules for negating statements with connectives (DeMorgan s Laws): The negation of P or Q is (not P ) and (not Q). In symbols, (P Q) P Q. For example, the negation of My car is yellow or your truck is green is My car is not yellow and your truck is not green. The negation of P and Q is (not P ) or (not Q). In symbols, (P Q) P Q. For example, the negation of Roses are red and violets are blue is Either roses are not red, or violets are not blue. In short, when you are trying to negate an and- or an or-statement, you can negate each part separately, but you have to flip the connector: and becomes or and or becomes and.

13 Sets and Logic Linear Algebra, Spring 2012 Page 13 of 15 Rule for negating implications It is also possible to negate implications. This is a crucial skill for proving theorems using the method of proof by contradiction. Suppose I asserted that If the Cobbers are winning, then we are happy. How could you prove me wrong? You would have to show me that the Cobbers are indeed winning, but we are nevertheless not happy (perhaps because our ice cream fell on the sidewalk). Symbolically, (P Q) P Q. Example: Negate the statement ( ) ( x Z)[ ( y Z) x 2 = 3y + 1 ( ( z Z) (x = 3z + 1 x = 3z + 2)) ]. Solution: First, we put a not in front of it: ( ) ( ( x Z)[ ( y Z) x 2 = 3y + 1 ( z Z) (x = 3z + 1 x = 3z + 2)) ]. We can move the across the quantifier ( x Z), but it flips to become a : ( ) ( ( x Z) [ ( y Z) x 2 = 3y + 1 ( z Z) (x = 3z + 1 x = 3z + 2)) ]. Now we negate the implication. Remembering that (P Q) becomes P Q, we get ( ) ( ( x Z)[ ( y Z) x 2 = 3y + 1 ( z Z) (x = 3z + 1 x = 3z + 2)) ]. Moving the across the quantifier and flipping it from to, we get ( ) ( ( x Z)[ ( y Z) x 2 = 3y + 1 ( z Z) (x = 3z + 1 x = 3z + 2)) ]. We can negate the or-statement by negating each part and changing to : ( ) ( ( x Z)[ ( y Z) x 2 = 3y + 1 ( z Z) ( (x = 3z + 1) (x = 3z + 2) ))]. Finally, we recognize that we can write (x = 3z +1) more simply as x 3z +1, and likewise for (x = 3z + 2), so our final answer is ( ) ( ( x Z)[ ( y Z) x 2 = 3y + 1 ( z Z) ( (x 3z + 1) (x 3z + 2) ))]. It is good practice to read through this example out loud, trying to understand each logical move in English.

14 Sets and Logic Linear Algebra, Spring 2012 Page 14 of 15 Exercises 1. Write out three elements of the set } {y Z : y2 3 Z. 2. Give the more common name of each of the following sets: (a) {a + bi : a, b R}, where i = 1 (b) { a b : a, b Z, b 0} 3. Write the set of all real numbers that are not square roots of integers in set-builder notation. Your answer should be all mathematical symbols, without any English words. 4. How many subsets does the set {1, 2, 3} have? 5. Construct truth tables for the following statements: (a) P P (b) (P Q) (P Q) (c) (P R) Q (d) P (Q R) 6. Use truth tables to show that P Q and (P Q) (Q P ) are logically equivalent. 7. Let P = Doug is a student and Q = Franz is an engineer. Write each of the following symbolic statements as a proper English sentence. (a) P (b) P Q (c) (P Q) (d) P Q (e) P Q 8. Let P = Quintus worships Mars and Q = Quintus worships Apollo. Translate each of the following English sentences into symbols, using P, Q,,,, and. (a) Quintus worships Mars or Apollo. (b) Quintus worships Mars but not Apollo. (c) If Quintus worships Mars, then he worships Apollo too. (d) Quintus worships Mars only if he worships Apollo too. (e) Quintus worships neither Mars nor Apollo.

15 Sets and Logic Linear Algebra, Spring 2012 Page 15 of Each of the following English sentences is really a compound of simpler statements joined by or. Identify the simple statements, label them as P and Q, and express the compound statement symbolically. (a) John lives on campus, but Fred lives off campus. (b) Easter is either in March or in April. (c) Either Gauss or Riemann proved the Fundamental Theorem of Algebra. (d) The display cases in Jones have bugs and lizards. (e) No Amtrak trains go to Brainerd or Dubuque. 10. State the inverse, converse, and contrapositive of each of the following (you do not need to prove them): (a) If m is an odd integer, then m 2 is odd. (b) If x > 4, then x 2 > 16. (c) If the function f is not continuous at a, then f is not differentiable at a. 11. Rewrite each of the following English statements using the appropriate quantifiers. Let S be the set of all college professors, let P (x) = x likes cheese, and let Q(y) = x is from Wisconsin. (a) All college professors like cheese. (b) Some college professors do not like cheese. (c) If someone does not like cheese, he is not from Wisconsin. (d) Every college professor who is from Wisconsin likes cheese. (e) Every integer has a square root in the real numbers. (f) There is a certain real number that is less than the square of every integer. 12. State the negation of the following: (a) m and n are odd integers. (b) Either m is odd or n is odd. (c) x is a real number and y is an integer. (d) x = 0 or xy > 0, for all numbers x and y in R. (e) x 0 and x + y = y, for some numbers x and y in R. (f) For every number x in R, x 2 > 0. (g) For every x R, there is a number y R such that xy = 1. (h) There is a set S such that for every set T, S T. 13. State the inverse, converse, and contrapositive of the following: (a) If x 2 > x, then either x < 0 or x > 1. (b) Let f and g be functions. If f and g are both differentiable at a, then f + g is differentiable at a.

Introducing Proof 1. hsn.uk.net. Contents

Introducing Proof 1. hsn.uk.net. Contents Contents 1 1 Introduction 1 What is proof? 1 Statements, Definitions and Euler Diagrams 1 Statements 1 Definitions Our first proof Euler diagrams 4 3 Logical Connectives 5 Negation 6 Conjunction 7 Disjunction

More information

Logic, Sets, and Proofs

Logic, Sets, and Proofs Logic, Sets, and Proofs David A. Cox and Catherine C. McGeoch Amherst College 1 Logic Logical Operators. A logical statement is a mathematical statement that can be assigned a value either true or false.

More information

Basic Logic and Proof Techniques

Basic Logic and Proof Techniques Chapter 3 Basic Logic and Proof Techniques Now that we have introduced a number of mathematical objects to study and have a few proof techniques at our disposal, we pause to look a little more closely

More information

PSU MATH RELAYS LOGIC & SET THEORY 2017

PSU MATH RELAYS LOGIC & SET THEORY 2017 PSU MATH RELAYS LOGIC & SET THEORY 2017 MULTIPLE CHOICE. There are 40 questions. Select the letter of the most appropriate answer and SHADE in the corresponding region of the answer sheet. If the correct

More information

3 The language of proof

3 The language of proof 3 The language of proof After working through this section, you should be able to: (a) understand what is asserted by various types of mathematical statements, in particular implications and equivalences;

More information

Exclusive Disjunction

Exclusive Disjunction Exclusive Disjunction Recall A statement is a declarative sentence that is either true or false, but not both. If we have a declarative sentence s, p: s is true, and q: s is false, can we rewrite s is

More information

LECTURE 1. Logic and Proofs

LECTURE 1. Logic and Proofs LECTURE 1 Logic and Proofs The primary purpose of this course is to introduce you, most of whom are mathematics majors, to the most fundamental skills of a mathematician; the ability to read, write, and

More information

Math 38: Graph Theory Spring 2004 Dartmouth College. On Writing Proofs. 1 Introduction. 2 Finding A Solution

Math 38: Graph Theory Spring 2004 Dartmouth College. On Writing Proofs. 1 Introduction. 2 Finding A Solution Math 38: Graph Theory Spring 2004 Dartmouth College 1 Introduction On Writing Proofs What constitutes a well-written proof? A simple but rather vague answer is that a well-written proof is both clear and

More information

Introduction to Basic Proof Techniques Mathew A. Johnson

Introduction to Basic Proof Techniques Mathew A. Johnson Introduction to Basic Proof Techniques Mathew A. Johnson Throughout this class, you will be asked to rigorously prove various mathematical statements. Since there is no prerequisite of a formal proof class,

More information

MATH10040: Chapter 0 Mathematics, Logic and Reasoning

MATH10040: Chapter 0 Mathematics, Logic and Reasoning MATH10040: Chapter 0 Mathematics, Logic and Reasoning 1. What is Mathematics? There is no definitive answer to this question. 1 Indeed, the answer given by a 21st-century mathematician would differ greatly

More information

Chapter 1 Review of Equations and Inequalities

Chapter 1 Review of Equations and Inequalities Chapter 1 Review of Equations and Inequalities Part I Review of Basic Equations Recall that an equation is an expression with an equal sign in the middle. Also recall that, if a question asks you to solve

More information

Topics in Logic and Proofs

Topics in Logic and Proofs Chapter 2 Topics in Logic and Proofs Some mathematical statements carry a logical value of being true or false, while some do not. For example, the statement 4 + 5 = 9 is true, whereas the statement 2

More information

Elementary Linear Algebra, Second Edition, by Spence, Insel, and Friedberg. ISBN Pearson Education, Inc., Upper Saddle River, NJ.

Elementary Linear Algebra, Second Edition, by Spence, Insel, and Friedberg. ISBN Pearson Education, Inc., Upper Saddle River, NJ. 2008 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. APPENDIX: Mathematical Proof There are many mathematical statements whose truth is not obvious. For example, the French mathematician

More information

We have seen that the symbols,,, and can guide the logical

We have seen that the symbols,,, and can guide the logical CHAPTER 7 Quantified Statements We have seen that the symbols,,, and can guide the logical flow of algorithms. We have learned how to use them to deconstruct many English sentences into a symbolic form.

More information

MA103 STATEMENTS, PROOF, LOGIC

MA103 STATEMENTS, PROOF, LOGIC MA103 STATEMENTS, PROOF, LOGIC Abstract Mathematics is about making precise mathematical statements and establishing, by proof or disproof, whether these statements are true or false. We start by looking

More information

a. See the textbook for examples of proving logical equivalence using truth tables. b. There is a real number x for which f (x) < 0. (x 1) 2 > 0.

a. See the textbook for examples of proving logical equivalence using truth tables. b. There is a real number x for which f (x) < 0. (x 1) 2 > 0. For some problems, several sample proofs are given here. Problem 1. a. See the textbook for examples of proving logical equivalence using truth tables. b. There is a real number x for which f (x) < 0.

More information

Study skills for mathematicians

Study skills for mathematicians PART I Study skills for mathematicians CHAPTER 1 Sets and functions Everything starts somewhere, although many physicists disagree. Terry Pratchett, Hogfather, 1996 To think like a mathematician requires

More information

WUCT121. Discrete Mathematics. Logic. Tutorial Exercises

WUCT121. Discrete Mathematics. Logic. Tutorial Exercises WUCT11 Discrete Mathematics Logic Tutorial Exercises 1 Logic Predicate Logic 3 Proofs 4 Set Theory 5 Relations and Functions WUCT11 Logic Tutorial Exercises 1 Section 1: Logic Question1 For each of the

More information

Solving Equations by Adding and Subtracting

Solving Equations by Adding and Subtracting SECTION 2.1 Solving Equations by Adding and Subtracting 2.1 OBJECTIVES 1. Determine whether a given number is a solution for an equation 2. Use the addition property to solve equations 3. Determine whether

More information

LOGIC CONNECTIVES. Students who have an ACT score of at least 30 OR a GPA of at least 3.5 can receive a college scholarship.

LOGIC CONNECTIVES. Students who have an ACT score of at least 30 OR a GPA of at least 3.5 can receive a college scholarship. LOGIC In mathematical and everyday English language, we frequently use logic to express our thoughts verbally and in writing. We also use logic in numerous other areas such as computer coding, probability,

More information

Sets. Alice E. Fischer. CSCI 1166 Discrete Mathematics for Computing Spring, Outline Sets An Algebra on Sets Summary

Sets. Alice E. Fischer. CSCI 1166 Discrete Mathematics for Computing Spring, Outline Sets An Algebra on Sets Summary An Algebra on Alice E. Fischer CSCI 1166 Discrete Mathematics for Computing Spring, 2018 Alice E. Fischer... 1/37 An Algebra on 1 Definitions and Notation Venn Diagrams 2 An Algebra on 3 Alice E. Fischer...

More information

Logic and Propositional Calculus

Logic and Propositional Calculus CHAPTER 4 Logic and Propositional Calculus 4.1 INTRODUCTION Many algorithms and proofs use logical expressions such as: IF p THEN q or If p 1 AND p 2, THEN q 1 OR q 2 Therefore it is necessary to know

More information

Propositional Logic. Spring Propositional Logic Spring / 32

Propositional Logic. Spring Propositional Logic Spring / 32 Propositional Logic Spring 2016 Propositional Logic Spring 2016 1 / 32 Introduction Learning Outcomes for this Presentation Learning Outcomes... At the conclusion of this session, we will Define the elements

More information

Chapter 2. Mathematical Reasoning. 2.1 Mathematical Models

Chapter 2. Mathematical Reasoning. 2.1 Mathematical Models Contents Mathematical Reasoning 3.1 Mathematical Models........................... 3. Mathematical Proof............................ 4..1 Structure of Proofs........................ 4.. Direct Method..........................

More information

Math 300: Foundations of Higher Mathematics Northwestern University, Lecture Notes

Math 300: Foundations of Higher Mathematics Northwestern University, Lecture Notes Math 300: Foundations of Higher Mathematics Northwestern University, Lecture Notes Written by Santiago Cañez These are notes which provide a basic summary of each lecture for Math 300, Foundations of Higher

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

More information

Foundations of Advanced Mathematics, version 0.8. Jonathan J. White

Foundations of Advanced Mathematics, version 0.8. Jonathan J. White Foundations of Advanced Mathematics, version 0.8 Jonathan J. White 1/4/17 2 Chapter 1 Basic Number Theory and Logic Forward These notes are intended to provide a solid background for the study of abstract

More information

CM10196 Topic 2: Sets, Predicates, Boolean algebras

CM10196 Topic 2: Sets, Predicates, Boolean algebras CM10196 Topic 2: Sets, Predicates, oolean algebras Guy McCusker 1W2.1 Sets Most of the things mathematicians talk about are built out of sets. The idea of a set is a simple one: a set is just a collection

More information

Basics of Proofs. 1 The Basics. 2 Proof Strategies. 2.1 Understand What s Going On

Basics of Proofs. 1 The Basics. 2 Proof Strategies. 2.1 Understand What s Going On Basics of Proofs The Putnam is a proof based exam and will expect you to write proofs in your solutions Similarly, Math 96 will also require you to write proofs in your homework solutions If you ve seen

More information

3/29/2017. Logic. Propositions and logical operations. Main concepts: propositions truth values propositional variables logical operations

3/29/2017. Logic. Propositions and logical operations. Main concepts: propositions truth values propositional variables logical operations Logic Propositions and logical operations Main concepts: propositions truth values propositional variables logical operations 1 Propositions and logical operations A proposition is the most basic element

More information

Section 1.3. Let I be a set. When I is used in the following context,

Section 1.3. Let I be a set. When I is used in the following context, Section 1.3. Let I be a set. When I is used in the following context, {B i } i I, we call I the index set. The set {B i } i I is the family of sets of the form B i where i I. One could also use set builder

More information

Seminaar Abstrakte Wiskunde Seminar in Abstract Mathematics Lecture notes in progress (27 March 2010)

Seminaar Abstrakte Wiskunde Seminar in Abstract Mathematics Lecture notes in progress (27 March 2010) http://math.sun.ac.za/amsc/sam Seminaar Abstrakte Wiskunde Seminar in Abstract Mathematics 2009-2010 Lecture notes in progress (27 March 2010) Contents 2009 Semester I: Elements 5 1. Cartesian product

More information

The statement calculus and logic

The statement calculus and logic Chapter 2 Contrariwise, continued Tweedledee, if it was so, it might be; and if it were so, it would be; but as it isn t, it ain t. That s logic. Lewis Carroll You will have encountered several languages

More information

EECS 1028 M: Discrete Mathematics for Engineers

EECS 1028 M: Discrete Mathematics for Engineers EECS 1028 M: Discrete Mathematics for Engineers Suprakash Datta Office: LAS 3043 Course page: http://www.eecs.yorku.ca/course/1028 Also on Moodle S. Datta (York Univ.) EECS 1028 W 18 1 / 26 Why Study Logic?

More information

Logical Reasoning. Chapter Statements and Logical Operators

Logical Reasoning. Chapter Statements and Logical Operators Chapter 2 Logical Reasoning 2.1 Statements and Logical Operators Preview Activity 1 (Compound Statements) Mathematicians often develop ways to construct new mathematical objects from existing mathematical

More information

Writing Mathematical Proofs

Writing Mathematical Proofs Writing Mathematical Proofs Dr. Steffi Zegowitz The main resources for this course are the two following books: Mathematical Proofs by Chartrand, Polimeni, and Zhang How to Think Like a Mathematician by

More information

MATH 135 Fall 2006 Proofs, Part IV

MATH 135 Fall 2006 Proofs, Part IV MATH 135 Fall 006 s, Part IV We ve spent a couple of days looking at one particular technique of proof: induction. Let s look at a few more. Direct Here we start with what we re given and proceed in a

More information

Discrete Basic Structure: Sets

Discrete Basic Structure: Sets KS091201 MATEMATIKA DISKRIT (DISCRETE MATHEMATICS ) Discrete Basic Structure: Sets Discrete Math Team 2 -- KS091201 MD W-07 Outline What is a set? Set properties Specifying a set Often used sets The universal

More information

THE LOGIC OF COMPOUND STATEMENTS

THE LOGIC OF COMPOUND STATEMENTS CHAPTER 2 THE LOGIC OF COMPOUND STATEMENTS Copyright Cengage Learning. All rights reserved. SECTION 2.1 Logical Form and Logical Equivalence Copyright Cengage Learning. All rights reserved. Logical Form

More information

Handout on Logic, Axiomatic Methods, and Proofs MATH Spring David C. Royster UNC Charlotte

Handout on Logic, Axiomatic Methods, and Proofs MATH Spring David C. Royster UNC Charlotte Handout on Logic, Axiomatic Methods, and Proofs MATH 3181 001 Spring 1999 David C. Royster UNC Charlotte January 18, 1999 Chapter 1 Logic and the Axiomatic Method 1.1 Introduction Mathematicians use a

More information

Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction

Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction written by Sarah Peluse, revised by Evangelie Zachos and Lisa Sauermann September 27, 2016 1 Introduction

More information

A Brief Introduction to Proofs

A Brief Introduction to Proofs A Brief Introduction to Proofs William J. Turner October, 010 1 Introduction Proofs are perhaps the very heart of mathematics. Unlike the other sciences, mathematics adds a final step to the familiar scientific

More information

The Nature of Mathematics 13th Edition, Smith Notes. Korey Nishimoto Math Department, Kapiolani Community College October

The Nature of Mathematics 13th Edition, Smith Notes. Korey Nishimoto Math Department, Kapiolani Community College October Mathematics 13th Edition, Smith Notes Korey Nishimoto Math Department, Kapiolani Community College October 9 2017 Expanded Introduction to Mathematical Reasoning Page 3 Contents Contents Nature of Logic....................................

More information

STRATEGIES OF PROBLEM SOLVING

STRATEGIES OF PROBLEM SOLVING STRATEGIES OF PROBLEM SOLVING Second Edition Maria Nogin Department of Mathematics College of Science and Mathematics California State University, Fresno 2014 2 Chapter 1 Introduction Solving mathematical

More information

Proving logical equivalencies (1.3)

Proving logical equivalencies (1.3) EECS 203 Spring 2016 Lecture 2 Page 1 of 6 Proving logical equivalencies (1.3) One thing we d like to do is prove that two logical statements are the same, or prove that they aren t. Vocabulary time In

More information

Foundations of Mathematics MATH 220 FALL 2017 Lecture Notes

Foundations of Mathematics MATH 220 FALL 2017 Lecture Notes Foundations of Mathematics MATH 220 FALL 2017 Lecture Notes These notes form a brief summary of what has been covered during the lectures. All the definitions must be memorized and understood. Statements

More information

In this initial chapter, you will be introduced to, or more than likely be reminded of, a

In this initial chapter, you will be introduced to, or more than likely be reminded of, a 1 Sets In this initial chapter, you will be introduced to, or more than likely be reminded of, a fundamental idea that occurs throughout mathematics: sets. Indeed, a set is an object from which every mathematical

More information

1.1 Statements and Compound Statements

1.1 Statements and Compound Statements Chapter 1 Propositional Logic 1.1 Statements and Compound Statements A statement or proposition is an assertion which is either true or false, though you may not know which. That is, a statement is something

More information

Section 3.1: Direct Proof and Counterexample 1

Section 3.1: Direct Proof and Counterexample 1 Section 3.1: Direct Proof and Counterexample 1 In this chapter, we introduce the notion of proof in mathematics. A mathematical proof is valid logical argument in mathematics which shows that a given conclusion

More information

Theorem. For every positive integer n, the sum of the positive integers from 1 to n is n(n+1)

Theorem. For every positive integer n, the sum of the positive integers from 1 to n is n(n+1) Week 1: Logic Lecture 1, 8/1 (Sections 1.1 and 1.3) Examples of theorems and proofs Theorem (Pythagoras). Let ABC be a right triangle, with legs of lengths a and b, and hypotenuse of length c. Then a +

More information

Chapter 1A -- Real Numbers. iff. Math Symbols: Sets of Numbers

Chapter 1A -- Real Numbers. iff. Math Symbols: Sets of Numbers Fry Texas A&M University! Fall 2016! Math 150 Notes! Section 1A! Page 1 Chapter 1A -- Real Numbers Math Symbols: iff or Example: Let A = {2, 4, 6, 8, 10, 12, 14, 16,...} and let B = {3, 6, 9, 12, 15, 18,

More information

A Little Deductive Logic

A Little Deductive Logic A Little Deductive Logic In propositional or sentential deductive logic, we begin by specifying that we will use capital letters (like A, B, C, D, and so on) to stand in for sentences, and we assume that

More information

Quantifiers. P. Danziger

Quantifiers. P. Danziger - 2 Quantifiers P. Danziger 1 Elementary Quantifiers (2.1) We wish to be able to use variables, such as x or n in logical statements. We do this by using the two quantifiers: 1. - There Exists 2. - For

More information

A Little Deductive Logic

A Little Deductive Logic A Little Deductive Logic In propositional or sentential deductive logic, we begin by specifying that we will use capital letters (like A, B, C, D, and so on) to stand in for sentences, and we assume that

More information

Introduction to Metalogic

Introduction to Metalogic Philosophy 135 Spring 2008 Tony Martin Introduction to Metalogic 1 The semantics of sentential logic. The language L of sentential logic. Symbols of L: Remarks: (i) sentence letters p 0, p 1, p 2,... (ii)

More information

3.1 Universal quantification and implication again. Claim 1: If an employee is male, then he makes less than 55,000.

3.1 Universal quantification and implication again. Claim 1: If an employee is male, then he makes less than 55,000. Chapter 3 Logical Connectives 3.1 Universal quantification and implication again So far we have considered an implication to be universal quantication in disguise: Claim 1: If an employee is male, then

More information

Chapter III. Basic Proof Techniques. Proving the obvious has never been easy. Marty Rubin

Chapter III. Basic Proof Techniques. Proving the obvious has never been easy. Marty Rubin Chapter III Basic Proof Techniques Proving the obvious has never been easy. Marty Rubin The last two chapters were an introduction to the language of mathematics. Knowing the definitions and concepts of

More information

Foundation of proofs. Jim Hefferon.

Foundation of proofs. Jim Hefferon. Foundation of proofs Jim Hefferon http://joshua.smcvt.edu/proofs The need to prove In Mathematics we prove things To a person with a mathematical turn of mind, the base angles of an isoceles triangle are

More information

Before you get started, make sure you ve read Chapter 1, which sets the tone for the work we will begin doing here.

Before you get started, make sure you ve read Chapter 1, which sets the tone for the work we will begin doing here. Chapter 2 Mathematics and Logic Before you get started, make sure you ve read Chapter 1, which sets the tone for the work we will begin doing here. 2.1 A Taste of Number Theory In this section, we will

More information

Fundamentals of Mathematics I

Fundamentals of Mathematics I Fundamentals of Mathematics I Kent State Department of Mathematical Sciences Fall 2008 Available at: http://www.math.kent.edu/ebooks/10031/book.pdf August 4, 2008 Contents 1 Arithmetic 2 1.1 Real Numbers......................................................

More information

Propositional Logic. Fall () Propositional Logic Fall / 30

Propositional Logic. Fall () Propositional Logic Fall / 30 Propositional Logic Fall 2013 () Propositional Logic Fall 2013 1 / 30 1 Introduction Learning Outcomes for this Presentation 2 Definitions Statements Logical connectives Interpretations, contexts,... Logically

More information

Proof Techniques (Review of Math 271)

Proof Techniques (Review of Math 271) Chapter 2 Proof Techniques (Review of Math 271) 2.1 Overview This chapter reviews proof techniques that were probably introduced in Math 271 and that may also have been used in a different way in Phil

More information

CS 173: Induction. Madhusudan Parthasarathy University of Illinois at Urbana-Champaign. February 7, 2016

CS 173: Induction. Madhusudan Parthasarathy University of Illinois at Urbana-Champaign. February 7, 2016 CS 173: Induction Madhusudan Parthasarathy University of Illinois at Urbana-Champaign 1 Induction February 7, 016 This chapter covers mathematical induction, and is an alternative resource to the one in

More information

Practical Algebra. A Step-by-step Approach. Brought to you by Softmath, producers of Algebrator Software

Practical Algebra. A Step-by-step Approach. Brought to you by Softmath, producers of Algebrator Software Practical Algebra A Step-by-step Approach Brought to you by Softmath, producers of Algebrator Software 2 Algebra e-book Table of Contents Chapter 1 Algebraic expressions 5 1 Collecting... like terms 5

More information

1.1 Language and Logic

1.1 Language and Logic c Oksana Shatalov, Spring 2018 1 1.1 Language and Logic Mathematical Statements DEFINITION 1. A proposition is any declarative sentence (i.e. it has both a subject and a verb) that is either true or false,

More information

Equivalence and Implication

Equivalence and Implication Equivalence and Alice E. Fischer CSCI 1166 Discrete Mathematics for Computing February 7 8, 2018 Alice E. Fischer Laws of Logic... 1/33 1 Logical Equivalence Contradictions and Tautologies 2 3 4 Necessary

More information

Numbers that are divisible by 2 are even. The above statement could also be written in other logically equivalent ways, such as:

Numbers that are divisible by 2 are even. The above statement could also be written in other logically equivalent ways, such as: 3.4 THE CONDITIONAL & BICONDITIONAL Definition. Any statement that can be put in the form If p, then q, where p and q are basic statements, is called a conditional statement and is written symbolically

More information

Unit 1. Propositional Logic Reading do all quick-checks Propositional Logic: Ch. 2.intro, 2.2, 2.3, 2.4. Review 2.9

Unit 1. Propositional Logic Reading do all quick-checks Propositional Logic: Ch. 2.intro, 2.2, 2.3, 2.4. Review 2.9 Unit 1. Propositional Logic Reading do all quick-checks Propositional Logic: Ch. 2.intro, 2.2, 2.3, 2.4. Review 2.9 Typeset September 23, 2005 1 Statements or propositions Defn: A statement is an assertion

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 1

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 1 EECS 70 Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 1 Getting Started In order to be fluent in mathematical statements, you need to understand the basic framework of the language

More information

1.4 Mathematical Equivalence

1.4 Mathematical Equivalence 1.4 Mathematical Equivalence Introduction a motivating example sentences that always have the same truth values can be used interchangeably the implied domain of a sentence In this section, the idea of

More information

Section 1.1: Logical Form and Logical Equivalence

Section 1.1: Logical Form and Logical Equivalence Section 1.1: Logical Form and Logical Equivalence An argument is a sequence of statements aimed at demonstrating the truth of an assertion. The assertion at the end of an argument is called the conclusion,

More information

1. SET 10/9/2013. Discrete Mathematics Fajrian Nur Adnan, M.CS

1. SET 10/9/2013. Discrete Mathematics Fajrian Nur Adnan, M.CS 1. SET 10/9/2013 Discrete Mathematics Fajrian Nur Adnan, M.CS 1 Discrete Mathematics 1. Set and Logic 2. Relation 3. Function 4. Induction 5. Boolean Algebra and Number Theory MID 6. Graf dan Tree/Pohon

More information

Implications, Quantifiers, and Venn Diagrams. Implications Logical Quantifiers Venn Diagrams. Different Ways of Stating Implications

Implications, Quantifiers, and Venn Diagrams. Implications Logical Quantifiers Venn Diagrams. Different Ways of Stating Implications E6 PPENDIX E Introduction to Logic E.2 Implications, Quantifiers, and Venn Diagrams Implications Logical Quantifiers Venn Diagrams Implications statement of the form If p, then q is called an implication

More information

Logic and Proofs 1. 1 Overview. 2 Sentential Connectives. John Nachbar Washington University December 26, 2014

Logic and Proofs 1. 1 Overview. 2 Sentential Connectives. John Nachbar Washington University December 26, 2014 John Nachbar Washington University December 26, 2014 Logic and Proofs 1 1 Overview. These notes provide an informal introduction to some basic concepts in logic. For a careful exposition, see, for example,

More information

Mathematical Reasoning. The Foundation of Algorithmics

Mathematical Reasoning. The Foundation of Algorithmics Mathematical Reasoning The Foundation of Algorithmics The Nature of Truth In mathematics, we deal with statements that are True or False This is known as The Law of the Excluded Middle Despite the fact

More information

Manual of Logical Style (fresh version 2018)

Manual of Logical Style (fresh version 2018) Manual of Logical Style (fresh version 2018) Randall Holmes 9/5/2018 1 Introduction This is a fresh version of a document I have been working on with my classes at various levels for years. The idea that

More information

This chapter covers propositional logic and predicate logic at a basic level. Some deeper issues will be covered later.

This chapter covers propositional logic and predicate logic at a basic level. Some deeper issues will be covered later. Chapter 2 Logic This chapter covers propositional logic and predicate logic at a basic level. Some deeper issues will be covered later. 2.1 A bit about style Writing mathematics requires two things. You

More information

Proof strategies, or, a manual of logical style

Proof strategies, or, a manual of logical style Proof strategies, or, a manual of logical style Dr Holmes September 27, 2017 This is yet another version of the manual of logical style I have been working on for many years This semester, instead of posting

More information

CHAPTER 1: Functions

CHAPTER 1: Functions CHAPTER 1: Functions 1.1: Functions 1.2: Graphs of Functions 1.3: Basic Graphs and Symmetry 1.4: Transformations 1.5: Piecewise-Defined Functions; Limits and Continuity in Calculus 1.6: Combining Functions

More information

22 3. STATEMENTS. P : 2 is an even number

22 3. STATEMENTS. P : 2 is an even number Chapter II Logic I am convinced that the act of thinking logically cannot possibly be natural to the human mind. If it were, then mathematics would be everybody s easiest course at school and our species

More information

Some Review Problems for Exam 1: Solutions

Some Review Problems for Exam 1: Solutions Math 3355 Fall 2018 Some Review Problems for Exam 1: Solutions Here is my quick review of proof techniques. I will focus exclusively on propositions of the form p q, or more properly, x P (x) Q(x) or x

More information

Mathmatics 239 solutions to Homework for Chapter 2

Mathmatics 239 solutions to Homework for Chapter 2 Mathmatics 239 solutions to Homework for Chapter 2 Old version of 8.5 My compact disc player has space for 5 CDs; there are five trays numbered 1 through 5 into which I load the CDs. I own 100 CDs. a)

More information

27. THESE SENTENCES CERTAINLY LOOK DIFFERENT

27. THESE SENTENCES CERTAINLY LOOK DIFFERENT 27 HESE SENENCES CERAINLY LOOK DIEREN comparing expressions versus comparing sentences a motivating example: sentences that LOOK different; but, in a very important way, are the same Whereas the = sign

More information

Chapter VI. Relations. Assumptions are the termites of relationships. Henry Winkler

Chapter VI. Relations. Assumptions are the termites of relationships. Henry Winkler Chapter VI Relations Assumptions are the termites of relationships. Henry Winkler Studying relationships between objects can yield important information about the objects themselves. In the real numbers,

More information

2.2 Graphs of Functions

2.2 Graphs of Functions 2.2 Graphs of Functions Introduction DEFINITION domain of f, D(f) Associated with every function is a set called the domain of the function. This set influences what the graph of the function looks like.

More information

Packet #2: Set Theory & Predicate Calculus. Applied Discrete Mathematics

Packet #2: Set Theory & Predicate Calculus. Applied Discrete Mathematics CSC 224/226 Notes Packet #2: Set Theory & Predicate Calculus Barnes Packet #2: Set Theory & Predicate Calculus Applied Discrete Mathematics Table of Contents Full Adder Information Page 1 Predicate Calculus

More information

CISC 1100: Structures of Computer Science

CISC 1100: Structures of Computer Science CISC 1100: Structures of Computer Science Chapter 2 Sets and Sequences Fordham University Department of Computer and Information Sciences Fall, 2010 CISC 1100/Fall, 2010/Chapter 2 1 / 49 Outline Sets Basic

More information

Math 300 Introduction to Mathematical Reasoning Autumn 2017 Proof Templates 1

Math 300 Introduction to Mathematical Reasoning Autumn 2017 Proof Templates 1 Math 300 Introduction to Mathematical Reasoning Autumn 2017 Proof Templates 1 In its most basic form, a mathematical proof is just a sequence of mathematical statements, connected to each other by strict

More information

Dr. Relja Vulanovic Professor of Mathematics Kent State University at Stark c 2008

Dr. Relja Vulanovic Professor of Mathematics Kent State University at Stark c 2008 MATH-LITERACY MANUAL Dr. Relja Vulanovic Professor of Mathematics Kent State University at Stark c 2008 2 Algebraic Epressions 2.1 Terms and Factors 29 2.2 Types of Algebraic Epressions 32 2.3 Transforming

More information

Chapter 2. Reasoning and Proof

Chapter 2. Reasoning and Proof Chapter 2 Reasoning and Proof 2.1 Inductive Reasoning 2.2 Analyze Conditional Statements 2.3 Apply Deductive Reasoning 2.4 Use Postulates and Diagrams 2.5 Algebraic Proofs 2.6 Segments and Angles Proofs

More information

Foundations of Discrete Mathematics

Foundations of Discrete Mathematics Foundations of Discrete Mathematics Chapter 0 By Dr. Dalia M. Gil, Ph.D. Statement Statement is an ordinary English statement of fact. It has a subject, a verb, and a predicate. It can be assigned a true

More information

Chapter 1. Foundations of GMAT Math. Arithmetic

Chapter 1. Foundations of GMAT Math. Arithmetic Chapter of Foundations of GMAT Math In This Chapter Quick-Start Definitions Basic Numbers Greater Than and Less Than Adding and Subtracting Positives and Negatives Multiplying and Dividing Distributing

More information

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS chapter MORE MATRIX ALGEBRA GOALS In Chapter we studied matrix operations and the algebra of sets and logic. We also made note of the strong resemblance of matrix algebra to elementary algebra. The reader

More information

1.5 MATHEMATICAL LANGUAGE

1.5 MATHEMATICAL LANGUAGE 1.5 MATHEMATICAL LANGUAGE Contemporary Calculus The calculus concepts we will explore in this book are simple and powerful, but sometimes subtle. To succeed in calculus you will have to master some techniques,

More information

CS 124 Math Review Section January 29, 2018

CS 124 Math Review Section January 29, 2018 CS 124 Math Review Section CS 124 is more math intensive than most of the introductory courses in the department. You re going to need to be able to do two things: 1. Perform some clever calculations to

More information

27. THESE SENTENCES CERTAINLY LOOK DIFFERENT

27. THESE SENTENCES CERTAINLY LOOK DIFFERENT get the complete book: http://wwwonemathematicalcatorg/getullextullbookhtm 27 HESE SENENCES CERAINLY LOOK DIEREN comparing expressions versus comparing sentences a motivating example: sentences that LOOK

More information

Math 016 Lessons Wimayra LUY

Math 016 Lessons Wimayra LUY Math 016 Lessons Wimayra LUY wluy@ccp.edu MATH 016 Lessons LESSON 1 Natural Numbers The set of natural numbers is given by N = {0, 1, 2, 3, 4...}. Natural numbers are used for two main reasons: 1. counting,

More information

An Introduction to Mathematical Reasoning

An Introduction to Mathematical Reasoning An Introduction to Mathematical Reasoning Matthew M. Conroy and Jennifer L. Taggart University of Washington 2 Version: December 28, 2016 Contents 1 Preliminaries 7 1.1 Axioms and elementary properties

More information

Section 2.1: Introduction to the Logic of Quantified Statements

Section 2.1: Introduction to the Logic of Quantified Statements Section 2.1: Introduction to the Logic of Quantified Statements In the previous chapter, we studied a branch of logic called propositional logic or propositional calculus. Loosely speaking, propositional

More information

Logic. Quantifiers. (real numbers understood). x [x is rotten in Denmark]. x<x+x 2 +1

Logic. Quantifiers. (real numbers understood). x [x is rotten in Denmark]. x<x+x 2 +1 Logic One reason for studying logic is that we need a better notation than ordinary English for expressing relationships among various assertions or hypothetical states of affairs. A solid grounding in

More information