Math 473: Practice Problems for Test 1, Fall 2011, SOLUTIONS

Size: px
Start display at page:

Download "Math 473: Practice Problems for Test 1, Fall 2011, SOLUTIONS"

Transcription

1 Math 473: Practice Problems for Test 1, Fall 011, SOLUTIONS Show your work: 1. (a) Compute the Taylor polynomials P n (x) for f(x) = sin x and x 0 = 0. Solution: Compute f(x) = sin x, f (x) = cos x, f (x) = sin x, f (x) = cos x, f (4) (x) = sin x, and then the pattern repeats. So the derivative f (n) (x) depends only on the value of n%4 (the remainder of n divided by 4 in Java notation). So we have n%4 f (n) (x) f (n) (0) 0 sin x 0 1 cos x 1 sin x 0 3 cos x 1 Assuming n is odd, the n th Taylor polynomial P n (x) is given by P n (x) = f(0) + f (0)x + f (0)! = 0 + x ( 1) x3 3! + = x x3 3! + ± xn n! x + f (0) 3! x f (n) (0) x n n! (If n is even, the last term is ± xn 1 (n 1)!.) (b) Show that the remainder term R n (x) = f(x) P n (x) satisfies R n (x) x n+1 Solution: The remainder term is given by R n (x) = f (n+1) (ξ(x)) x n+1, (n + 1)! where ξ(x) is between 0 and x. But by the formulas above for the derivatives of sin x, we know f (n+1) (ξ(x)) 1 always. This clearly implies R n (x) = f (n+1) (ξ(x)) x n+1 (n + 1)! x n+1

2 (c) Find the smallest value of n so that P n (0.) approximates sin(0.) with error less than Show your work. Solution: We want to ensure R n (0.) Part (b) above shows R n (0.) 0.n+1 Compute for the first few values of n: n 0. n+1 (n+1)! So we see that for n = 5, R n (0.) < (d) For the value of n from part (c), compute P n (0.) and sin(0.). What is the actual (absolute) error? Solution: For n = 5, P n (x) = x x3 + x5, and 3! 5! P n (0.) = My calculator approximates The actual absolute error is sin(0.) P 5 (0.) sin(0.) (This doesn t quite add up because of the calculator s rounding.). Approximate π by /7. What is the absolute error? What is the relative error? Solution: / , while the absolute error The relative error is /7 π /7 π π

3 3. Let f(x) = x 3 x 5, [a, b] = [0, ]. How many iterations of the Bisection Method are required to ensure the approximation p n is within 10 4 of a root? Justify your answer. You do not have to compute the approximation. Solution: Check f(a) = f(0) = 5 < 0 and f(b) = f() = 1 > 0. Since f is continuous, the bisection method will converge to a root p. The absolute error To ensure we may solve for n to find So we must have n 15. p n p b a n = 1 n. p n p = 1 n 10 4, 1 n 10 4, (1 n) log 4 log 10 = 4, 1 n 4 log, n 4 log 1, n 4 log Will the Bisection Method applied to f(x) = tan x and initial interval [a, b] = [1, ] converge to a root? Why or why not? To which value, if any, will the Bisection Method converge? Solution: tan x has roots only at integer multiples of π, and so there is no root of tan x in [1, ]. So the Bisection Method cannot converge to a root. On the other hand, it is easy to check tan 1 > 0 and tan < 0. Thus we can proceed with the Bisection Method, even though there is no root. The Bisection Method only measures the signs of function values, not whether they are getting closer to zero. This fact will allow us to find lim n p n.

