The Growth of Functions. A Practical Introduction with as Little Theory as possible

Size: px
Start display at page:

Download "The Growth of Functions. A Practical Introduction with as Little Theory as possible"

Transcription

1 The Growth of Functions A Practical Introduction with as Little Theory as possible

2 Complexity of Algorithms (1) Before we talk about the growth of functions and the concept of order, let s discuss why we are doing this in the first place. In computer science, we wish to know the complexity of algorithms, i.e. how many operations they require to perform or how much memory they demand. An algorithm is a clearly defined finite sequence of instructions for solving a problem. For example, consider the problem of computing a three-point moving average of a finite sequence of numbers x 1, x 2,, x n. This means that each term in the sequence needs to be replaced by its average with its direct neighbors. This is a common procedure to smooth out data that fluctuates wildly between data points, such as stock market data, or really any measured data that has a lot of noise in it. This problem can be solved by the following algorithm: 1. Replace x 1 by x 1+x Go through the numbers k = 2,, n 1 and replace each x k by 3. Replace x n by x n 1+x n. 2 x k 1 + x k + x k+1 3.

3 Complexity of Algorithms (2) Let us count the number of arithmetic operations (additions and multiplications) required to run the algorithm on the previous slide. Steps 1 and 3 require 2 operations each, and step 2 requires 3 operations times n 2. Therefore, the total number of operations required is 3 n = 3n 2. Now imagine that we are applying our algorithm to a very large dataset where n could be in the millions. In that case, only the leading term 3n is of practical relevance, and the 2 is negligible. Therefore, for large n, our algorithm essentially requires 3n arithmetic operations. For some purposes, even the constant multiplier 3 is unimportant, and all we need to know is that the number of operations is essentially n times a constant.

4 Order: a way to describe the scaling behavior of an algorithm (1) Imagine that a financial information system is providing timeaveraged stock market graphs based on a million input points, and we would like to change that number to ten million. Since the number of operations required is essentially n times a constant, we would then need approximately 10 times as much computational power. If the number of operations required was approximately n 2 times a constant, increasing n by a factor 10 would increase computational power required by a factor 100. Instead of saying that 3n 2 is approximately equal to a constant times n for large n, we say that 3n 2 is of order n. This concept of order is a convenient device to express the scaling behavior of an algorithm.

5 Order: a way to describe the scaling behavior of an algorithm (2) Let s make sure we understand correctly what an order estimate tells us and doesn t tell us about an algorithm. Suppose someone tells us about two algorithms that solve the same problem. A: handles an input of size n in order n operations, and B: handles an input of size n in order n 2 operations. The order estimate only establishes an approximate proportionality for large n. Algorithm A does not necessarily require n operations for an input of size n. It could require 100n + 2 operations, or 10,000n All of these are order n. All we can say is that A requires approximately Cn operations when n gets large, where C is an unknown constant. Likewise, based on the information given, algorithm B does not (necessarily) require n 2 operations for an input of size n. It could require 0.1n 2 operations, or 10n , or 1,000,000n All of these are order n 2. All we can say is that B requires approximately Dn 2 operations when n gets large, where D is an unknown constant. For a given n, there is therefore no guarantee that algorithm A will require fewer operations than algorithm B, because C might be large and D might be small. All we know is that A has superior scaling behavior. If we keep increasing n, we will eventually reach a point where A requires fewer operations than B.

6 A Provisional Definition of Equality of Growth Behavior: Approximate Equality of Ratios Inspired by this example, we make the following provisional definition of order: f(x) is of order g x means that for large x, f x C g(x), where C is a positive constant that does not depend on x. Put differently, two functions f and g grow at the same order if their ratio f x is eventually approximately a constant:, C > 0 for large x. This definition is provisional because approximate equality is not a mathematically rigorous statement, and neither is the condition that x must be large. Limit laws we learned in calculus can help us with order calculations because of the following theorem: If lim g x. f x x g(x) g(x) exists and is a positive number (not zero), then f(x) is of order

7 Order Calculations based on the Ratio Definition and the Limit Criterion (1) 5x 2 + 7x + 11 is of order x 2, because 5x 2 + 7x + 11 lim x x 2 = 5. The limit law of calculus we applied here is that if two polynomials have the same degree (in this case 2), then their quotient has a limit as x goes to infinity, and the limit is the quotient of the leading coefficients. We were able to omit the absolute values here because the two functions are both positive for sufficiently large x. We use the law here that a polynomial with positive leading coefficient will be positive eventually, i.e. unless it isn t already positive for all x, it will turn, and stay, positive as x grows above some threshold.

8 Again: Order is about Comparing Growth Rates in Terms of Ratios Let us ponder again that 5x 2 + 7x + 11 is order of x 2. This may seem somewhat counter-intuitive: isn t 5x 2 + 7x + 11 bigger than x 2 and therefore grows faster? It depends on your definition of what grows faster means. If you meant by that that the difference goes to infinity, then you would be correct in saying that 5x 2 + 7x + 11 grows faster than x 2. However, the notion of growth we are developing here is about ratios for large x. For large x, 5x2 +7x+11 x 2 5. In fact, the more x grows, the closer the quotient gets to 5. That s what our limit calculation shows. Therefore, the two quantities are of the same order. A generalization of this result is that any two polynomials of the same degree are of the same order.

