Sets. Sets. Examples. 5 2 {2, 3, 5} 2, 3 2 {2, 3, 5} 1 /2 {2, 3, 5}

Similar documents
Table of Laplace Transforms

Algebra 2 Common Core Summer Skills Packet

2 Sets. 2.1 Notation. last edited January 26, 2016

Section 1.1 Definitions and Properties

2.1 Basics of Functions and Their Graphs

Math 1: Solutions to Written Homework 1 Due Friday, October 3, 2008

Chapter 1. Math review. 1.1 Some sets

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology

Only to be used for arranged hours. Order of Operations

9. MATHEMATICIANS ARE FOND OF COLLECTIONS

A.1 Numbers, Sets and Arithmetic

Binary, Hexadecimal and Octal number system

3.7. Vertex and tangent

Grade 6 Math Circles November 6 & Relations, Functions, and Morphisms

Lesson 10: Representing, Naming, and Evaluating Functions

MITOCW watch?v=kz7jjltq9r4

GAP CLOSING. Grade 9. Facilitator s Guide

1.2 Real Numbers. Objectives In this section, you will learn to:

Variables and Data Representation

If Statements, For Loops, Functions

Math Fundamentals for Statistics (Math 52) Unit 3: Addition and Subtraction. Scott Fallstrom and Brent Pickett The How and Whys Guys.

Is the statement sufficient? If both x and y are odd, is xy odd? 1) xy 2 < 0. Odds & Evens. Positives & Negatives. Answer: Yes, xy is odd

Two-Color Counters. Adding Integers, Part II. Key Term. Learning Goals. Essential Ideas. Common Core State Standards for Mathematics

Learning Log Title: CHAPTER 2: FRACTIONS AND INTEGER ADDITION. Date: Lesson: Chapter 2: Fractions and Integer Addition

Section 3.7 Notes. Rational Functions. is a rational function. The graph of every rational function is smooth (no sharp corners)

Signed umbers. Sign/Magnitude otation

Hexadecimal Numbers. Journal: If you were to extend our numbering system to more digits, what digits would you use? Why those?

Section Graphs and Lines

Intro. Scheme Basics. scm> 5 5. scm>

T H E I N T E R A C T I V E S H E L L

Chapter 3. Set Theory. 3.1 What is a Set?

Unit: Rational Number Lesson 3.1: What is a Rational Number? Objectives: Students will compare and order rational numbers.

Limits. f(x) and lim. g(x) g(x)

1

Lesson 6-2: Function Operations

Section 0.3 The Order of Operations

Lesson 10. Student Outcomes. Lesson Notes

LING 510, Lab 3 September 23, 2013

1.1 The Real Number System

Implementing an Algorithm for Boomerang Fraction Sequences in Python

6.1 Evaluate Roots and Rational Exponents

2SKILL. Variables Lesson 6. Remembering numbers (and other stuff)...

Test Requirement Catalog. Generic Clues, Developer Version

From the Grade 8, High School, Functions Progression Document, pp. 7-8:

Coding Workshop. Learning to Program with an Arduino. Lecture Notes. Programming Introduction Values Assignment Arithmetic.

1.2 Adding Integers. Contents: Numbers on the Number Lines Adding Signed Numbers on the Number Line

4.3 Rational Thinking

Skill 1: Multiplying Polynomials

How To Think Like A Computer Scientist, chapter 3; chapter 6, sections

3x - 5 = 22 4x - 12 = 2x - 9

Graphing by. Points. The. Plotting Points. Line by the Plotting Points Method. So let s try this (-2, -4) (0, 2) (2, 8) many points do I.

Paul's Online Math Notes. Online Notes / Algebra (Notes) / Systems of Equations / Augmented Matricies

MAT 003 Brian Killough s Instructor Notes Saint Leo University

Lesson 10 Rational Functions and Equations

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

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

CCNY Math Review Chapter 2: Functions

Comments on drafts of final paper

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

Hot X: Algebra Exposed

Number Systems Using and Converting Between Decimal, Binary, Octal and Hexadecimal Number Systems

Introduction to Counting, Some Basic Principles

L A TEX Primer. Randall R. Holmes. August 17, 2018

Programming with Python

Excerpt from "Art of Problem Solving Volume 1: the Basics" 2014 AoPS Inc.

1.7 Limit of a Function

Review of Operations on the Set of Real Numbers

Piecewise Defined Functions

Meeting 1 Introduction to Functions. Part 1 Graphing Points on a Plane (REVIEW) Part 2 What is a function?

Lesson 12: Order and Compare with Benchmarks

1.1 Defining Functions

Taskbar: Working with Several Windows at Once

1.1. Real Number System Numbers, Numbers,... My Notes ACTIVITY

1.1 - Introduction to Sets

!"!!!"!!"!! = 10!!!!!(!!) = 10! = 1,000,000

Homework # (Latex Handout) by Laura Parkinson

Chapter 1 Operations With Numbers

Relationship of class to object

LECTURE NOTES ON SETS

What s the Difference?

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

2.1 Transforming Linear Functions

Expressions and Casting. Data Manipulation. Simple Program 11/5/2013