4 The main fact we use is that tan x > 0 for all x [1, π ), while tan x < 0 for all x ( π, ]. So for the purposes of the Bisection Method, tan x changes its sign only once in [1, ], from positive to negative at x = π. Since the Bisection Method only sees the sign of the function values, it behaves as if the root is at π. (The only case this could possibly mess up is if a p n = π. This is impossible since for a 1 = 1, b 1 =, the p n are all rational numbers (with denominator n in fact), while π is irrational.) So the Bisection Method converges lim n p n = π. 5. If g(x) = cos x x, and [a 1, b 1 ] = [0, 1], use the Bisection Method to compute p 3. Show your work. Solution: Compute So p 3 = n a n p n b n f(a n ) f(p n ) f(b n ) Consider Newton s Method with p 0 = and k(x) = x 3 6x 1. Compute up to p 4. Is the method converging to a root? Solution: Compute k (x) = 3x 6, and so Compute p n+1 = p n k(p n) k (p n ) = p n p3 n 6p n 1. 3p n 6 n p n f(p n ) f (p n ) The method is converging to a root, since we can inspect p 3 p 4 < is quite small. Moreover, the function value f(p 3 ) is also quite close to 0.

5 7. What happens if we apply Newton s method to h(x) = 1 x and p 0 = 1? What is lim n p n? Why? (Draw a picture at least to explain your answer.) Solution: In this case, we have h (x) = 1 x, and p n+1 = p n h(p n) h (p n ) = p n 1 p n 1 p n = p n + p n = p n. For p 0 = 1, we get p n = n. So p n as n. This limit can also be intuited from the fact that the graph y = h(x) has the x-axis as a horizontal asymptote. 8. (Bonus): We consider Newton s Method on a polynomial f(x) of degree. Find coefficients of the polynomial so that f(0) =, for p 0 = 0, then p 1 = and p is undefined. Solution: Set f(x) = ax + bx + c. We re asked to find a, b, c. Since f(0) =, this implies a 0 + b 0 + c = and thus c =. Moreover, = p 1 = p 0 f(p 0) f (p 0 ) = 0 f (0). We can solve for f (0) to find f (0) = 1. Since f (x) = ax + b, this implies b = 1. Finally, the condition that p = p 1 f(p 1) = f() f (p 1 ) f () only happen when f () = 0. But Solving for a, we find a = 1 4. Altogether, we have 0 = f () = a + b = 4a 1. f(x) = 1 4 x x +. is undefined can

AP * Calculus Review. Limits, Continuity, and the Definition of the Derivative