9 Order Calculations Based on the Ratio Definition and the Limit Criterion (2) ln( x 2 + 1) is of order ln x because ln( x 2 + 1) lim x ln x = lim x 2x x x 2x 2 = lim x x = 2. We used the Rule of L Hospital here to calculate the limit which you should remember from calculus I. Again, we were able to omit the absolute values because both functions are eventually positive (in fact, for x > 0.) Another way to understand this situation is to realize that for large x, x x 2, so by logarithm laws, ln(x 2 + 1) ln x 2 = 2 ln x.

10 Order Calculations based on the Ratio Definition and the Limit Criterion (3) Limits can also determine when two functions do not share the same growth rate: f x Theorem: If lim x g(x) For example, 2 x is not of order 3 x because 2 x 2 lim = lim x 3x x 3 is zero or infinity, then f(x) is NOT of order g x. x = 0. Here we have used the calculus law that when you raise a number that is less than 1 in absolute value to powers that go to infinity, the limit is zero. [We were able to omit absolute values because values of exponential functions are always positive.] A generalization of this result is that exponential functions with different bases are not of the same order.

11 Order Calculations based on the Ratio Definition and the Limit Criterion (4) x 2 3x + 2 is not of order x 3 + 4x 2 + x 1 because lim x x 2 3x + 2 x 3 + 4x 2 + x 1 = 0. Here we have used the calculus law that the limit of a quotient of two polynomials is zero when the numerator polynomial has a lesser degree than the denominator polynomial (2 for the numerator vs 3 for the denominator). We omitted the absolute values because the two polynomials have positive leading coefficients, and are therefore positive eventually.

12 Orders of Logarithms Any two logarithm functions are of the same order. This is due to the change of base formula which says that two logarithms to a different base are just constant multiples of each other: log b x = log ax log a b for any positive numbers a, b. In particular, this relationship holds if a = e or a = 10: log b x = log 10x log 10 b = ln x ln b Therefore, all the functions log b x are of the same order. This is why sometimes, we use the generic notation log without a base in order-related statements. For example, we might say that the number of computations required by an algorithm with input size n is order of nlog n. The base of the logarithm doesn t matter because the order statement only expresses an approximate proportionality anyway, not an approximate equality. Different interpretations of log n only affect the proportionality constant.

13 Another look at the absolute values in order-related algebraic manipulations We judge the growth of functions solely based on their absolute values. For two functions f, g to have the same order, we roughly need f x C g(x) for large enough x. The absolute values complicate algebraic manipulation. Fortunately, in many situations, the absolute values can simply be omitted. Since we are only interested in what happens for large enough x, we may start with the assumption that x is positive, or even larger than some suitable positive number. If a polynomial only has non-negative coefficients, then it is non-negative anyway for non-negative inputs. For example, x 3 + 3x + 5 = x 3 + 3x + 5 for x 0. Even when some coefficients are negative, as long as the leading coefficient is positive, we know from calculus that the polynomial will be positive eventually. For example, there must be a real number k such that x 3 5x 2 10x 3 = x 3 5x 2 10x 3 for all x > k. Logarithms to a base greater than 1 are positive if the input is greater than 1: ln x = ln x and log 2 x = log 2 x for x > 1 Exponential functions are always positive anyway: a x and positive a. = a x for all real numbers x

14 The for order: big-o (1) When the growth rate of f is at most that of g (possibly equal, possibly less), then we say that f is big-o of g. We may also write f x is O(g x ). We will skip the exact definition of that for now and just state how to use limits to make big-o determinations: f x If lim exists and is finite (zero or positive), then f(x) is O g x. x g(x) f x If lim x g(x) =, then f(x) is not O g x. We calculated previously that 2 x lim x 3 x = 0 And concluded that 2 x is not of order 3 x because their ratio does not have a positive limit. However, 2 x is O 3 x because the limit is zero. Generally speaking, if a b, then, and only then, is a x big-o of b x.

15 The for order: big-o (2) The big-o rules for polynomials are easy: if f and g are polynomials, then f is big-o of g exactly when degree of f degree of g. This follows from the horizontal asymptote rule we know from calculus: if f and g are polynomials, and the degree of f is less than the degree of g, then f x = 0. Is the degrees are equal, then the limit is a positive number. lim x g(x) Either way, f is big-o of g. For example, our previous calculation lim x x 2 3x + 2 x 3 + 4x 2 + x 1 = 0 implies that x 2 3x + 2 is O x 3 + 4x 2 + x 1 because the limit is zero. Therefore, each polynomial is big-o of its own leading power and all higher ones: x 2 + x + 1 is big-o of x 2, of x 3, of x 4, etc.

16 More Big-O Rules (1) We already said that any polynomial p x is O(x n ) for all n that are greater or equal to the degree of p. Any exponential function with base greater 1 grows faster than any polynomial: p(x) is O(a x ) but a x is not O(p(x)), for all a > 1 and polynomials p x. Logarithms grow slower than all nonconstant polynomials: log x is O(x) but x is not O(log x), no matter what the base of the logarithm. In fact, log x grows so slowly that even when you raise it to a positive power, it is still O x : log x n is O x for any positive n. A consequence of this is that log x n is O p(x) for any nonconstant polynomial p(x).

