Appendix: a brief history of numbers

Size: px
Start display at page:

Download "Appendix: a brief history of numbers"

Transcription

1 Appendix: a brief history of numbers God created the natural numbers. Everything else is the work of man. Leopold Kronecker ( ) Fundamentals of Computing (2, appendix) 1

2 Natural numbers Natural numbers 0, 1, 2, 3, 4,... have two main purposes: they can be used for counting there are 3 apples on the table they can be used for ordering this is the 3rd largest city in the country What s the largest number? Numeral systems A numeral is a symbol or group of symbols that represents a number Unary: numeral means 7 Decimal: numeral 456 means ( ) + ( ) + ( ) numeral 101 means ( ) + ( ) + ( ) Binary: numeral 101 means (1 2 2 ) + (0 2 1 ) + (1 2 0 ),... i.e., decimal 5 Fundamentals of Computing (2, appendix) 2

3 Basic arithmetic operations Addition (+) + =, = 12,... Multiplication ( ) =, 7 5 = 35,... Operations + and are defined for all natural numbers: if n and m are natural numbers then n + m and n m are natural numbers as well Subtraction ( ) (inverse of +) 12 7 = 5 What is 7 12? Division (/) (inverse of ) 35/7 = 5 What is 7/35? For any natural numbers a and b 0, there are unique numbers q (quotient) and r (remainder) such that 0 r < b and a = (b q)+r If r = 0 then we say that a is divisible by b For example, 26 = , or 26/10 is 2 with remainder 6 Fundamentals of Computing (2, appendix) 3

4 Prime numbers A prime number (or prime) is a natural number greater than 1 whose only positive divisors are 1 and itself. Or for short: a prime number is a natural number with exactly two natural divisors. The property of being a prime is called primality. The sequence of prime numbers begins 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37,... The fundamental theorem of arithmetic: every natural number larger than 1 can be written as a product of primes in a unique way, i.e., unique except for the order. Primes are thus the basic building blocks of the natural numbers. For example, we can write = and any other such factorisation of will be identical except for the order of the factors. Euclid ( BC): There are infinitely many prime numbers. (Why?) The largest known prime, as of August 2008, is 2 43,112,609 1 (this number is 12, 978, 189 digits long). In 2005, the largest known prime was (9, 152, 052 digits long). Fundamentals of Computing (2, appendix) 4

5 Two open problems Goldbach s conjecture (1742): every even number a > 2 can be represented as the sum a = b + c of two prime numbers b and c For example, 18 = , 100 = ,... Shnirelman (1931) showed that every natural number can be represented as a sum of at most 300, 000 primes. This result was subsequently improved by many authors; currently, the best known result is due to O. Ramaré, who in 1995 showed that every even number n 4 is in fact the sum of at most 6 primes. Twin prime conjecture: there are infinitely many twin primes, pairs of primes with difference 2, such as 5 and 7, or 29 and 31 On May 26, 2004, R. Arenstorf of Vanderbilt University submitted a 38-page proof that there are, in fact, infinitely many twin primes. On June 3, M. Balazard of University Bordeaux reported that Lemma 8 on page 35 is false. As is typical in mathematical proofs, the defect may be correctable or a substitute method may repair the defect. Arenstorf withdrew his proof on June 8, noting A serious error has been found in the paper, specifically, Lemma 8 is incorrect. Largest known twins: and Fundamentals of Computing (2, appendix) 5

6 Integer and rational numbers by generalisation By closing the natural numbers under subtraction (inverse of +) we obtain integer numbers..., 3, 2, 1, 0, 1, 2,... By closing the integer numbers under division (inverse of ) we obtain rational numbers of the form m/n, where m, n are integers and n 0 Another reason for introducing rational numbers is to use them for approximate measurements (length, area, weight, time, etc.). For example, 12 hours 35 minutes, that is hours Decimal representation of rational numbers 833/100 = 8.33 = 8 + 3/10 + 3/100 = /3 = = 0 + 3/10 + 3/ / /11 = = 0 + 0/10 + 9/ / / (with 09 recurring) Any rational number which cannot be expressed as a (finite) decimal fraction has a unique infinite decimal expansion ending with recurring decimals. Fundamentals of Computing (2, appendix) 6

7 Basic arithmetic laws The rationals m/n are still called numbers (remember, originally only natural numbers were numbers ) because basic arithmetic laws extend to rational numbers as well. Namely, for all natural and, moreover, rational numbers, we have a + b = b + a (commutativity of +) a + (b + c) = (a + b) + c (associativity of +) a b = b a (commutativity of ) a (b c) = (a b) c (associativity of ) a (b + c) = (a b) + (a c) (distributivity of over +) Interesting: the rule ( 1) ( 1) = 1 (which is basic for multiplication of negative numbers) is a consequence of our desire to keep distributivity for rational numbers. This rule cannot be proved; it was created or declared artificially without violating the basic arithmetic laws. Fundamentals of Computing (2, appendix) 7