AP * Calculus Review. Limits, Continuity, and the Definition of the Derivative AP * Calculus Review Limits, Continuity, and the Definition of the Derivative Teacher Packet Advanced Placement and AP are registered trademark of the College Entrance Examination Board. The College Board

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

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

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0 8.7 Taylor s Inequality Math 00 Section 005 Calculus II Name: ANSWER KEY Taylor s Inequality: If f (n+) is continuous and f (n+) < M between the center a and some point x, then f(x) T n (x) M x a n+ (n

More information

Continuity. MATH 161 Calculus I. J. Robert Buchanan. Fall Department of Mathematics

Continuity. MATH 161 Calculus I. J. Robert Buchanan. Fall Department of Mathematics Continuity MATH 161 Calculus I J. Robert Buchanan Department of Mathematics Fall 2017 Intuitive Idea A process or an item can be described as continuous if it exists without interruption. The mathematical

More information

1.5 Inverse Trigonometric Functions

1.5 Inverse Trigonometric Functions 1.5 Inverse Trigonometric Functions Remember that only one-to-one functions have inverses. So, in order to find the inverse functions for sine, cosine, and tangent, we must restrict their domains to intervals

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

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.2 The Limit of a Function

2.2 The Limit of a Function 2.2 The Limit of a Function Introductory Example: Consider the function f(x) = x is near 0. x f(x) x f(x) 1 3.7320508 1 4.236068 0.5 3.8708287 0.5 4.1213203 0.1 3.9748418 0.1 4.0248457 0.05 3.9874607 0.05

More information

Calculus I Sample Exam #01

Calculus I Sample Exam #01 Calculus I Sample Exam #01 1. Sketch the graph of the function and define the domain and range. 1 a) f( x) 3 b) g( x) x 1 x c) hx ( ) x x 1 5x6 d) jx ( ) x x x 3 6 . Evaluate the following. a) 5 sin 6

More information

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam Jim Lambers MAT 460/560 Fall Semester 2009-10 Practice Final Exam 1. Let f(x) = sin 2x + cos 2x. (a) Write down the 2nd Taylor polynomial P 2 (x) of f(x) centered around x 0 = 0. (b) Write down the corresponding

More information

Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain.

Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain. Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain. For example f(x) = 1 1 x = 1 + x + x2 + x 3 + = ln(1 + x) = x x2 2

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

Math 221 Notes on Rolle s Theorem, The Mean Value Theorem, l Hôpital s rule, and the Taylor-Maclaurin formula. 1. Two theorems

Math 221 Notes on Rolle s Theorem, The Mean Value Theorem, l Hôpital s rule, and the Taylor-Maclaurin formula. 1. Two theorems Math 221 Notes on Rolle s Theorem, The Mean Value Theorem, l Hôpital s rule, and the Taylor-Maclaurin formula 1. Two theorems Rolle s Theorem. If a function y = f(x) is differentiable for a x b and if

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

e x = 1 + x + x2 2! + x3 If the function f(x) can be written as a power series on an interval I, then the power series is of the form

e x = 1 + x + x2 2! + x3 If the function f(x) can be written as a power series on an interval I, then the power series is of the form Taylor Series Given a function f(x), we would like to be able to find a power series that represents the function. For example, in the last section we noted that we can represent e x by the power series

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

Applications of Differentiation

Applications of Differentiation Applications of Differentiation Definitions. A function f has an absolute maximum (or global maximum) at c if for all x in the domain D of f, f(c) f(x). The number f(c) is called the maximum value of f

More information

MTH30 Review Sheet. y = g(x) BRONX COMMUNITY COLLEGE of the City University of New York DEPARTMENT OF MATHEMATICS & COMPUTER SCIENCE

MTH30 Review Sheet. y = g(x) BRONX COMMUNITY COLLEGE of the City University of New York DEPARTMENT OF MATHEMATICS & COMPUTER SCIENCE BRONX COMMUNITY COLLEGE of the City University of New York DEPARTMENT OF MATHEMATICS & COMPUTER SCIENCE MTH0 Review Sheet. Given the functions f and g described by the graphs below: y = f(x) y = g(x) (a)

More information

Chapter 2. Limits and Continuity. 2.1 Rates of change and Tangents to Curves. The average Rate of change of y = f(x) with respect to x over the

Chapter 2. Limits and Continuity. 2.1 Rates of change and Tangents to Curves. The average Rate of change of y = f(x) with respect to x over the Chapter 2 Limits and Continuity 2.1 Rates of change and Tangents to Curves Definition 2.1.1 : interval [x 1, x 2 ] is The average Rate of change of y = f(x) with respect to x over the y x = f(x 2) f(x

More information

2.6. Graphs of Rational Functions. Copyright 2011 Pearson, Inc.

2.6. Graphs of Rational Functions. Copyright 2011 Pearson, Inc. 2.6 Graphs of Rational Functions Copyright 2011 Pearson, Inc. Rational Functions What you ll learn about Transformations of the Reciprocal Function Limits and Asymptotes Analyzing Graphs of Rational Functions

More information

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1 ath 651 Introduction to Numerical Analysis I Fall 2010 SOLUTIONS: Homework Set 1 1. Consider the polynomial f(x) = x 2 x 2. (a) Find P 1 (x), P 2 (x) and P 3 (x) for f(x) about x 0 = 0. What is the relation

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

MATH CALCULUS I 1.5: Continuity

MATH CALCULUS I 1.5: Continuity MATH 12002 - CALCULUS I 1.5: Continuity Professor Donald L. White Department of Mathematical Sciences Kent State University D.L. White (Kent State University) 1 / 12 Definition of Continuity Intuitively,

More information

Continuity and One-Sided Limits. By Tuesday J. Johnson

Continuity and One-Sided Limits. By Tuesday J. Johnson Continuity and One-Sided Limits By Tuesday J. Johnson Suggested Review Topics Algebra skills reviews suggested: Evaluating functions Rationalizing numerators and/or denominators Trigonometric skills reviews

More information

1.1 Introduction to Limits

1.1 Introduction to Limits Chapter 1 LIMITS 1.1 Introduction to Limits Why Limit? Suppose that an object steadily moves forward, with s(t) denotes the position at time t. The average speed over the interval [1,2] is The average

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

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

This Week. Professor Christopher Hoffman Math 124

This Week. Professor Christopher Hoffman Math 124 This Week Sections 2.1-2.3,2.5,2.6 First homework due Tuesday night at 11:30 p.m. Average and instantaneous velocity worksheet Tuesday available at http://www.math.washington.edu/ m124/ (under week 2)

More information

2.4 The Precise Definition of a Limit

2.4 The Precise Definition of a Limit 2.4 The Precise Definition of a Limit Reminders/Remarks: x 4 < 3 means that the distance between x and 4 is less than 3. In other words, x lies strictly between 1 and 7. So, x a < δ means that the distance

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 5B - Rational Functions

Chapter 5B - Rational Functions Fry Texas A&M University Math 150 Chapter 5B Fall 2015 143 Chapter 5B - Rational Functions Definition: A rational function is The domain of a rational function is all real numbers, except those values

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

Chapter 2: Functions, Limits and Continuity

Chapter 2: Functions, Limits and Continuity Chapter 2: Functions, Limits and Continuity Functions Limits Continuity Chapter 2: Functions, Limits and Continuity 1 Functions Functions are the major tools for describing the real world in mathematical

More information

f (x) = x 2 Chapter 2 Polynomial Functions Section 4 Polynomial and Rational Functions Shapes of Polynomials Graphs of Polynomials the form n

f (x) = x 2 Chapter 2 Polynomial Functions Section 4 Polynomial and Rational Functions Shapes of Polynomials Graphs of Polynomials the form n Chapter 2 Functions and Graphs Section 4 Polynomial and Rational Functions Polynomial Functions A polynomial function is a function that can be written in the form a n n 1 n x + an 1x + + a1x + a0 for

More information

Continuity. To handle complicated functions, particularly those for which we have a reasonable formula or formulas, we need a more precise definition.

Continuity. To handle complicated functions, particularly those for which we have a reasonable formula or formulas, we need a more precise definition. Continuity Intuitively, a function is continuous if its graph can be traced on paper in one motion without lifting the pencil from the paper. Thus the graph has no tears or holes. To handle complicated

More information

Math Numerical Analysis Mid-Term Test Solutions

Math Numerical Analysis Mid-Term Test Solutions Math 400 - Numerical Analysis Mid-Term Test Solutions. Short Answers (a) A sufficient and necessary condition for the bisection method to find a root of f(x) on the interval [a,b] is f(a)f(b) < 0 or f(a)

More information

Lesson 2.1: Quadratic Functions

Lesson 2.1: Quadratic Functions Quadratic Functions: Lesson 2.1: Quadratic Functions Standard form (vertex form) of a quadratic function: Vertex: (h, k) Algebraically: *Use completing the square to convert a quadratic equation into standard

More information

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 Professor Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University DeKalb, IL. 60115 USA E mail: dattab@math.niu.edu

More information

MATH section 3.4 Curve Sketching Page 1 of 29

MATH section 3.4 Curve Sketching Page 1 of 29 MATH section. Curve Sketching Page of 9 The step by step procedure below is for regular rational and polynomial functions. If a function contains radical or trigonometric term, then proceed carefully because

More information

DRAFT - Math 101 Lecture Note - Dr. Said Algarni

DRAFT - Math 101 Lecture Note - Dr. Said Algarni 2 Limits 2.1 The Tangent Problems The word tangent is derived from the Latin word tangens, which means touching. A tangent line to a curve is a line that touches the curve and a secant line is a line that

More information

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

Section 3.7. Rolle s Theorem and the Mean Value Theorem

Section 3.7. Rolle s Theorem and the Mean Value Theorem Section.7 Rolle s Theorem and the Mean Value Theorem The two theorems which are at the heart of this section draw connections between the instantaneous rate of change and the average rate of change of

More information

INFINITE SEQUENCES AND SERIES

INFINITE SEQUENCES AND SERIES 11 INFINITE SEQUENCES AND SERIES INFINITE SEQUENCES AND SERIES In section 11.9, we were able to find power series representations for a certain restricted class of functions. INFINITE SEQUENCES AND SERIES

More information

Answers. 2. List all theoretically possible rational roots of the polynomial: P(x) = 2x + 3x + 10x + 14x ) = A( x 4 + 3x 2 4)

Answers. 2. List all theoretically possible rational roots of the polynomial: P(x) = 2x + 3x + 10x + 14x ) = A( x 4 + 3x 2 4) CHAPTER 5 QUIZ Tuesday, April 1, 008 Answers 5 4 1. P(x) = x + x + 10x + 14x 5 a. The degree of polynomial P is 5 and P must have 5 zeros (roots). b. The y-intercept of the graph of P is (0, 5). The number

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