17 More Big-O Rules (2) If two functions are big-o of the same g, then so is their sum: (Sum rule) If f 1 (x) and f 2 (x) are both O(g x ), then so is f 1 x + f 2 x. If two terms in a sum have different big-o estimates, then the larger one dominates, and is the big-o estimate for the entire sum: (Extended sum rule) If f 1 (x) is O(g 1 x ) and f 2 (x) is O(g 2 x ), and g 1 is big-o of g 2, then f 1 x + f 2 x is big-o of g 2. If two factors each have a big-o estimate, then the product is big-o of the product of the individual big-o estimates: (Product rule) If f 1 (x) is O(g 1 x ) and f 2 (x) is O(g 2 x ), then f 1 (x) f 2 (x) is O g 1 x g 2 x. Big-O interacts with algebraic inequalities like we would expect it to: Monotonicity rule: if f 1 (x) f 2 (x) and f 2 (x) is O(g x ), then f 1 (x) is O g x as well.

18 Example of a big-o estimate for a sum of products Let us find the lowest integer n so that f x is O x n, with f x = (x 3 + 1)(log x) 4 +x 4 (1 + x) Solution: we first analyze the two terms separately. Term 1: The factor (x 3 +1) is O x 3. (log x) 4 is O(x). By the product rule, (x 3 +1)(log x) 4 is therefore O x 4. Term 2: The factor x 4 is O x 4. (1 + x) is O(x). By the product rule, x 4 (1 + x) is therefore O x 5. Therefore, f x is O x 5 by the extended sum rule. No lower integer n will do since the second term is not O x 4.

19 Example of a big-o estimate involving a quotient Let us find the lowest integer n so that f x is O x n, with f x = x4 + x 3 log x x We use the fact that a quotient gets smaller when the denominator gets bigger to effectively remove the +1 from the denominator:. x 4 + x 3 log x x < x4 + x 3 log x x 2 = x 2 + x log x. x log x is O x 2. Therefore, by the sum rule, x 2 + x log x is O x 2. By the monotonicity rule, f x is O x 2 as well. Since for large x, the +1 in the denominator is negligible, the inequality above is essentially an equality for large x: f x x 2 + x log x. Since x 2 + x log x is not O(x), n = 2 is the lowest integer such that f x is O x n. [In fact, f is order of x 2.]

20 Big-O in a nutshell For this summary, let us use the symbol to mean that the left side is big-o of the right side, but not vice versa. (That is not a standard notation. Do not learn it or use it in your own work.) Then: logarithmic polynomial exponential function Lower degree higher degree polynomial. Lower base higher base exponential function.

56 CHAPTER 3. POLYNOMIAL FUNCTIONS

56 CHAPTER 3. POLYNOMIAL FUNCTIONS 56 CHAPTER 3. POLYNOMIAL FUNCTIONS Chapter 4 Rational functions and inequalities 4.1 Rational functions Textbook section 4.7 4.1.1 Basic rational functions and asymptotes As a first step towards understanding

More information

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions Rational Functions A rational function f (x) is a function which is the ratio of two polynomials, that is, Part 2, Polynomials Lecture 26a, Rational Functions f (x) = where and are polynomials Dr Ken W

More information

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x)

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x) Name AP Calculus Date Supplemental Review 1 Aim: How do we prepare for AP Problems on limits, continuity and differentiability? Do Now: Use the graph of f(x) to evaluate each of the following: 1. lim x

More information

Math 115 Spring 11 Written Homework 10 Solutions

Math 115 Spring 11 Written Homework 10 Solutions Math 5 Spring Written Homework 0 Solutions. For following its, state what indeterminate form the its are in and evaluate the its. (a) 3x 4x 4 x x 8 Solution: This is in indeterminate form 0. Algebraically,

More information

Numerical Methods. Exponential and Logarithmic functions. Jaesung Lee

Numerical Methods. Exponential and Logarithmic functions. Jaesung Lee Numerical Methods Exponential and Logarithmic functions Jaesung Lee Exponential Function Exponential Function Introduction We consider how the expression is defined when is a positive number and is irrational.

More information

4.4 Graphs of Logarithmic Functions

4.4 Graphs of Logarithmic Functions 590 Chapter 4 Exponential and Logarithmic Functions 4.4 Graphs of Logarithmic Functions In this section, you will: Learning Objectives 4.4.1 Identify the domain of a logarithmic function. 4.4.2 Graph logarithmic

More information

AP Calculus Chapter 9: Infinite Series

AP Calculus Chapter 9: Infinite Series AP Calculus Chapter 9: Infinite Series 9. Sequences a, a 2, a 3, a 4, a 5,... Sequence: A function whose domain is the set of positive integers n = 2 3 4 a n = a a 2 a 3 a 4 terms of the sequence Begin

More information

function independent dependent domain range graph of the function The Vertical Line Test

function independent dependent domain range graph of the function The Vertical Line Test Functions A quantity y is a function of another quantity x if there is some rule (an algebraic equation, a graph, a table, or as an English description) by which a unique value is assigned to y by a corresponding

More information

Asymptotic Analysis. Thomas A. Anastasio. January 7, 2004

Asymptotic Analysis. Thomas A. Anastasio. January 7, 2004 Asymptotic Analysis Thomas A. Anastasio January 7, 004 1 Introduction As a programmer, you often have a choice of data structures and algorithms. Choosing the best one for a particular job involves, among

More information

MATH 113: ELEMENTARY CALCULUS

MATH 113: ELEMENTARY CALCULUS MATH 3: ELEMENTARY CALCULUS Please check www.ualberta.ca/ zhiyongz for notes updation! 6. Rates of Change and Limits A fundamental philosophical truth is that everything changes. In physics, the change

More information