GAP CLOSING. Integers. Intermediate / Senior Facilitator s Guide

MATH 021 UNIT 2 HOMEWORK ASSIGNMENTS

1 Review of Functions Symmetry of Functions; Even and Odd Combinations of Functions... 42

Text Input and Conditionals

APPM 2460 Matlab Basics

1 Introduction CHAPTER ONE: SETS

Mathematics 96 (3581) CA (Class Addendum) 2: Associativity Mt. San Jacinto College Menifee Valley Campus Spring 2013

CSCI 1100L: Topics in Computing Lab Lab 1: Introduction to the Lab! Part I

Expressions and Casting

Solving Equations with Inverse Operations

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

Introduction to Programming Style

Introduction to Algorithms / Algorithms I Lecturer: Michael Dinitz Topic: Approximation algorithms Date: 11/18/14

Math Day 2 Programming: How to make computers do math for you

Logical operators: R provides an extensive list of logical operators. These include

3.4. FOR-LOOPS 65. for <v a r i a b l e > in < sequence >:

AP Computer Science Java Mr. Clausen Program 6A, 6B

Transcription:

Sets We won t spend much time on the material from this and the next two chapters, Functions and Inverse Functions. That s because these three chapters are mostly a review of some of the math that s a prerequisite for this course. You don t need to know all of it, but you should know much of it. Identify the topics in these three chapters that you are uncomfortable with, and spend the time to catch up on those topics. Ask your classmates, instructor, or perhaps a tutor to help you out. Sets A set is a collection of objects. For example, the set of countries in North America is a set that contains 3 objects: Canada, Mexico, and the United States. Set notation. Writing {2, 3, 5} is a shorthand for the set that contains the numbers 2, 3, and 5, and no objects other than 2, 3, and 5. The order in which the objects of a set are written doesn t matter. For example, {5, 2, 3} and {2, 3, 5} are the same set. Alternatively, the previous sentence could be written as For example, {5, 2, 3} = {2, 3, 5}. If B is a set, and x is an object contained in B, we write x 2 B. If both x and y are objects contained in B then we write x, y 2 B. If x is not contained in B then we write x/2 B. Examples. 5 2 {2, 3, 5} 2, 3 2 {2, 3, 5} 1 /2 {2, 3, 5} Subsets. One set is a subset of another set if every object in the first set is an object of the second set as well. The set of weekdays is a subset of the set of days of the week, since every weekday is a day of the week. A more succinct way to express the concept of a subset is as follows: The set B is a subset of the set C if every b 2 B is also contained in C. 11

Writing B C is a shorthand for writing B is a subset of C. Writing B * C is a shorthand for writing B is not asubsetofc. Examples. {2, 3} {2, 3, 5} {2, 3, 5} * {3, 5, 7} Set minus. If A and B are sets, we can create a new set named A B (spoken as A minus B ) by starting with the set A and removing all of the objects from A that are also contained in the set B. Examples. {1, 7, 8} {7} = {1, 8} {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} {2, 4, 6, 8, 10} = {1, 3, 5, 7, 9} * * * * * * * * * * * * * Numbers Among the most common sets appearing in math are sets of numbers. There are many di erent kinds of numbers. Below is a list of some that are important for this course. Natural numbers. N = {1, 2, 3, 4,...} Integers. Z = {..., 2, 1, 0, 1, 2, 3,...} Rational numbers. Q is the set of fractions of integers. That is, the numbers contained in Q are exactly those of the form n m where n and m are integers and m 6= 0. For example, 1 3 2 Q and 7 12 2 Q. Real numbers. R is the set of numbers that can be used to measure a distance or magnitude, or the negative of a number used to measure a distance 12

or magnitude. The set of real numbers can be drawn as a line called the number line. ~ p S S S II) i.w 2 lit p 2and are two of very many real numbers that are not rational numbers. Numbers as subsets. Any natural number is an integer. Any integer is a rational number, and any rational number is a real number. We can write this more succinctly as N Z Q R * * * * * * * * * * * * * More set notation Sometimes in math we find it more precise to use a common collection of symbols to express our thoughts. The symbols have less room for interpretation than normal written language, so less confusion arises when we use them. One important example of this is a method we use to describe sets. Let s start with an example, then we ll explain the example: n n o Q = m n, m 2 Z and m 6= 0 Let s break down this equation one symbol at a time. We know that Q is the set of rational numbers, and the equal sign means that Q is the same set as the set on the right of the equal sign. You know that everything on the right of the equal sign is a set because it s all surrounded by the two curly brackets { and }, so now let s discuss everything in between the curly brackets, moving from left to right. The fraction n m means that the set on the right side of the equal sign is a set of fractions. The vertical line immediately following n m means that satisfy the 13