Induction, sequences, limits and continuity

Induction, sequences, limits and continuity Induction, sequences, limits and continuity Material covered: eclass notes on induction, Chapter 11, Section 1 and Chapter 2, Sections 2.2-2.5 Induction Principle of mathematical induction: Let P(n) be

More information

2.1 The Tangent and Velocity Problems

2.1 The Tangent and Velocity Problems 2.1 The Tangent and Velocity Problems Tangents What is a tangent? Tangent lines and Secant lines Estimating slopes from discrete data: Example: 1. A tank holds 1000 gallons of water, which drains from

More information

MATH 1372, SECTION 33, MIDTERM 3 REVIEW ANSWERS

MATH 1372, SECTION 33, MIDTERM 3 REVIEW ANSWERS MATH 1372, SECTION 33, MIDTERM 3 REVIEW ANSWERS 1. We have one theorem whose conclusion says an alternating series converges. We have another theorem whose conclusion says an alternating series diverges.

More information

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Power Series for Functions We can create a Power Series (or polynomial series) that can approximate a function around

More information

= lim. (1 + h) 1 = lim. = lim. = lim = 1 2. lim

= lim. (1 + h) 1 = lim. = lim. = lim = 1 2. lim Math 50 Exam # Solutions. Evaluate the following its or explain why they don t exist. (a) + h. h 0 h Answer: Notice that both the numerator and the denominator are going to zero, so we need to think a

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