8 Basic arithmetic operations (cont.) Exponentiation: given a rational number a and a natural number n, a n = a a a }{{} n for n > 0, a 0 = 1 Radicals or roots: given a rational a > 0 and a natural n, the nth root or radical of a is the number b, written as n a, such that b n = a a n m = m a n a b = 1 a b Logarithm: the logarithm of a number a relative to a base b is the number c, written as log b a, such that b c = a. For example, log 2 32 = 5 Radicals and logarithms are not defined for all rational numbers... What is 2? What is log 2 3? What is 1? Fundamentals of Computing (2, appendix) 8

9 Irrational numbers Claim: log 2 3 is irrational (in the sense that there are no integer numbers n and m such that log 2 3 = n/m) Proof by contradiction (or reductio ad absurdum): (1) Assume, hypothetically, that there are integers n and m such that log 2 3 = n/m (2) Then show that this assumption leads us to an absurd, impossible situation, that is, to a contradiction Indeed, log 2 3 = n/m means that 2 n = 3 m. But this is impossible, since 2 n is even and 3 m is odd. Therefore, log 2 3 cannot be rational. Fundamentals of Computing (2, appendix) 9

10 Irrational numbers (cont.) Claim: 2 is irrational Proof: (1) Assume the contrary, that is, 2 = a/b for some integers a and b. (2) By dividing both a and b by all the factors that are common to both, we obtain 2 = m/n, for some integers m and n having no common factors So we have 2 n = m. Squaring both sides we obtain 2n 2 = m 2, and therefore m should be even, that is, m = 2k for some integer k. So we have 2n 2 = (2k) 2, so 2n 2 = 4k 2, and so n 2 = 2k 2. Therefore, n should be even as well. So 2 is a common factor of m and n. But they have no common factor, which is a contradiction Fundamentals of Computing (2, appendix) 10

11 Sad story :-) The discovery of irrational numbers is usually attributed to Pythagoras, more specifically to the Pythagorean Hippasus of Metapontum, who produced a (most likely geometrical) proof of the irrationality of the square root of 2. The story goes that Hippasus discovered irrational numbers when trying to represent the square root of 2 as a fraction (proof above). However Pythagoras believed in the absoluteness of rational numbers, and could not accept the existence of irrational numbers. He could not disprove their existence through logic, but his beliefs would not accept the existence of irrational numbers and so he sentenced Hippasus to death by drowning. Fundamentals of Computing (2, appendix) 11

12 Real numbers By Pythagoras Theorem, 2 can be regarded as the length of the hypotenuse in the right-angled triangle with legs of length 1 We can approximate this length by means of rational numbers and obtain a sequence 1, 1.4, 1.41, , ,... The three dots indicate that there would still be more dots to come, no matter how many more might be added to the end. (Why?) We can define 2 as the limit of this sequence. In this respect, 1/3 is represented as , 1 as (Remember, periodic fractions represent rational numbers.) In general, real numbers can be defined as decimal (or binary, or... ) fractions that have an infinite sequence of digits to the right of the decimal (binary, etc.) point. Real numbers measure continuous quantities like lengthes, weights, etc. Fundamentals of Computing (2, appendix) 12

13 Real numbers and computers A real number is said to be computable if there exists an algorithm that yields its digits. As we shall see later, most real numbers are not computable. Some constructivists accept the existence of only those reals that are computable. The set of definable numbers is broader, but still only countable. Computers can only approximate most real numbers. Most commonly, they can represent a certain subset of the rationals exactly, via either floating point numbers or fixed-point numbers, and these rationals are used as an approximation for other nearby real values. Arbitrary-precision arithmetic is a method to represent arbitrary rational numbers, limited only by available memory, but more commonly one uses a fixed number of bits of precision determined by the size of the processor registers. In addition to these rational values, computer algebra systems are able to treat many irrational numbers exactly by storing an algebraic description (such as 2) rather than their rational approximation. Fundamentals of Computing (2, appendix) 13

14 Graphs of arithmetic functions exponential order of growth 2 x x 2 x quadratic order of growth linear order of growth log 10 x logarithmic order of growth seconds years (Age of the universe years) Fundamentals of Computing (2, appendix) 14

15 Prefixes indicating quantity Prefix Symbol Size Decimal equivalent Comes from Greek nano n dwarf micro µ small milli m Latin thousand centi c Latin hundred deci d Latin tenth deca da, D a factor of ten hecto h, H hundred kilo k, K thousand mega M great giga G giant tera T monster Fundamentals of Computing (2, appendix) 15

16 However, in Computer Science... Tera can sometimes mean (2 40 ) instead of , especially in the term terabyte Giga can sometimes mean (2 30 ) for information units, e.g., gigabit or gigabyte, but can also denote of other quantities, e.g., transfer rates: 1 gigabit/s = bit/s Mega can sometimes denote (2 20 ) of information units, e.g., a megabyte, but can denote (10 6 ) of other quantities, for example, transfer rates: 1 megabit/s = bit/s Kilo does not always exactly denote 1000 but is usually equivalent to 1024 (2 10 ), most often when denoting storage. For example, a kilobyte is frequently 1024 bytes, and not 1000 bytes as it should be. A common convention is to use k for 1000 and K for Fundamentals of Computing (2, appendix) 16

Apply basic properties of real and complex numbers in constructing mathematical arguments (e.g., if a < b and c < 0, then ac > bc)

Apply basic properties of real and complex numbers in constructing mathematical arguments (e.g., if a < b and c < 0, then ac > bc) ALGEBRA (SMR Domain ) Algebraic Structures (SMR.) Skill a. Apply basic properties of real and complex numbers in constructing mathematical arguments (e.g., if a < b and c < 0, then ac > bc) Basic Properties

More information

REAL NUMBERS. Any positive integer a can be divided by another positive integer b in such a way that it leaves a remainder r that is smaller than b.

REAL NUMBERS. Any positive integer a can be divided by another positive integer b in such a way that it leaves a remainder r that is smaller than b. REAL NUMBERS Introduction Euclid s Division Algorithm Any positive integer a can be divided by another positive integer b in such a way that it leaves a remainder r that is smaller than b. Fundamental

More information

ARITHMETIC AND BASIC ALGEBRA