following rules. Everything to the right of the vertical line is the collection of rules that the fractions of the set satisfy, in this case, n and m are integers, n and m 6= 0. Sotheset m n, m 2 Z and m 6= 0 is the set of all fractions n m that satisfy the rules that n and m are integers and m 6= 0. Putting it all together, the expression n n o Q = m n, m 2 Z and m 6= 0 should be read as saying that the set of rational numbers is the set of fractions of integers, as long as the denominator of the fractions do not equal 0. And we already knew that. This is perhaps just a slightly more e cient way to write that. That is, it will be more e cient once you are comfortable with it, and that won t take too long. Examples. Z = n m n 2 Z and m =1 says that the integers are the same set as the set of fractions that satisfy the rules that the numerator is an integer and the denominator equals 1, and that s true. Notice that 3 1 =3andthat 17 3 2 Z. Similarly, 1 = 17 and 17 2 Z, etc. E = n 2 Z n 2 2 Z says that E is the set of integers that satisfy the rule that when you divide them by 2, you still have an integer. Notice that 4 2 =22Z, that 18 2 = 9 2 Z, and that 3 2 /2 Z. So the above equation of sets is telling us is that E is the set of even numbers. N = n 2 Z n>0 says that the natural numbers is the set of all integers that are positive. And that s true. The positive numbers in {..., 2, 1, 0, 1, 2, 3,...} are exactly the numbers {1, 2, 3, 4,...}. {x2{2, 7, 3} x<0 } = { 3} says that 3istheonlynegative number from the collection of 2, 7, and 3. * * * * * * * * * * * * * Intervals Below is a list of 8 important types of subsets of R. In the sets below, a and b are real numbers. That is, a, b 2 R. Also, in the sets below a apple b. Any set of one of these types is called an interval. 14

[a, b] ={ x 2 R a apple x apple b } ( Q b (a, b) ={ x 2 R a<x<b} [a, b) ={ x 2 R a apple x<b} (a, b] ={ x 2 R a<xapple b } [a, 1) ={ x 2 R a apple x }.( Oj.rn1u,imuwsvemO 0.. b ( 411.IJIL.*1L_1*_O 0.. b a. b M$W4*W ( 1,b]={ x 2 R x apple b } b (a, 1) ={ x 2 R a<x} (_ 0 ( 1,b)={ x 2 R x<b} * * * * * * * * * * * * * t The Empty Set The set {4, 7, 9} is the set that contains the numbers 4, 7, and 9. The set {4, 7} contains only 4 and 7, the set {4} contains only 4, and the set {} contains, well, nothing. It probably seems silly to you now, but the set that has nothing in it, that is the set {}, is an important example of a set, and it s a set that comes up frequently in math. It comes up often enough that we ve given it a name. We call it the empty set, because it s the set that has nothing in it. In addition to having its own name, we ve given it its own symbol. That s because if we wrote the empty set as {}, then readers might just wonder whether that s a typo, that perhaps we intended to type something inside of the curly brackets, but just neglected to. Instead, we use the symbol ; to refer to the empty set. 15

Example. If S was the set of all roots of the quadratic x 2 4, and then S = { 2, 2}. If S was the set of all roots of the quadratic x 2, then S = {0}. And if S was the set of all real number roots of the quadratic polynomial x 2 + 1, then S = ;, because x 2 +1hasnorealnumberroots. The Empty Set is a subset of any other set In the explanation a few paragraphs before, we began with the set {4, 7, 9}. We took away an object and were left with the smaller set {4, 7}. Then we took away another object and were left with the still smaller set {4}. We ended by taking away the last object to arrive at a still smaller set, namely the empty set, ;. We can think of a set B as being a subset of another set C if we can remove objects from C to obtain B. In that way we can write ; {4} {4, 7} {4, 7, 9} Of course if C is any set, it doesn t matter which one, and if we took away all of the objects from C, then we d be left with ;. That is to say, regardless of what the set C is. ; C 16

Exercises Determine whether the statements made in #1-15 are true or false. 1.) 3 2 {3, 6, 1} 2.) 1, 6 2 {3, 6, 1} 3.) 4 2 {3, 6, 1} 4.) 4 /2 {3, 6, 1} 5.) {2, 3} {3, 6, 1} 6.) {2, 3} * {3, 6, 1} 7.) ; {3, 6, 1} 8.) {3, 6, 1} {6} = {3, 1} 9.) [1, 3) [1, 3] 10.) 2 2 [1, 3] 11.) 1 2 (1, 3] 12.) 3 2 (1, 3] 13.) [1, 3) (1, 1) 14.) [1, 3) ( 1, 5] 15.) ; [1, 3) Each of the sets in #16-21 is an interval. Name the interval in each of these problems. 16.) [2, 5) (3, 5) 17.) [2, 5) (2, 5) 18.) [2, 5) [4, 5) 19.) [2, 5) {2} 20.) [2, 5) [2, 3) 21.) [2, 5) [2, 4] 17

Let T = {1, 2, 3}. Match the numbered sets on the left to the lettered sets on the right that they equal. 22.) { x 2 T x 2 2 Z } A.) {1, 2, 3} 23.) { x 2 T x 2 N } B.) {1, 2} 24.) { x 2 T x>1 } C.) {1, 3} 25.) { x 2 T x 3 2 Z } D.) {2, 3} 26.) { x 2 T x 2 N } E.) {1} 27.) { x 2 T x 2 /2 Z } F.) {2} 28.) { x 2 T x apple 2 } G.) {3} 29.) { x 2 T 1 x 2 Z } H.) ; 18