Section 1.2 Combining Functions; Shifting and Scaling Graphs. (a) Function addition: Given two functions f and g we define the sum of f and g as

Section 1.2 Combining Functions; Shifting and Scaling Graphs. (a) Function addition: Given two functions f and g we define the sum of f and g as Section 1.2 Combining Functions; Shifting and Scaling Graphs We will get new functions from the ones we know. Tow functions f and g can be combined to form new functions by function addition, substraction,

More information

Rational Functions 4.5

Rational Functions 4.5 Math 4 Pre-Calculus Name Date Rational Function Rational Functions 4.5 g ( ) A function is a rational function if f ( ), where g ( ) and ( ) h ( ) h are polynomials. Vertical asymptotes occur at -values

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

Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note

Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note Math 001 - Term 171 Reading Mathematical Expressions & Arithmetic Operations Expression Reads Note x A x belongs to A,x is in A Between an element and a set. A B A is a subset of B Between two sets. φ

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. C) x 8. C) y = x + 3 2

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. C) x 8. C) y = x + 3 2 Precalculus Fall Final Exam Review Name Date Period MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Simplify the expression. Assume that the variables

More information

Determine whether the formula determines y as a function of x. If not, explain. Is there a way to look at a graph and determine if it's a function?

Determine whether the formula determines y as a function of x. If not, explain. Is there a way to look at a graph and determine if it's a function? 1.2 Functions and Their Properties Name: Objectives: Students will be able to represent functions numerically, algebraically, and graphically, determine the domain and range for functions, and analyze