ter. on Can we get a still better result? Yes, by making the rectangles still smaller. As we make the rectangles smaller and smaller, the

ter. on Can we get a still better result? Yes, by making the rectangles still smaller. As we make the rectangles smaller and smaller, the Area and Tangent Problem Calculus is motivated by two main problems. The first is the area problem. It is a well known result that the area of a rectangle with length l and width w is given by A = wl.

More information

LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS

LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS RECALL: VERTICAL ASYMPTOTES Remember that for a rational function, vertical asymptotes occur at values of x = a which have infinite its (either positive or

More information

Advanced Mathematics Unit 2 Limits and Continuity

Advanced Mathematics Unit 2 Limits and Continuity Advanced Mathematics 3208 Unit 2 Limits and Continuity NEED TO KNOW Expanding Expanding Expand the following: A) (a + b) 2 B) (a + b) 3 C) (a + b)4 Pascals Triangle: D) (x + 2) 4 E) (2x -3) 5 Random Factoring

More information

Advanced Mathematics Unit 2 Limits and Continuity

Advanced Mathematics Unit 2 Limits and Continuity Advanced Mathematics 3208 Unit 2 Limits and Continuity NEED TO KNOW Expanding Expanding Expand the following: A) (a + b) 2 B) (a + b) 3 C) (a + b)4 Pascals Triangle: D) (x + 2) 4 E) (2x -3) 5 Random Factoring

More information

2 = = 0 Thus, the number which is largest in magnitude is equal to the number which is smallest in magnitude.

2 = = 0 Thus, the number which is largest in magnitude is equal to the number which is smallest in magnitude. Limits at Infinity Two additional topics of interest with its are its as x ± and its where f(x) ±. Before we can properly discuss the notion of infinite its, we will need to begin with a discussion on

More information

6.1 Polynomial Functions

6.1 Polynomial Functions 6.1 Polynomial Functions Definition. A polynomial function is any function p(x) of the form p(x) = p n x n + p n 1 x n 1 + + p 2 x 2 + p 1 x + p 0 where all of the exponents are non-negative integers and

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

LIMITS AND DERIVATIVES

LIMITS AND DERIVATIVES 2 LIMITS AND DERIVATIVES LIMITS AND DERIVATIVES 2.2 The Limit of a Function In this section, we will learn: About limits in general and about numerical and graphical methods for computing them. THE LIMIT

More information

Section 1.x: The Variety of Asymptotic Experiences

Section 1.x: The Variety of Asymptotic Experiences calculus sin frontera Section.x: The Variety of Asymptotic Experiences We talked in class about the function y = /x when x is large. Whether you do it with a table x-value y = /x 0 0. 00.0 000.00 or with

More information

4.2 Graphs of Rational Functions

4.2 Graphs of Rational Functions 4.2. Graphs of Rational Functions www.ck12.org 4.2 Graphs of Rational Functions Learning Objectives Compare graphs of inverse variation equations. Graph rational functions. Solve real-world problems using

More information

Solutions to Math 41 First Exam October 15, 2013

Solutions to Math 41 First Exam October 15, 2013 Solutions to Math 41 First Exam October 15, 2013 1. (16 points) Find each of the following its, with justification. If the it does not exist, explain why. If there is an infinite it, then explain whether

More information

8.3 Partial Fraction Decomposition

8.3 Partial Fraction Decomposition 8.3 partial fraction decomposition 575 8.3 Partial Fraction Decomposition Rational functions (polynomials divided by polynomials) and their integrals play important roles in mathematics and applications,

More information

Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda

Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda (afreda@deerfield.edu) ) Limits a) Newton s Idea of a Limit Perhaps it may be objected, that there is no ultimate proportion of

More information

EQ: What are limits, and how do we find them? Finite limits as x ± Horizontal Asymptote. Example Horizontal Asymptote

EQ: What are limits, and how do we find them? Finite limits as x ± Horizontal Asymptote. Example Horizontal Asymptote Finite limits as x ± The symbol for infinity ( ) does not represent a real number. We use to describe the behavior of a function when the values in its domain or range outgrow all finite bounds. For example,

More information

Solutions to Math 41 First Exam October 18, 2012

Solutions to Math 41 First Exam October 18, 2012 Solutions to Math 4 First Exam October 8, 202. (2 points) Find each of the following its, with justification. If the it does not exist, explain why. If there is an infinite it, then explain whether it

More information

Chapter Five Notes N P U2C5

Chapter Five Notes N P U2C5 Chapter Five Notes N P UC5 Name Period Section 5.: Linear and Quadratic Functions with Modeling In every math class you have had since algebra you have worked with equations. Most of those equations have

More information

Limits at Infinity. Horizontal Asymptotes. Definition (Limits at Infinity) Horizontal Asymptotes

Limits at Infinity. Horizontal Asymptotes. Definition (Limits at Infinity) Horizontal Asymptotes Limits at Infinity If a function f has a domain that is unbounded, that is, one of the endpoints of its domain is ±, we can determine the long term behavior of the function using a it at infinity. Definition

More information

This chapter covers asymptotic analysis of function growth and big-o notation.

This chapter covers asymptotic analysis of function growth and big-o notation. Chapter 14 Big-O This chapter covers asymptotic analysis of function growth and big-o notation. 14.1 Running times of programs An important aspect of designing a computer programs is figuring out how well

More information

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

More information

Limits and Continuity