ARITHMETIC AND BASIC ALGEBRA C O M P E T E N C Y ARITHMETIC AND BASIC ALGEBRA. Add, subtract, multiply and divide rational numbers expressed in various forms Addition can be indicated by the expressions sum, greater than, and, more

More information

not to be republished NCERT REAL NUMBERS CHAPTER 1 (A) Main Concepts and Results

not to be republished NCERT REAL NUMBERS CHAPTER 1 (A) Main Concepts and Results REAL NUMBERS CHAPTER 1 (A) Main Concepts and Results Euclid s Division Lemma : Given two positive integers a and b, there exist unique integers q and r satisfying a = bq + r, 0 r < b. Euclid s Division

More information

NUMBERS( A group of digits, denoting a number, is called a numeral. Every digit in a numeral has two values:

NUMBERS( A group of digits, denoting a number, is called a numeral. Every digit in a numeral has two values: NUMBERS( A number is a mathematical object used to count and measure. A notational symbol that represents a number is called a numeral but in common use, the word number can mean the abstract object, the

More information

CHAPTER 1 NUMBER SYSTEMS. 1.1 Introduction

CHAPTER 1 NUMBER SYSTEMS. 1.1 Introduction N UMBER S YSTEMS NUMBER SYSTEMS CHAPTER. Introduction In your earlier classes, you have learnt about the number line and how to represent various types of numbers on it (see Fig..). Fig.. : The number

More information

Introduction Integers. Discrete Mathematics Andrei Bulatov

Introduction Integers. Discrete Mathematics Andrei Bulatov Introduction Integers Discrete Mathematics Andrei Bulatov Discrete Mathematics - Integers 9- Integers God made the integers; all else is the work of man Leopold Kroenecker Discrete Mathematics - Integers

More information

Fundamentals. Introduction. 1.1 Sets, inequalities, absolute value and properties of real numbers

Fundamentals. Introduction. 1.1 Sets, inequalities, absolute value and properties of real numbers Introduction This first chapter reviews some of the presumed knowledge for the course that is, mathematical knowledge that you must be familiar with before delving fully into the Mathematics Higher Level

More information

Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers

Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers Warm-up Problems 1. What is a prime number? Give an example of an even prime number and an odd prime number. (a) Circle the prime

More information

As the title suggests, we tackle three famous theorems in this chapter. 4.1 The Fundamental Theorem of Arithmetic

As the title suggests, we tackle three famous theorems in this chapter. 4.1 The Fundamental Theorem of Arithmetic Chapter 4 Three Famous Theorems As the title suggests, we tackle three famous theorems in this chapter. 4.1 The Fundamental Theorem of Arithmetic The goal of this section is to prove The Fundamental Theorem

More information

SEVENTH EDITION and EXPANDED SEVENTH EDITION

SEVENTH EDITION and EXPANDED SEVENTH EDITION SEVENTH EDITION and EXPANDED SEVENTH EDITION Slide 5-1 Chapter 5 Number Theory and the Real Number System 5.1 Number Theory Number Theory The study of numbers and their properties. The numbers we use to

More information

Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers Solutions

Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers Solutions Math Circle Beginners Group February 28, 2016 Euclid and Prime Numbers Solutions Warm-up Problems 1. What is a prime number? Give an example of an even prime number and an odd prime number. A prime number

More information

UNIT 10 NUMBER SYSTEMS, NUMBER THEORY, EXPONENTS AND LOGARITHMS

UNIT 10 NUMBER SYSTEMS, NUMBER THEORY, EXPONENTS AND LOGARITHMS UNIT 10 NUMBER SYSTEMS, NUMBER THEORY, EXPONENTS AND LOGARITHMS Number Systems, Number Theory, Exponents and Logarithms Structure 10.1 Introduction 10.2 Objectives 10.3 Number Systems 10.3.1 Sets of Numbers

More information

Physics 11. Unit 1 Mathematical Toolkits

Physics 11. Unit 1 Mathematical Toolkits Physics 11 Unit 1 Mathematical Toolkits 1 1.1 Measurement and scientific notations Système International d Unités (SI Units) The base units for measurement of fundamental quantities. Other units can be

More information

MATHEMATICS X l Let x = p q be a rational number, such l If p, q, r are any three positive integers, then, l that the prime factorisation of q is of t

MATHEMATICS X l Let x = p q be a rational number, such l If p, q, r are any three positive integers, then, l that the prime factorisation of q is of t CHAPTER 1 Real Numbers [N.C.E.R.T. Chapter 1] POINTS FOR QUICK REVISION l Euclid s Division Lemma: Given two positive integers a and b, there exist unique integers q and r satisfying a = bq + r, 0 r

More information

CSE 1400 Applied Discrete Mathematics Proofs

CSE 1400 Applied Discrete Mathematics Proofs CSE 1400 Applied Discrete Mathematics Proofs Department of Computer Sciences College of Engineering Florida Tech Fall 2011 Axioms 1 Logical Axioms 2 Models 2 Number Theory 3 Graph Theory 4 Set Theory 4

More information

What is proof? Lesson 1

What is proof? Lesson 1 What is proof? Lesson The topic for this Math Explorer Club is mathematical proof. In this post we will go over what was covered in the first session. The word proof is a normal English word that you might

More information

Ron Paul Curriculum Mathematics 8 Lesson List

Ron Paul Curriculum Mathematics 8 Lesson List Ron Paul Curriculum Mathematics 8 Lesson List 1 Introduction 2 Algebraic Addition 3 Algebraic Subtraction 4 Algebraic Multiplication 5 Week 1 Review 6 Algebraic Division 7 Powers and Exponents 8 Order

More information

Classify, graph, and compare real numbers. Find and estimate square roots Identify and apply properties of real numbers.

Classify, graph, and compare real numbers. Find and estimate square roots Identify and apply properties of real numbers. Real Numbers and The Number Line Properties of Real Numbers Classify, graph, and compare real numbers. Find and estimate square roots Identify and apply properties of real numbers. Square root, radicand,

More information

A number that can be written as, where p and q are integers and q Number.

A number that can be written as, where p and q are integers and q Number. RATIONAL NUMBERS 1.1 Definition of Rational Numbers: What are rational numbers? A number that can be written as, where p and q are integers and q Number. 0, is known as Rational Example:, 12, -18 etc.

More information

Topics Covered in This Chapter:

Topics Covered in This Chapter: Introduction to Powers of 10 Topics Covered in This Chapter: I-1: Scientific Notation I-2: Engineering Notation and Metric Prefixes I-3: Converting between Metric Prefixes I-4: Addition and Subtraction

More information

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS THE REAL NUMBER SYSTEM C O M P E T E N C Y 1 THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS This competency section reviews some of the fundamental

More information

PRE-ALGEBRA SUMMARY WHOLE NUMBERS

PRE-ALGEBRA SUMMARY WHOLE NUMBERS PRE-ALGEBRA SUMMARY WHOLE NUMBERS Introduction to Whole Numbers and Place Value Digits Digits are the basic symbols of the system 0,,,, 4,, 6, 7, 8, and 9 are digits Place Value The value of a digit in

More information

Unit 2 Physical Quantities & Measuring Length

Unit 2 Physical Quantities & Measuring Length Unit 2 Physical Quantities & Measuring Length Lesson Objectives Show understanding that all physical quantities consist of a numerical magnitude and a unit Recall the following base quantities and their

More information

Part IA Numbers and Sets

Part IA Numbers and Sets Part IA Numbers and Sets Definitions Based on lectures by A. G. Thomason Notes taken by Dexter Chua Michaelmas 2014 These notes are not endorsed by the lecturers, and I have modified them (often significantly)

More information

The Real Number System

The Real Number System MATH 337 The Real Number System Sets of Numbers Dr. Neal, WKU A set S is a well-defined collection of objects, with well-defined meaning that there is a specific description from which we can tell precisely

More information

Part 2 - Beginning Algebra Summary

Part 2 - Beginning Algebra Summary Part - Beginning Algebra Summary Page 1 of 4 1/1/01 1. Numbers... 1.1. Number Lines... 1.. Interval Notation.... Inequalities... 4.1. Linear with 1 Variable... 4. Linear Equations... 5.1. The Cartesian

More information

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS The real number SySTeM C O M P E T E N C Y 1 THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS This competency section reviews some of the fundamental

More information

Solutions to Assignment 1

Solutions to Assignment 1 Solutions to Assignment 1 Question 1. [Exercises 1.1, # 6] Use the division algorithm to prove that every odd integer is either of the form 4k + 1 or of the form 4k + 3 for some integer k. For each positive

More information

Twitter: @Owen134866 www.mathsfreeresourcelibrary.com Prior Knowledge Check 1) Factorise each polynomial: a) x 2 6x + 5 b) x 2 16 c) 9x 2 25 2) Simplify the following algebraic fractions fully: a) x 2