More information

Absolute and Local Extrema. Critical Points In the proof of Rolle s Theorem, we actually demonstrated the following

Absolute and Local Extrema. Critical Points In the proof of Rolle s Theorem, we actually demonstrated the following Absolute and Local Extrema Definition 1 (Absolute Maximum). A function f has an absolute maximum at c S if f(x) f(c) x S. We call f(c) the absolute maximum of f on S. Definition 2 (Local Maximum). A function

More information

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2 Math 8, Exam, Study Guide Problem Solution. Use the trapezoid rule with n to estimate the arc-length of the curve y sin x between x and x π. Solution: The arclength is: L b a π π + ( ) dy + (cos x) + cos

More information

Polynomial Review Problems

Polynomial Review Problems Polynomial Review Problems 1. Find polynomial function formulas that could fit each of these graphs. Remember that you will need to determine the value of the leading coefficient. The point (0,-3) is on

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 151 Engineering Mathematics I

MATH 151 Engineering Mathematics I MATH 151 Engineering Mathematics I Fall 2018, WEEK 3 JoungDong Kim Week 3 Section 2.3, 2.5, 2.6, Calculating Limits Using the Limit Laws, Continuity, Limits at Infinity; Horizontal Asymptotes. Section

More information

PLC Papers. Created For:

PLC Papers. Created For: PLC Papers Created For: Algebra and proof 2 Grade 8 Objective: Use algebra to construct proofs Question 1 a) If n is a positive integer explain why the expression 2n + 1 is always an odd number. b) Use

More information

Unit 2 Rational Functionals Exercises MHF 4UI Page 1

Unit 2 Rational Functionals Exercises MHF 4UI Page 1 Unit 2 Rational Functionals Exercises MHF 4UI Page Exercises 2.: Division of Polynomials. Divide, assuming the divisor is not equal to zero. a) x 3 + 2x 2 7x + 4 ) x + ) b) 3x 4 4x 2 2x + 3 ) x 4) 7. *)

More information

Composition of Functions

Composition of Functions Math 120 Intermediate Algebra Sec 9.1: Composite and Inverse Functions Composition of Functions The composite function f g, the composition of f and g, is defined as (f g)(x) = f(g(x)). Recall that a function

More information

Calculus 221 worksheet

Calculus 221 worksheet Calculus 221 worksheet Graphing A function has a global maximum at some a in its domain if f(x) f(a) for all other x in the domain of f. Global maxima are sometimes also called absolute maxima. A function

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

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions UNIT 3 Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions Recall From Unit Rational Functions f() is a rational function

More information

MATH 121: EXTRA PRACTICE FOR TEST 2. Disclaimer: Any material covered in class and/or assigned for homework is a fair game for the exam.

MATH 121: EXTRA PRACTICE FOR TEST 2. Disclaimer: Any material covered in class and/or assigned for homework is a fair game for the exam. MATH 121: EXTRA PRACTICE FOR TEST 2 Disclaimer: Any material covered in class and/or assigned for homework is a fair game for the exam. 1 Linear Functions 1. Consider the functions f(x) = 3x + 5 and g(x)

More information

Math 1314 Lesson 13: Analyzing Other Types of Functions

Math 1314 Lesson 13: Analyzing Other Types of Functions Math 1314 Lesson 13: Analyzing Other Types of Functions If the function you need to analyze is something other than a polynomial function, you will have some other types of information to find and some

More information

AS PURE MATHS REVISION NOTES

AS PURE MATHS REVISION NOTES AS PURE MATHS REVISION NOTES 1 SURDS A root such as 3 that cannot be written exactly as a fraction is IRRATIONAL An expression that involves irrational roots is in SURD FORM e.g. 2 3 3 + 2 and 3-2 are

More information

Test 3 Review. y f(a) = f (a)(x a) y = f (a)(x a) + f(a) L(x) = f (a)(x a) + f(a)