Limits and Continuity Limits and Continuity MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After this lesson we will be able to: Determine the left-hand and right-hand limits

More information

MAT 210 Test #1 Solutions, Form A

MAT 210 Test #1 Solutions, Form A 1. Where are the following functions continuous? a. ln(x 2 1) MAT 210 Test #1 Solutions, Form A Solution: The ln function is continuous when what you are taking the log of is positive. Hence, we need x

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Infinite

More information

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Infinite

More information

Mathematics E-15 Seminar on Limits Suggested Lesson Topics

Mathematics E-15 Seminar on Limits Suggested Lesson Topics Mathematics E-15 Seminar on Limits Suggested Lesson Topics Lesson Presentation Guidelines Each lesson should last approximately 45 minutes. This will leave us with some time at the end for constructive

More information

ExtremeValuesandShapeofCurves

ExtremeValuesandShapeofCurves ExtremeValuesandShapeofCurves Philippe B. Laval Kennesaw State University March 23, 2005 Abstract This handout is a summary of the material dealing with finding extreme values and determining the shape

More information

1. Algebra and Functions

1. Algebra and Functions 1. Algebra and Functions 1.1.1 Equations and Inequalities 1.1.2 The Quadratic Formula 1.1.3 Exponentials and Logarithms 1.2 Introduction to Functions 1.3 Domain and Range 1.4.1 Graphing Functions 1.4.2

More information

Section Properties of Rational Expressions

Section Properties of Rational Expressions 88 Section. - Properties of Rational Expressions Recall that a rational number is any number that can be written as the ratio of two integers where the integer in the denominator cannot be. Rational Numbers:

More information

Chapter 1- Polynomial Functions

Chapter 1- Polynomial Functions Chapter 1- Polynomial Functions Lesson Package MHF4U Chapter 1 Outline Unit Goal: By the end of this unit, you will be able to identify and describe some key features of polynomial functions, and make

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

Sequences and Series

Sequences and Series Sequences and Series What do you think of when you read the title of our next unit? In case your answers are leading us off track, let's review the following IB problems. 1 November 2013 HL 2 3 November

More information

Practice Calculus Test without Trig

Practice Calculus Test without Trig Practice Calculus Test without Trig The problems here are similar to those on the practice test Slight changes have been made 1 What is the domain of the function f (x) = 3x 1? Express the answer in interval

More information

Section 6.3: Exponential Equations and Inequalities, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D.

Section 6.3: Exponential Equations and Inequalities, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. Section 6.3: Exponential Equations and Inequalities, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Creative Commons Attribution-NonCommercial-

More information

Chapter 1- Polynomial Functions

Chapter 1- Polynomial Functions Chapter 1- Polynomial Functions Lesson Package MHF4U Chapter 1 Outline Unit Goal: By the end of this unit, you will be able to identify and describe some key features of polynomial functions, and make

More information

We are going to discuss what it means for a sequence to converge in three stages: First, we define what it means for a sequence to converge to zero

We are going to discuss what it means for a sequence to converge in three stages: First, we define what it means for a sequence to converge to zero Chapter Limits of Sequences Calculus Student: lim s n = 0 means the s n are getting closer and closer to zero but never gets there. Instructor: ARGHHHHH! Exercise. Think of a better response for the instructor.

More information

2. Limits at Infinity

2. Limits at Infinity 2 Limits at Infinity To understand sequences and series fully, we will need to have a better understanding of its at infinity We begin with a few examples to motivate our discussion EXAMPLE 1 Find SOLUTION

More information

Chapter 3: Polynomial and Rational Functions

Chapter 3: Polynomial and Rational Functions Chapter 3: Polynomial and Rational Functions 3.1 Polynomial Functions A polynomial on degree n is a function of the form P(x) = a n x n + a n 1 x n 1 + + a 1 x 1 + a 0, where n is a nonnegative integer

More information

INFINITE SEQUENCES AND SERIES

INFINITE SEQUENCES AND SERIES 11 INFINITE SEQUENCES AND SERIES INFINITE SEQUENCES AND SERIES Infinite sequences and series were introduced briefly in A Preview of Calculus in connection with Zeno s paradoxes and the decimal representation

More information

Infinite Limits. By Tuesday J. Johnson

Infinite Limits. By Tuesday J. Johnson Infinite Limits By Tuesday J. Johnson Suggested Review Topics Algebra skills reviews suggested: Evaluating functions Graphing functions Working with inequalities Working with absolute values Trigonometric

More information

Algebra. 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.

Algebra. 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. This document was written and copyrighted by Paul Dawkins. Use of this document and its online version is governed by the Terms and Conditions of Use located at. The online version of this document is

More information

Weekly Activities Ma 110

Weekly Activities Ma 110 Weekly Activities Ma 110 Fall 2008 As of October 27, 2008 We give detailed suggestions of what to learn during each week. This includes a reading assignment as well as a brief description of the main points

More information

Sequences and infinite series

Sequences and infinite series Sequences and infinite series D. DeTurck University of Pennsylvania March 29, 208 D. DeTurck Math 04 002 208A: Sequence and series / 54 Sequences The lists of numbers you generate using a numerical method

More information

Mathematic 108, Fall 2015: Solutions to assignment #7

Mathematic 108, Fall 2015: Solutions to assignment #7 Mathematic 08, Fall 05: Solutions to assignment #7 Problem # Suppose f is a function with f continuous on the open interval I and so that f has a local maximum at both x = a and x = b for a, b I with a