More information

CHAPTER 1. REVIEW: NUMBERS

CHAPTER 1. REVIEW: NUMBERS CHAPTER. REVIEW: NUMBERS Yes, mathematics deals with numbers. But doing math is not number crunching! Rather, it is a very complicated psychological process of learning and inventing. Just like listing

More information

Radical Expressions and Graphs 8.1 Find roots of numbers. squaring square Objectives root cube roots fourth roots

Radical Expressions and Graphs 8.1 Find roots of numbers. squaring square Objectives root cube roots fourth roots 8. Radical Expressions and Graphs Objectives Find roots of numbers. Find roots of numbers. The opposite (or inverse) of squaring a number is taking its square root. Find principal roots. Graph functions

More information

Determining Conversion Factors for Metric Units

Determining Conversion Factors for Metric Units Determining Conversion Factors for Metric Units Reading: Section 2.2: Units PRELAB ASSIGNMENT: Complete on a separate sheet. Your answer should be typewritten. Define: Base unit English system Metric system

More information

Chapter 2 Measurements & Calculations. Quantity: A thing that can be measured. ex. Length (6.3 ft), mass (35 kg), and time (7.2 s)

Chapter 2 Measurements & Calculations. Quantity: A thing that can be measured. ex. Length (6.3 ft), mass (35 kg), and time (7.2 s) Chapter 2 Measurements & Calculations Quantity: A thing that can be measured. ex. Length (6.3 ft), mass (35 kg), and time (7.2 s) Measurements can be expressed in a variety of units: Example: length(cm,

More information

KNOWLEDGE OF NUMBER SENSE, CONCEPTS, AND OPERATIONS

KNOWLEDGE OF NUMBER SENSE, CONCEPTS, AND OPERATIONS DOMAIN I. COMPETENCY 1.0 MATHEMATICS KNOWLEDGE OF NUMBER SENSE, CONCEPTS, AND OPERATIONS Skill 1.1 Compare the relative value of real numbers (e.g., integers, fractions, decimals, percents, irrational

More information

Give algebraic and numeric examples to support your answer. Which property is demonstrated when one combines like terms in an algebraic expression?

Give algebraic and numeric examples to support your answer. Which property is demonstrated when one combines like terms in an algebraic expression? Big Idea(s): Algebra is distinguished from arithmetic by the systematic use of symbols for values. Writing and evaluating expressions with algebraic notation follows the same rules/properties as in arithmetic.

More information

PRIME NUMBERS YANKI LEKILI

PRIME NUMBERS YANKI LEKILI PRIME NUMBERS YANKI LEKILI We denote by N the set of natural numbers: 1,2,..., These are constructed using Peano axioms. We will not get into the philosophical questions related to this and simply assume

More information

10.1. Square Roots and Square- Root Functions 2/20/2018. Exponents and Radicals. Radical Expressions and Functions

10.1. Square Roots and Square- Root Functions 2/20/2018. Exponents and Radicals. Radical Expressions and Functions 10 Exponents and Radicals 10.1 Radical Expressions and Functions 10.2 Rational Numbers as Exponents 10.3 Multiplying Radical Expressions 10.4 Dividing Radical Expressions 10.5 Expressions Containing Several

More information

CHAPTER 1 NUMBER SYSTEMS. 1.1 Introduction

CHAPTER 1 NUMBER SYSTEMS. 1.1 Introduction N UMBER S YSTEMS NUMBER SYSTEMS CHAPTER. Introduction In your earlier classes, you have learnt about the number line and how to represent various types of numbers on it (see Fig..). Fig.. : The number

More information

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS

THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS The real number SySTeM C O M P E T E N C Y 1 THE TEACHER UNDERSTANDS THE REAL NUMBER SYSTEM AND ITS STRUCTURE, OPERATIONS, ALGORITHMS, AND REPRESENTATIONS This competency section reviews some of the fundamental

More information

Math Glossary. Version September 1, Next release: On or before September 30, for the latest version.

Math Glossary. Version September 1, Next release: On or before September 30, for the latest version. Math Glossary Version 0.1.1 September 1, 2003 Next release: On or before September 30, 2003. E-mail edu@ezlink.com for the latest version. Copyright 2003 by Brad Jolly All Rights Reserved Types of Numbers

More information

Chapter 17. Proof by Contradiction The method

Chapter 17. Proof by Contradiction The method Chapter 17 Proof by Contradiction This chapter covers proof by contradiction. This is a powerful proof technique that can be extremely useful in the right circumstances. We ll need this method in Chapter

More information

Associative property

Associative property Addition Associative property Closure property Commutative property Composite number Natural numbers (counting numbers) Distributive property for multiplication over addition Divisibility Divisor Factor

More information

and LCM (a, b, c) LCM ( a, b) LCM ( b, c) LCM ( a, c)

and LCM (a, b, c) LCM ( a, b) LCM ( b, c) LCM ( a, c) CHAPTER 1 Points to Remember : REAL NUMBERS 1. Euclid s division lemma : Given positive integers a and b, there exists whole numbers q and r satisfying a = bq + r, 0 r < b.. Euclid s division algorithm

More information

Basic math skills you should already have

Basic math skills you should already have Basic math skills you should already have Physics 102 Goderya Why Measurements? A basic scientific activity Measure is to gain information. Measurements allow us to compare Example: A body temperature

More information

1.1 - Scientific Theory

1.1 - Scientific Theory 1.1 - Scientific Theory Babylonians/Egyptians Observation for the practical Religious Agriculture Pseudosciences (science + nonscience) Alchemy Astrology, etc. Greeks Good Theoreticians (knowledge for

More information

MA094 Part 2 - Beginning Algebra Summary

MA094 Part 2 - Beginning Algebra Summary MA094 Part - Beginning Algebra Summary Page of 8/8/0 Big Picture Algebra is Solving Equations with Variables* Variable Variables Linear Equations x 0 MA090 Solution: Point 0 Linear Inequalities x < 0 page

More information

PHYSICS. Chapter 1 Review. Rounding Scientific Notation Factor Label Conversions

PHYSICS. Chapter 1 Review. Rounding Scientific Notation Factor Label Conversions PHYSICS Chapter 1 Review Rounding Scientific Notation Factor Label Conversions The Tools Of PHYSICS Metric Prefixes Prefix Symbol Meaning Kilo K 1000 Deci d tenth Centi c hundreth Milli m thousandth Prefix

More information

Algebra I. Course Outline

Algebra I. Course Outline Algebra I Course Outline I. The Language of Algebra A. Variables and Expressions B. Order of Operations C. Open Sentences D. Identity and Equality Properties E. The Distributive Property F. Commutative

More information

GLOSSARY TERM DEFINITIONS

GLOSSARY TERM DEFINITIONS Course: 1205080 M/J Mathematics 3, Advanced RELATED GLOSSARY TERM DEFINITIONS (79) Absolute value: Algebraic expression: Angle: Approximate: Area: Benchmark: Central tendency: Congruent: Continuous data:

More information

Grade 8 Chapter 7: Rational and Irrational Numbers

Grade 8 Chapter 7: Rational and Irrational Numbers Grade 8 Chapter 7: Rational and Irrational Numbers In this chapter we first review the real line model for numbers, as discussed in Chapter 2 of seventh grade, by recalling how the integers and then the

More information

Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet

Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet Reference Material /Formulas for Pre-Calculus CP/ H Summer Packet Week # 1 Order of Operations Step 1 Evaluate expressions inside grouping symbols. Order of Step 2 Evaluate all powers. Operations Step

More information

QUANITY NAME OF UNIT ABBREVIATION length meter m mass kilogram kg time second s

QUANITY NAME OF UNIT ABBREVIATION length meter m mass kilogram kg time second s Mathematics Review Sheet AP Physics 1 Systems of Units Physics involves an objective description of the world, so measurement is a crucial tool. In measuring, we make use of a group of standard units comprising

More information

Appendix B: Skills Handbook

Appendix B: Skills Handbook Appendix B: Skills Handbook Effective communication is an important part of science. To avoid confusion when measuring and doing mathematical calculations, there are accepted conventions and practices

More information

Evaluate algebraic expressions for given values of the variables.

Evaluate algebraic expressions for given values of the variables. Algebra I Unit Lesson Title Lesson Objectives 1 FOUNDATIONS OF ALGEBRA Variables and Expressions Exponents and Order of Operations Identify a variable expression and its components: variable, coefficient,

More information

CHAPTER 1 REAL NUMBERS KEY POINTS

CHAPTER 1 REAL NUMBERS KEY POINTS CHAPTER 1 REAL NUMBERS 1. Euclid s division lemma : KEY POINTS For given positive integers a and b there exist unique whole numbers q and r satisfying the relation a = bq + r, 0 r < b. 2. Euclid s division

More information

1 Numbers. exponential functions, such as x 7! a x ; where a; x 2 R; trigonometric functions, such as x 7! sin x; where x 2 R; ffiffi x ; where x 0:

1 Numbers. exponential functions, such as x 7! a x ; where a; x 2 R; trigonometric functions, such as x 7! sin x; where x 2 R; ffiffi x ; where x 0: Numbers In this book we study the properties of real functions defined on intervals of the real line (possibly the whole real line) and whose image also lies on the real line. In other words, they map

More information

Tenth Bit Bank Mathematics Real Numbers

Tenth Bit Bank Mathematics Real Numbers Tenth Bit Bank Mathematics Real Numbers 1. The rational number among the following is... i) 4.28 ii) 4.282828... iii) 4.288888... A) i) & ii) B) ii) & iii) C) i) & iii) D) All the above 2. A rational number