Test 3 Review. y f(a) = f (a)(x a) y = f (a)(x a) + f(a) L(x) = f (a)(x a) + f(a) MATH 2250 Calculus I Eric Perkerson Test 3 Review Sections Covered: 3.11, 4.1 4.6. Topics Covered: Linearization, Extreme Values, The Mean Value Theorem, Consequences of the Mean Value Theorem, Concavity

More information

Section 3.1 Extreme Values

Section 3.1 Extreme Values Math 132 Extreme Values Section 3.1 Section 3.1 Extreme Values Example 1: Given the following is the graph of f(x) Where is the maximum (x-value)? What is the maximum (y-value)? Where is the minimum (x-value)?

More information

Math 1500 Fall 2010 Final Exam Review Solutions

Math 1500 Fall 2010 Final Exam Review Solutions Math 500 Fall 00 Final Eam Review Solutions. Verify that the function f() = 4 + on the interval [, 5] satisfies the hypotheses of the Mean Value Theorem on the given interval. Then find all numbers c that

More information

King Fahd University of Petroleum and Minerals Prep-Year Math Program Math Term 161 Recitation (R1, R2)

King Fahd University of Petroleum and Minerals Prep-Year Math Program Math Term 161 Recitation (R1, R2) Math 001 - Term 161 Recitation (R1, R) Question 1: How many rational and irrational numbers are possible between 0 and 1? (a) 1 (b) Finite (c) 0 (d) Infinite (e) Question : A will contain how many elements

More information

Math 1200 Exam 4A Fall Name There are 20 questions worth 5 points each. Show your work in a neat and organized fashion. Award full credit fo

Math 1200 Exam 4A Fall Name There are 20 questions worth 5 points each. Show your work in a neat and organized fashion. Award full credit fo Math 1200 Exam 4A Fall 2018-2019 Name There are 20 questions worth 5 points each. Show your work in a neat and organized fashion. Award full credit for clarity of expression and orderly presentation of

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

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

Student: Date: Instructor: kumnit nong Course: MATH 105 by Nong https://xlitemprodpearsoncmgcom/api/v1/print/math Assignment: CH test review 1 Find the transformation form of the quadratic function graphed

More information

3. Use absolute value notation to write an inequality that represents the statement: x is within 3 units of 2 on the real line.

3. Use absolute value notation to write an inequality that represents the statement: x is within 3 units of 2 on the real line. PreCalculus Review Review Questions 1 The following transformations are applied in the given order) to the graph of y = x I Vertical Stretch by a factor of II Horizontal shift to the right by units III

More information

MATH 2053 Calculus I Review for the Final Exam

MATH 2053 Calculus I Review for the Final Exam MATH 05 Calculus I Review for the Final Exam (x+ x) 9 x 9 1. Find the limit: lim x 0. x. Find the limit: lim x + x x (x ).. Find lim x (x 5) = L, find such that f(x) L < 0.01 whenever 0 < x

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 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. (a) 5

More information

Five-Minute Check (over Lesson 8 3) CCSS Then/Now New Vocabulary Key Concept: Vertical and Horizontal Asymptotes Example 1: Graph with No Horizontal

Five-Minute Check (over Lesson 8 3) CCSS Then/Now New Vocabulary Key Concept: Vertical and Horizontal Asymptotes Example 1: Graph with No Horizontal Five-Minute Check (over Lesson 8 3) CCSS Then/Now New Vocabulary Key Concept: Vertical and Horizontal Asymptotes Example 1: Graph with No Horizontal Asymptote Example 2: Real-World Example: Use Graphs

More information

MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series.

MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series. MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series. The objective of this section is to become familiar with the theory and application of power series and Taylor series. By

More information

Practice Test - Chapter 2

Practice Test - Chapter 2 Graph and analyze each function. Describe the domain, range, intercepts, end behavior, continuity, and where the function is increasing or decreasing. 1. f (x) = 0.25x 3 Evaluate the function for several