More information

CH 2: Limits and Derivatives

CH 2: Limits and Derivatives 2 The tangent and velocity problems CH 2: Limits and Derivatives the tangent line to a curve at a point P, is the line that has the same slope as the curve at that point P, ie the slope of the tangent

More information

L Hopital s Rule. We will use our knowledge of derivatives in order to evaluate limits that produce indeterminate forms.

L Hopital s Rule. We will use our knowledge of derivatives in order to evaluate limits that produce indeterminate forms. L Hopital s Rule We will use our knowledge of derivatives in order to evaluate its that produce indeterminate forms. Main Idea x c f x g x If, when taking the it as x c, you get an INDETERMINATE FORM..

More information

Solutions to MAT 117 Test #3

Solutions to MAT 117 Test #3 Solutions to MAT 7 Test #3 Because there are two versions of the test, solutions will only be given for Form C. Differences from the Form D version will be given. (The values for Form C appear above those

More information

Week 8 Exponential Functions

Week 8 Exponential Functions Week 8 Exponential Functions Many images below are excerpts from the multimedia textbook. You can find them there and in your textbook in sections 4.1 and 4.2. With the beginning of the new chapter we

More information

Remark: Do not treat as ordinary numbers. These symbols do not obey the usual rules of arithmetic, for instance, + 1 =, - 1 =, 2, etc.

Remark: Do not treat as ordinary numbers. These symbols do not obey the usual rules of arithmetic, for instance, + 1 =, - 1 =, 2, etc. Limits and Infinity One of the mysteries of Mathematics seems to be the concept of "infinity", usually denoted by the symbol. So what is? It is simply a symbol that represents large numbers. Indeed, numbers

More information

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

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Calculus I - Homework Chapter 2 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Determine whether the graph is the graph of a function. 1) 1)

More information

Chapter 1. Functions 1.1. Functions and Their Graphs