More information

( )( ) Algebra I / Technical Algebra. (This can be read: given n elements, choose r, 5! 5 4 3! ! ( 5 3 )! 3!(2) 2

( )( ) Algebra I / Technical Algebra. (This can be read: given n elements, choose r, 5! 5 4 3! ! ( 5 3 )! 3!(2) 2 470 Algebra I / Technical Algebra Absolute Value: A number s distance from zero on a number line. A number s absolute value is nonnegative. 4 = 4 = 4 Algebraic Expressions: A mathematical phrase that can

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

Fundamentals of Pure Mathematics - Problem Sheet

Fundamentals of Pure Mathematics - Problem Sheet Fundamentals of Pure Mathematics - Problem Sheet ( ) = Straightforward but illustrates a basic idea (*) = Harder Note: R, Z denote the real numbers, integers, etc. assumed to be real numbers. In questions

More information

Numbers. 2.1 Integers. P(n) = n(n 4 5n 2 + 4) = n(n 2 1)(n 2 4) = (n 2)(n 1)n(n + 1)(n + 2); 120 =

Numbers. 2.1 Integers. P(n) = n(n 4 5n 2 + 4) = n(n 2 1)(n 2 4) = (n 2)(n 1)n(n + 1)(n + 2); 120 = 2 Numbers 2.1 Integers You remember the definition of a prime number. On p. 7, we defined a prime number and formulated the Fundamental Theorem of Arithmetic. Numerous beautiful results can be presented

More information

2017 AP SUMMER ASSIGNMENT ANNAPOLIS AREA CHRISTIAN SCHOOL. AP Physics 1. Ridings. June 18, 2017

2017 AP SUMMER ASSIGNMENT ANNAPOLIS AREA CHRISTIAN SCHOOL. AP Physics 1. Ridings. June 18, 2017 2017 AP SUMMER ASSIGNMENT ANNAPOLIS AREA CHRISTIAN SCHOOL AP Physics 1 Ridings June 18, 2017 1 Overview & Instructions This summer assignment is an overview of some essential skills you need for AP Physics

More information

8 Primes and Modular Arithmetic

8 Primes and Modular Arithmetic 8 Primes and Modular Arithmetic 8.1 Primes and Factors Over two millennia ago already, people all over the world were considering the properties of numbers. One of the simplest concepts is prime numbers.

More information

Unit 1. Scientific activity

Unit 1. Scientific activity Index Unit 1. Scientific activity 1. The scientific method...2 2.- Measurement...4 2.1 Unit transformation...4 2.2. Scientific notation...6 3. Working in the lab...7 Practice exam...9 Page 1 of 11 1. The

More information

Chapter 1: Fundamentals of Algebra Lecture notes Math 1010

Chapter 1: Fundamentals of Algebra Lecture notes Math 1010 Section 1.1: The Real Number System Definition of set and subset A set is a collection of objects and its objects are called members. If all the members of a set A are also members of a set B, then A is

More information

NOTES: Chapter 11. Radicals & Radical Equations. Algebra 1B COLYER Fall Student Name:

NOTES: Chapter 11. Radicals & Radical Equations. Algebra 1B COLYER Fall Student Name: NOTES: Chapter 11 Radicals & Radical Equations Algebra 1B COLYER Fall 2016 Student Name: Page 2 Section 3.8 ~ Finding and Estimating Square Roots Radical: A symbol use to represent a. Radicand: The number

More information

Math 3320 Foundations of Mathematics

Math 3320 Foundations of Mathematics Math 3320 Foundations of Mathematics Chapter 1: Fundamentals Jesse Crawford Department of Mathematics Tarleton State University (Tarleton State University) Chapter 1 1 / 55 Outline 1 Section 1.1: Why Study

More information

Contents Real Numbers Polynomials 2 0 Pair of Linear Equations in Two Variables 3 8 Quadratic Equations 7 0

Contents Real Numbers Polynomials 2 0 Pair of Linear Equations in Two Variables 3 8 Quadratic Equations 7 0 Foreword Preface Contents 1. Real Numbers 1 1.1 Introduction 1 1. Euclid s Division Lemma 1.3 The Fundamental Theorem of Arithmetic 7 1.4 Revisiting Irrational Numbers 11 1.5 Revisiting Rational Numbers

More information

REVIEW Chapter 1 The Real Number System

REVIEW Chapter 1 The Real Number System REVIEW Chapter The Real Number System In class work: Complete all statements. Solve all exercises. (Section.4) A set is a collection of objects (elements). The Set of Natural Numbers N N = {,,, 4, 5, }

More information

Florida Math 0022 Correlation of the ALEKS course Florida Math 0022 to the Florida Mathematics Competencies - Lower and Upper

Florida Math 0022 Correlation of the ALEKS course Florida Math 0022 to the Florida Mathematics Competencies - Lower and Upper Florida Math 0022 Correlation of the ALEKS course Florida Math 0022 to the Florida Mathematics Competencies - Lower and Upper Whole Numbers MDECL1: Perform operations on whole numbers (with applications,

More information

Part 2 Number and Quantity

Part 2 Number and Quantity Part Number and Quantity Copyright Corwin 08 Number and Quantity Conceptual Category Overview Students have studied number from the beginning of their schooling. They start with counting. Kindergarten

More information

High School Preparation for Algebra 1

High School Preparation for Algebra 1 High School Preparation for Algebra 1 This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence

More information

2 Arithmetic. 2.1 Greatest common divisors. This chapter is about properties of the integers Z = {..., 2, 1, 0, 1, 2,...}.

2 Arithmetic. 2.1 Greatest common divisors. This chapter is about properties of the integers Z = {..., 2, 1, 0, 1, 2,...}. 2 Arithmetic This chapter is about properties of the integers Z = {..., 2, 1, 0, 1, 2,...}. (See [Houston, Chapters 27 & 28]) 2.1 Greatest common divisors Definition 2.16. If a, b are integers, we say

More information

MAT115A-21 COMPLETE LECTURE NOTES

MAT115A-21 COMPLETE LECTURE NOTES MAT115A-21 COMPLETE LECTURE NOTES NATHANIEL GALLUP 1. Introduction Number theory begins as the study of the natural numbers the integers N = {1, 2, 3,...}, Z = { 3, 2, 1, 0, 1, 2, 3,...}, and sometimes

More information

Corner Brook Regional High School

Corner Brook Regional High School Corner Brook Regional High School Measurement and Calculations Significant Digits Scientific Notation Converting between Units Accuracy vs. Precision Scalar Quantities Distance Calculations Speed Calculations

More information

A negative exponent is equal to the inverse of the same number with a positive exponent. 18!! = 1 18!

A negative exponent is equal to the inverse of the same number with a positive exponent. 18!! = 1 18! Part A: Powers of Ten My Guess The Answer 10 1 = 10 2 = 10 3 = 10 4 = 10 5 = 10 0 = 10-1 = 10-2 = 10-3 = 10-4 = 10-5 = Rule for 0 th Powers: The 0 th power of anything is always equal to 1. Rule for Negative

More information

Appendix Prerequisites and Review

Appendix Prerequisites and Review BMapp0AppendixPrerequisitesFundamentalsofAlgebra.qxd 6//3 4:35 PM Page 5 Appendix Prerequisites and Review BMapp0AppendixPrerequisitesFundamentalsofAlgebra.qxd 6//3 4:35 PM Page 53 IN THIS APPENDIX real

More information

Proofs. Chapter 2 P P Q Q

Proofs. Chapter 2 P P Q Q Chapter Proofs In this chapter we develop three methods for proving a statement. To start let s suppose the statement is of the form P Q or if P, then Q. Direct: This method typically starts with P. Then,

More information

Physics Complex numbers

Physics Complex numbers Physics 2-4 Complex numbers Complex Numbers One of the themes throughout the history of mathematics was the expansion of what one regarded as numbers. Mathematics began with counting the positive integers.

More information

CLASS-IX MATHEMATICS. For. Pre-Foundation Course CAREER POINT

CLASS-IX MATHEMATICS. For. Pre-Foundation Course CAREER POINT CLASS-IX MATHEMATICS For Pre-Foundation Course CAREER POINT CONTENTS S. No. CHAPTERS PAGE NO. 0. Number System... 0 3 0. Polynomials... 39 53 03. Co-ordinate Geometry... 54 04. Introduction to Euclid's

More information

Serway AP Physics. Chapter 1

Serway AP Physics. Chapter 1 Serway AP Physics Chapter 1 1.1 Units must be defined to for measuring quantities. Units such as kg, m and sec are common in physics. The fundamental units are length (m), mass (Kg), and time (sec) which

More information

Numbering Systems. Contents: Binary & Decimal. Converting From: B D, D B. Arithmetic operation on Binary.

Numbering Systems. Contents: Binary & Decimal. Converting From: B D, D B. Arithmetic operation on Binary. Numbering Systems Contents: Binary & Decimal. Converting From: B D, D B. Arithmetic operation on Binary. Addition & Subtraction using Octal & Hexadecimal 2 s Complement, Subtraction Using 2 s Complement.

More information

Math K-1 CCRS Level A Alignment College & Career Readiness Standards Version: April 2017

Math K-1 CCRS Level A Alignment College & Career Readiness Standards Version: April 2017 Math K-1 CCRS Level A Alignment Standard Math K Lessons Math 1 Lessons Number and Operations: Base Ten Understand place value 6 Compare 1, 26 Compare 50, 33 Skip Count 5s and 10s, 35 Group 10s, 36 Compare

More information

Downloaded from

Downloaded from Topic : Real Numbers Class : X Concepts 1. Euclid's Division Lemma 2. Euclid's Division Algorithm 3. Prime Factorization 4. Fundamental Theorem of Arithmetic 5. Decimal expansion of rational numbers A

More information

In N we can do addition, but in order to do subtraction we need to extend N to the integers

In N we can do addition, but in order to do subtraction we need to extend N to the integers Chapter 1 The Real Numbers 1.1. Some Preliminaries Discussion: The Irrationality of 2. We begin with the natural numbers N = {1, 2, 3, }. In N we can do addition, but in order to do subtraction we need

More information

Introduction to Number Theory

Introduction to Number Theory INTRODUCTION Definition: Natural Numbers, Integers Natural numbers: N={0,1,, }. Integers: Z={0,±1,±, }. Definition: Divisor If a Z can be writeen as a=bc where b, c Z, then we say a is divisible by b or,

More information

AQA Physics A-level Section 1: Measurements and Their Errors

AQA Physics A-level Section 1: Measurements and Their Errors AQA Physics A-level Section 1: Measurements and Their Errors Key Points The base units are the set of seven units of measure from which all other SI units can be derived. Units All other units can be expressed

More information

8th Grade The Number System and Mathematical Operations Part

8th Grade The Number System and Mathematical Operations Part Slide 1 / 157 Slide 2 / 157 8th Grade The Number System and Mathematical Operations Part 2 2015-11-20 www.njctl.org Slide 3 / 157 Table of Contents Squares of Numbers Greater than 20 Simplifying Perfect

More information

GCSE AQA Mathematics. Numbers

GCSE AQA Mathematics. Numbers GCSE Mathematics Numbers Md Marufur Rahman Msc Sustainable Energy Systems Beng (Hons) Mechanical Engineering Bsc (Hons) Computer science & engineering GCSE AQA Mathematics 215/16 Table of Contents Introduction:...

More information

_CH01_p pdf. Radicals. Working with Exponents. Chapter 1 Real Numbers

_CH01_p pdf. Radicals. Working with Exponents. Chapter 1 Real Numbers 0000000765649_CH0_p00-06.pdf A B Radicals Working with Exponents Chapter Real Numbers Page 0000000765649_CH0_p00-06.pdf Page Real Numbers In the 90s, Charles Richter developed the Richter scale at the

More information

8th Grade. The Number System and Mathematical Operations Part 2.

8th Grade. The Number System and Mathematical Operations Part 2. 1 8th Grade The Number System and Mathematical Operations Part 2 2015 11 20 www.njctl.org 2 Table of Contents Squares of Numbers Greater than 20 Simplifying Perfect Square Radical Expressions Approximating

More information

QUIZ 2 (METRICS) REVIEW TOPICS AND REVIEW PROBLEMS

QUIZ 2 (METRICS) REVIEW TOPICS AND REVIEW PROBLEMS QUIZ 2 (METRICS) REVIEW TOPICS AND REVIEW PROBLEMS GENERAL INFORMATION You will have 5 minutes for this quiz. As the quiz is pure memorization, this amount of time for each question should be limited only

More information

Latest Syllabus - NMO

Latest Syllabus - NMO Latest Syllabus - NMO CLASS 1 Numerals and Number Name (2 digit numbers) Addition, Subtraction Knowledge of currency notes. Knowledge of clock. Knowledge of basic units of Length,. Knowledge of basic figures

More information

MATH Dr. Halimah Alshehri Dr. Halimah Alshehri

MATH Dr. Halimah Alshehri Dr. Halimah Alshehri MATH 1101 haalshehri@ksu.edu.sa 1 Introduction To Number Systems First Section: Binary System Second Section: Octal Number System Third Section: Hexadecimal System 2 Binary System 3 Binary System The binary

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems

Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems Introduction to Digital Logic Missouri S&T University CPE 2210 Number Systems Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and

More information

Math Review. for the Quantitative Reasoning measure of the GRE General Test

Math Review. for the Quantitative Reasoning measure of the GRE General Test Math Review for the Quantitative Reasoning measure of the GRE General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important for solving

More information

Math /Foundations of Algebra/Fall 2017 Foundations of the Foundations: Proofs

Math /Foundations of Algebra/Fall 2017 Foundations of the Foundations: Proofs Math 4030-001/Foundations of Algebra/Fall 017 Foundations of the Foundations: Proofs A proof is a demonstration of the truth of a mathematical statement. We already know what a mathematical statement is.

More information

UNIT 4 NOTES: PROPERTIES & EXPRESSIONS

UNIT 4 NOTES: PROPERTIES & EXPRESSIONS UNIT 4 NOTES: PROPERTIES & EXPRESSIONS Vocabulary Mathematics: (from Greek mathema, knowledge, study, learning ) Is the study of quantity, structure, space, and change. Algebra: Is the branch of mathematics

More information

Glossary. Glossary 981. Hawkes Learning Systems. All rights reserved.

Glossary. Glossary 981. Hawkes Learning Systems. All rights reserved. A Glossary Absolute value The distance a number is from 0 on a number line Acute angle An angle whose measure is between 0 and 90 Addends The numbers being added in an addition problem Addition principle

More information