More information

Concepts of graphs of functions:

Concepts of graphs of functions: Concepts of graphs of functions: 1) Domain where the function has allowable inputs (this is looking to find math no-no s): Division by 0 (causes an asymptote) ex: f(x) = 1 x There is a vertical asymptote

More information

Chapter 8: Taylor s theorem and L Hospital s rule

Chapter 8: Taylor s theorem and L Hospital s rule Chapter 8: Taylor s theorem and L Hospital s rule Theorem: [Inverse Mapping Theorem] Suppose that a < b and f : [a, b] R. Given that f (x) > 0 for all x (a, b) then f 1 is differentiable on (f(a), f(b))

More information

Chapter 3: Root Finding. September 26, 2005

Chapter 3: Root Finding. September 26, 2005 Chapter 3: Root Finding September 26, 2005 Outline 1 Root Finding 2 3.1 The Bisection Method 3 3.2 Newton s Method: Derivation and Examples 4 3.3 How To Stop Newton s Method 5 3.4 Application: Division

More information

Practice Test - Chapter 2

Practice Test - Chapter 2 Graph and analyze each function. Describe the domain, range, intercepts, end behavior, continuity, and where the function is increasing or decreasing. 1. f (x) = 0.25x 3 Evaluate the function for several

More information

Unit 3: HW3.5 Sum and Product

Unit 3: HW3.5 Sum and Product Unit 3: HW3.5 Sum and Product Without solving, find the sum and product of the roots of each equation. 1. x 2 8x + 7 = 0 2. 2x + 5 = x 2 3. -7x + 4 = -3x 2 4. -10x 2 = 5x - 2 5. 5x 2 2x 3 4 6. 1 3 x2 3x

More information

1.2 Functions and Their Properties Name:

1.2 Functions and Their Properties Name: 1.2 Functions and Their Properties Name: Objectives: Students will be able to represent functions numerically, algebraically, and graphically, determine the domain and range for functions, and analyze

More information

A Library of Functions

A Library of Functions LibraryofFunctions.nb 1 A Library of Functions Any study of calculus must start with the study of functions. Functions are fundamental to mathematics. In its everyday use the word function conveys to us

More information

Math 1B, lecture 15: Taylor Series

Math 1B, lecture 15: Taylor Series Math B, lecture 5: Taylor Series Nathan Pflueger October 0 Introduction Taylor s theorem shows, in many cases, that the error associated with a Taylor approximation will eventually approach 0 as the degree

More information

CHAPTER 4: Polynomial and Rational Functions

CHAPTER 4: Polynomial and Rational Functions MAT 171 Precalculus Algebra Dr. Claude Moore Cape Fear Community College CHAPTER 4: Polynomial and Rational Functions 4.1 Polynomial Functions and Models 4.2 Graphing Polynomial Functions 4.3 Polynomial

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

Review: Limits of Functions - 10/7/16

Review: Limits of Functions - 10/7/16 Review: Limits of Functions - 10/7/16 1 Right and Left Hand Limits Definition 1.0.1 We write lim a f() = L to mean that the function f() approaches L as approaches a from the left. We call this the left

More information

Math /Foundations of Algebra/Fall 2017 Numbers at the Foundations: Real Numbers In calculus, the derivative of a function f(x) is defined

Math /Foundations of Algebra/Fall 2017 Numbers at the Foundations: Real Numbers In calculus, the derivative of a function f(x) is defined Math 400-001/Foundations of Algebra/Fall 2017 Numbers at the Foundations: Real Numbers In calculus, the derivative of a function f(x) is defined using limits. As a particular case, the derivative of f(x)

More information

Jim Lambers MAT 460 Fall Semester Lecture 2 Notes

Jim Lambers MAT 460 Fall Semester Lecture 2 Notes Jim Lambers MAT 460 Fall Semester 2009-10 Lecture 2 Notes These notes correspond to Section 1.1 in the text. Review of Calculus Among the mathematical problems that can be solved using techniques from

More information