Chapter 1. Functions 1.1. Functions and Their Graphs 1.1 Functions and Their Graphs 1 Chapter 1. Functions 1.1. Functions and Their Graphs Note. We start by assuming that you are familiar with the idea of a set and the set theoretic symbol ( an element of

More information

Polynomial and Rational Functions. Chapter 3

Polynomial and Rational Functions. Chapter 3 Polynomial and Rational Functions Chapter 3 Quadratic Functions and Models Section 3.1 Quadratic Functions Quadratic function: Function of the form f(x) = ax 2 + bx + c (a, b and c real numbers, a 0) -30

More information

Calculus (Math 1A) Lecture 4

Calculus (Math 1A) Lecture 4 Calculus (Math 1A) Lecture 4 Vivek Shende August 31, 2017 Hello and welcome to class! Last time We discussed shifting, stretching, and composition. Today We finish discussing composition, then discuss

More information

ERRATA for Calculus: The Language of Change

ERRATA for Calculus: The Language of Change 1 ERRATA for Calculus: The Language of Change SECTION 1.1 Derivatives P877 Exercise 9b: The answer should be c (d) = 0.5 cups per day for 9 d 0. SECTION 1.2 Integrals P8 Exercise 9d: change to B (11) P9

More information

80 Wyner PreCalculus Spring 2017

80 Wyner PreCalculus Spring 2017 80 Wyner PreCalculus Spring 2017 CHAPTER NINE: DERIVATIVES Review May 16 Test May 23 Calculus begins with the study of rates of change, called derivatives. For example, the derivative of velocity is acceleration

More information

Stephen F Austin. Exponents and Logarithms. chapter 3

Stephen F Austin. Exponents and Logarithms. chapter 3 chapter 3 Starry Night was painted by Vincent Van Gogh in 1889. The brightness of a star as seen from Earth is measured using a logarithmic scale. Exponents and Logarithms This chapter focuses on understanding

More information

Example 1: What do you know about the graph of the function

Example 1: What do you know about the graph of the function Section 1.5 Analyzing of Functions In this section, we ll look briefly at four types of functions: polynomial functions, rational functions, eponential functions and logarithmic functions. Eample 1: What

More information

Exponential Functions Dr. Laura J. Pyzdrowski

Exponential Functions Dr. Laura J. Pyzdrowski 1 Names: (4 communication points) About this Laboratory An exponential function is an example of a function that is not an algebraic combination of polynomials. Such functions are called trancendental

More information

Calculus (Math 1A) Lecture 4

Calculus (Math 1A) Lecture 4 Calculus (Math 1A) Lecture 4 Vivek Shende August 30, 2017 Hello and welcome to class! Hello and welcome to class! Last time Hello and welcome to class! Last time We discussed shifting, stretching, and

More information

The following are generally referred to as the laws or rules of exponents. x a x b = x a+b (5.1) 1 x b a (5.2) (x a ) b = x ab (5.

The following are generally referred to as the laws or rules of exponents. x a x b = x a+b (5.1) 1 x b a (5.2) (x a ) b = x ab (5. Chapter 5 Exponents 5. Exponent Concepts An exponent means repeated multiplication. For instance, 0 6 means 0 0 0 0 0 0, or,000,000. You ve probably noticed that there is a logical progression of operations.

More information

Final Exam Study Guide Mathematical Thinking, Fall 2003

Final Exam Study Guide Mathematical Thinking, Fall 2003 Final Exam Study Guide Mathematical Thinking, Fall 2003 Chapter R Chapter R contains a lot of basic definitions and notations that are used throughout the rest of the book. Most of you are probably comfortable

More information

M155 Exam 2 Concept Review

M155 Exam 2 Concept Review M155 Exam 2 Concept Review Mark Blumstein DERIVATIVES Product Rule Used to take the derivative of a product of two functions u and v. u v + uv Quotient Rule Used to take a derivative of the quotient of

More information

10/22/16. 1 Math HL - Santowski SKILLS REVIEW. Lesson 15 Graphs of Rational Functions. Lesson Objectives. (A) Rational Functions

10/22/16. 1 Math HL - Santowski SKILLS REVIEW. Lesson 15 Graphs of Rational Functions. Lesson Objectives. (A) Rational Functions Lesson 15 Graphs of Rational Functions SKILLS REVIEW! Use function composition to prove that the following two funtions are inverses of each other. 2x 3 f(x) = g(x) = 5 2 x 1 1 2 Lesson Objectives! The

More information

3.4 Complex Zeros and the Fundamental Theorem of Algebra

3.4 Complex Zeros and the Fundamental Theorem of Algebra 86 Polynomial Functions 3.4 Complex Zeros and the Fundamental Theorem of Algebra In Section 3.3, we were focused on finding the real zeros of a polynomial function. In this section, we expand our horizons

More information

Horizontal asymptotes

Horizontal asymptotes Roberto s Notes on Differential Calculus Chapter : Limits and continuity Section 5 Limits at infinity and Horizontal asymptotes What you need to know already: The concept, notation and terminology of its.

More information

Math From Scratch Lesson 28: Rational Exponents

Math From Scratch Lesson 28: Rational Exponents Math From Scratch Lesson 28: Rational Exponents W. Blaine Dowler October 8, 2012 Contents 1 Exponent Review 1 1.1 x m................................. 2 x 1.2 n x................................... 2 m

More information

To get horizontal and slant asymptotes algebraically we need to know about end behaviour for rational functions.

To get horizontal and slant asymptotes algebraically we need to know about end behaviour for rational functions. Concepts: Horizontal Asymptotes, Vertical Asymptotes, Slant (Oblique) Asymptotes, Transforming Reciprocal Function, Sketching Rational Functions, Solving Inequalities using Sign Charts. Rational Function

More information

Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function.

Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function. Test Instructions Objectives Section 5.1 Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function. Form a polynomial whose zeros and degree are given. Graph

More information

3 Polynomial and Rational Functions

3 Polynomial and Rational Functions 3 Polynomial and Rational Functions 3.1 Polynomial Functions and their Graphs So far, we have learned how to graph polynomials of degree 0, 1, and. Degree 0 polynomial functions are things like f(x) =,

More information

Algebra Exam. Solutions and Grading Guide

Algebra Exam. Solutions and Grading Guide Algebra Exam Solutions and Grading Guide You should use this grading guide to carefully grade your own exam, trying to be as objective as possible about what score the TAs would give your responses. Full

More information

Department of Mathematics, University of Wisconsin-Madison Math 114 Worksheet Sections (4.1),

Department of Mathematics, University of Wisconsin-Madison Math 114 Worksheet Sections (4.1), Department of Mathematics, University of Wisconsin-Madison Math 114 Worksheet Sections (4.1), 4.-4.6 1. Find the polynomial function with zeros: -1 (multiplicity ) and 1 (multiplicity ) whose graph passes

More information

MATH 22 FUNCTIONS: ORDER OF GROWTH. Lecture O: 10/21/2003. The old order changeth, yielding place to new. Tennyson, Idylls of the King

MATH 22 FUNCTIONS: ORDER OF GROWTH. Lecture O: 10/21/2003. The old order changeth, yielding place to new. Tennyson, Idylls of the King MATH 22 Lecture O: 10/21/2003 FUNCTIONS: ORDER OF GROWTH The old order changeth, yielding place to new. Tennyson, Idylls of the King Men are but children of a larger growth. Dryden, All for Love, Act 4,

More information

1. Use the properties of exponents to simplify the following expression, writing your answer with only positive exponents.

1. Use the properties of exponents to simplify the following expression, writing your answer with only positive exponents. Math120 - Precalculus. Final Review. Fall, 2011 Prepared by Dr. P. Babaali 1 Algebra 1. Use the properties of exponents to simplify the following expression, writing your answer with only positive exponents.

More information

Pólya Enrichment Stage Table of Contents

Pólya Enrichment Stage Table of Contents Pólya Enrichment Stage Table of Contents George Pólya (1887-1985) v Preface ix Chapter 1. Functions 1 Chapter 2. Symmetric Polynomials 15 Chapter 3. Geometry 22 Chapter 4. Inequalities 34 Chapter 5. Functional

More information

College Algebra Through Problem Solving (2018 Edition)

College Algebra Through Problem Solving (2018 Edition) City University of New York (CUNY) CUNY Academic Works Open Educational Resources Queensborough Community College Winter 1-25-2018 College Algebra Through Problem Solving (2018 Edition) Danielle Cifone

More information

Calculus (Math 1A) Lecture 5

Calculus (Math 1A) Lecture 5 Calculus (Math 1A) Lecture 5 Vivek Shende September 5, 2017 Hello and welcome to class! Hello and welcome to class! Last time Hello and welcome to class! Last time We discussed composition, inverses, exponentials,

More information

Announcements. CompSci 102 Discrete Math for Computer Science. Chap. 3.1 Algorithms. Specifying Algorithms

Announcements. CompSci 102 Discrete Math for Computer Science. Chap. 3.1 Algorithms. Specifying Algorithms CompSci 102 Discrete Math for Computer Science Announcements Read for next time Chap. 3.1-3.3 Homework 3 due Tuesday We ll finish Chapter 2 first today February 7, 2012 Prof. Rodger Chap. 3.1 Algorithms

More information

1.1 Basic Algebra. 1.2 Equations and Inequalities. 1.3 Systems of Equations

1.1 Basic Algebra. 1.2 Equations and Inequalities. 1.3 Systems of Equations 1. Algebra 1.1 Basic Algebra 1.2 Equations and Inequalities 1.3 Systems of Equations 1.1 Basic Algebra 1.1.1 Algebraic Operations 1.1.2 Factoring and Expanding Polynomials 1.1.3 Introduction to Exponentials

More information

3.4. ZEROS OF POLYNOMIAL FUNCTIONS

3.4. ZEROS OF POLYNOMIAL FUNCTIONS 3.4. ZEROS OF POLYNOMIAL FUNCTIONS What You Should Learn Use the Fundamental Theorem of Algebra to determine the number of zeros of polynomial functions. Find rational zeros of polynomial functions. Find

More information

Algebra 2 Notes AII.7 Polynomials Part 2

Algebra 2 Notes AII.7 Polynomials Part 2 Algebra 2 Notes AII.7 Polynomials Part 2 Mrs. Grieser Name: Date: Block: Zeros of a Polynomial Function So far: o If we are given a zero (or factor or solution) of a polynomial function, we can use division

More information

Lecture 7: Indeterminate forms; L Hôpitals rule; Relative rates of growth. If we try to simply substitute x = 1 into the expression, we get

Lecture 7: Indeterminate forms; L Hôpitals rule; Relative rates of growth. If we try to simply substitute x = 1 into the expression, we get Lecture 7: Indeterminate forms; L Hôpitals rule; Relative rates of growth 1. Indeterminate Forms. Eample 1: Consider the it 1 1 1. If we try to simply substitute = 1 into the epression, we get. This is

More information

Skill 6 Exponential and Logarithmic Functions

Skill 6 Exponential and Logarithmic Functions Skill 6 Exponential and Logarithmic Functions Skill 6a: Graphs of Exponential Functions Skill 6b: Solving Exponential Equations (not requiring logarithms) Skill 6c: Definition of Logarithms Skill 6d: Graphs

More information

The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts.

The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts. Math 141 Review for Final The final is cumulative, but with more emphasis on chapters 3 and 4. There will be two parts. Part 1 (no calculator) graphing (polynomial, rational, linear, exponential, and logarithmic

More information

MAXIMA AND MINIMA CHAPTER 7.1 INTRODUCTION 7.2 CONCEPT OF LOCAL MAXIMA AND LOCAL MINIMA

MAXIMA AND MINIMA CHAPTER 7.1 INTRODUCTION 7.2 CONCEPT OF LOCAL MAXIMA AND LOCAL MINIMA CHAPTER 7 MAXIMA AND MINIMA 7.1 INTRODUCTION The notion of optimizing functions is one of the most important application of calculus used in almost every sphere of life including geometry, business, trade,

More information

2.6 Logarithmic Functions. Inverse Functions. Question: What is the relationship between f(x) = x 2 and g(x) = x?

2.6 Logarithmic Functions. Inverse Functions. Question: What is the relationship between f(x) = x 2 and g(x) = x? Inverse Functions Question: What is the relationship between f(x) = x 3 and g(x) = 3 x? Question: What is the relationship between f(x) = x 2 and g(x) = x? Definition (One-to-One Function) A function f

More information

Chapter 3. Exponential and Logarithmic Functions. 3.2 Logarithmic Functions

Chapter 3. Exponential and Logarithmic Functions. 3.2 Logarithmic Functions Chapter 3 Exponential and Logarithmic Functions 3.2 Logarithmic Functions 1/23 Chapter 3 Exponential and Logarithmic Functions 3.2 4, 8, 14, 16, 18, 20, 22, 30, 31, 32, 33, 34, 39, 42, 54, 56, 62, 68,

More information

AP Calculus Summer Prep

AP Calculus Summer Prep AP Calculus Summer Prep Topics from Algebra and Pre-Calculus (Solutions are on the Answer Key on the Last Pages) The purpose of this packet is to give you a review of basic skills. You are asked to have

More information

Theory of Computation

Theory of Computation Theory of Computation Dr. Sarmad Abbasi Dr. Sarmad Abbasi () Theory of Computation 1 / 33 Lecture 20: Overview Incompressible strings Minimal Length Descriptions Descriptive Complexity Dr. Sarmad Abbasi

More information

Differentiation. Timur Musin. October 10, University of Freiburg 1 / 54

Differentiation. Timur Musin. October 10, University of Freiburg 1 / 54 Timur Musin University of Freiburg October 10, 2014 1 / 54 1 Limit of a Function 2 2 / 54 Literature A. C. Chiang and K. Wainwright, Fundamental methods of mathematical economics, Irwin/McGraw-Hill, Boston,

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

8th Grade Math Definitions

8th Grade Math Definitions 8th Grade Math Definitions Absolute Value: 1. A number s distance from zero. 2. For any x, is defined as follows: x = x, if x < 0; x, if x 0. Acute Angle: An angle whose measure is greater than 0 and less

More information