Asymptotes, Limits at Infinity, and Continuity in Maple (Classic Version for Windows)

Size: px
Start display at page:

Download "Asymptotes, Limits at Infinity, and Continuity in Maple (Classic Version for Windows)"

Transcription

1 Asymptotes, Limits at Infinity, and Continuity in Maple (Classic Version for Windows) Author: Barbara Forrest Contact: Copyrighted/NOT FOR RESALE version. Contents Objectives for this Lab i 2 Using Maple s plot options for find its i 3 Practice Exercises v Objectives for this Lab Understand and use the options for Maple s it command. Use plots to visually verify calculated its in Maple. Explore asymptotes, its at infinity, and continuity using Maple. 2 Using Maple s plot options for find its You have already seen how to use Maple s it command to find the it of functions in one variable. In this lab you will look at the options available for the it command. Recall that the general syntax for finding the it a function of one variable x a f(x) with options in Maple is it( function of x, x = it point, options ); To illustrate, let s do an example. Exercise: Calculate x x. Open a blank worksheet in Maple CLASSIC version. Clear Maple s memory by entering: i

2 Define the function f(x) = x [> f := x -> /(-x); What does the graph of f(x) = x by entering the following: look like? [> plot(f(x), x=-0..0, y = -0..0); Notice that the graph looks very similar to the hyperbola, f(x) = /x, except that it is shifted to the right by unit and then reflected through the x-axis? Question: Can you explain why this is the case using your knowledge about transformations of functions? Also notice that Maple plots a vertical line at x =. There is really a break in the graph at this point (called a discontinuity). In fact, a vertical asymptote occurs here. (Note: A vertical asymptote occurs at any value that causes the denominator of a function to be zero with the numerator non-zero.) Maple needs a little help in the case where a function has a discontinuity. If you ever plot a function and a vertical line such as this appears, use Maple s discont=true option. This tells Maple to look for discontinuities when plotting the given function: [> plot(f(x), x=-0..0, y = -0..0, discont = true); That s better! Now suppose we want to know x x. From the graph, we can see that as x, f(x) 0. (As x gets larger and larger, the graph of f(x) gets closer and closer to the horizontal axis x = 0.) In Maple, enter the following command to confirm our observation: [> it(f(x), x=infinity); Indeed, Maple confirms our suspicion that the it of the function as x is 0. In other words, x x = 0. What about x x? From the plot, we can see that at x =, there is a break in the graph called a discontinuity since a vertical asymptote occurs there. From this observation, it seems that the it of this function as x does not exist since one part of the graph goes upward and the other part of the graph goes downward. In Maple, enter the following command to confirm our observation: [> it(f(x), x=); Maple returns undef ined This is Maple s way of telling us that the it does not exist. ii

3 Exercise: Calculate x 2 x x. Clear Maple s memory by entering: Define the function f(x) = x2 x by entering the following: [> f := x -> abs(x 2 -)/(x-); What does the graph of f(x) = x2 x look like? [> plot(f(x), x=-0..0, y = -0..0); Notice that there is a discontinuity (vertical line on the graph). Thus, we should use the discont = true option in Maple s plot command. [> plot(f(x), x=-0..0, y = -0..0, discont=true); QUESTION: What is x 2 x x? In Calculus class, there is a theorem that states A two-sided it exists if and only if both of the one-sided its EXIST and are EQUAL. We can use Maple to verify this theorem for the function f(x) = x2 x. To find the it of a function from the left in Maple you need to use the left direction option: [> it(f(x), x=, left); f(x) x a Maple tells us that the function f(x) goes toward 2 as you approach x = from the left. Visually confirm this is the case on the graph of f(x). To find the it of a function from the right in Maple you need to use the right direction option: [> it(f(x), x=, right); f(x) x a + Maple tells us that the function f(x) goes toward 2 as you approach x = from the right. Since the left-hand it is 2 and the right-hand it is 2, the two one-sided its are not equal. Thus, by the theorem stated above, we can say that the (two-sided) it does NOT exist. In fact, let s check the two-sided it using Maple: [> it(f(x), x=); iii

4 Maple returns undefined which confirms that the it does not exist. Exercise: Let f(x) = x2 2x x 2 x. Calculate f(x) and f(x). x Clear Maple s memory by entering: Define the function f(x) = x2 2x x 2 x [> f := x -> (x 2-2*x)/(x 2 - x); What does the graph of f(x) = x2 2x x 2 x [> plot(f(x), x=-5..5); by entering the following: look like? Notice that there is a discontinuity (vertical line on the graph). Thus, we should use the discont = true option in Maple s plot command. [> plot(f(x), x=-5..5, discont=true); QUESTION: What is x x 2 2x x 2 x? [> it(f(x), x=); Maple returns undefined which confirms that the it does not exist since there is a vertical asymptote at x =. QUESTION: What is x 2 2x x 2 x? In answering this question, you should notice that the function is not defined when x = 0. This suggests that there may be a removable discontinuity at x = 0. Let s use Maple to check for a removable discontinuity by entering: [> plot(f(x), x=-5..5, discont=[showremovable]); x Indeed, Maple displays a hole at x = 0. However, to answer the original question 2 2x x 2 x [> it(f(x), x=0); Maple tells us that x 2 2x x 2 x = 2. you can enter You should confirm that the left-hand it and the right-hand it as x approaches 0 are both equal to 2 and so by the Theorem on the previous page, even though there is a removable discontinuity at x = 0 the it still exists and is equal to 2. Exercise: Let f(x) = sin( x ). Calculate f(x). Clear Maple s memory by entering: Define the function f(x) = sin( x ) by entering the following: [> f := x -> sin(/x); What does the graph of f(x) = sin( x ) look like? [> plot(f(x), x=-5..5); iv

5 There are a few things to notice in the plot. First, the graph of f(x) always lies between y = and y =. Next, there seems to be something special occuring near x = 0. Let s zoom in by changing the x interval in the plot command: [> plot(f(x), x= ); Let s look at an even smaller interval: [> plot(f(x), x= ); NOTICE: The graph of f(x) always lies between y = and y = but it oscillates wildly near x = 0! The function f(x) = sin( x ) is an example of an oscillatory discontinuity. 3 Practice Exercises Complete the following exercises in a Maple worksheet and write your answers in the space provided (where applicable). Save the worksheet as asymptotes.mws. Questions from these practice exercises may appear on your course assignments.. Create the following text input. At the top of a new Maple worksheet, type the following lines in a text region. Maple Lab : Asymptotes, Limits at Infinity, and Continuity Name: ID: Date: Type your name here. Type your ID number here. Type today s date here. You can enhance the fonts in any way you wish (e.g., change the font, fontsize, bold, etc.) Insert an execution group after the last line of the text region. Enter Maple s restart: command. 2. Calculating its. (a) In Maple, create a text region and enter the following sentence: Finding two-sided its. Insert an execution group (command prompt) after the the text region. (b) In Maple, create the function f(x) = sin( x ) x. HINT: Use f := x -> sin(abs(x))/x; (c) Plot f(x) with the x-axis varying from 0 to 0. Notice that there seems to be a vertical line (jump) between y = and y =. Fix the plot by including discont = true in the plot command. (d) QUESTION: Considering the graph, GUESS the value of f(x)? (e) Calculate the left-hand it using Maple. (f) Calculate the right-hand it of f(x) using Maple. f(x)? f(x)? + v

6 (g) QUESTION: Does f(x) exist? Explain your answer. (Hint: Apply the Theorem from this lab.) (h) Confirm your answer by calculating [> it(f(x), x=0); 3. Save the worksheet. Save the worksheet as asymptotes.mws. You may print the worksheet if you would like a copy for your notes. To print a copy of the worksheet, from the File menu, choose Print and click OK. vi

Vertical Asymptotes. We generally see vertical asymptotes in the graph of a function when we divide by zero. For example, in the function

Vertical Asymptotes. We generally see vertical asymptotes in the graph of a function when we divide by zero. For example, in the function MA 223 Lecture 26 - Behavior Around Vertical Asymptotes Monday, April 9, 208 Objectives: Explore middle behavior around vertical asymptotes. Vertical Asymptotes We generally see vertical asymptotes in

More information

Simplifying and Graphing Rational Functions

Simplifying and Graphing Rational Functions Algebra 2/Trig Unit 5 Notes Packet Name: Period: # Simplifying and Graphing Rational Functions 1. Pg 543 #11-19 odd and Pg 550 #11-19 odd 2. Pg 543 #12-18 even and Pg 550 #12-18 even 3. Worksheet 4. Worksheet

More information

x f(x) D.N.E

x f(x) D.N.E Limits Consider the function f(x) x2 x. This function is not defined for x, but if we examine the value of f for numbers close to, we can observe something interesting: x 0 0.5 0.9 0.999.00..5 2 f(x).5.9.999

More information

1. f(x) = x2 + x 12 x 2 4 Let s run through the steps.

1. f(x) = x2 + x 12 x 2 4 Let s run through the steps. Math 121 (Lesieutre); 4.3; September 6, 2017 The steps for graphing a rational function: 1. Factor the numerator and denominator, and write the function in lowest terms. 2. Set the numerator equal to zero

More information

Math 1526 Summer 2000 Session 1

Math 1526 Summer 2000 Session 1 Math 1526 Summer 2 Session 1 Lab #2 Part #1 Rate of Change This lab will investigate the relationship between the average rate of change, the slope of a secant line, the instantaneous rate change and the

More information

Using derivatives to find the shape of a graph

Using derivatives to find the shape of a graph Using derivatives to find the shape of a graph Example 1 The graph of y = x 2 is decreasing for x < 0 and increasing for x > 0. Notice that where the graph is decreasing the slope of the tangent line,

More information

x-intercepts, asymptotes, and end behavior together

x-intercepts, asymptotes, and end behavior together MA 2231 Lecture 27 - Sketching Rational Function Graphs Wednesday, April 11, 2018 Objectives: Explore middle behavior around x-intercepts, and the general shapes for rational functions. x-intercepts, asymptotes,

More information

Rational Functions ( ) where P and Q are polynomials. We assume that P(x) and Q(x) have no factors in common, and Q(x) is not the zero polynomial.

Rational Functions ( ) where P and Q are polynomials. We assume that P(x) and Q(x) have no factors in common, and Q(x) is not the zero polynomial. Rational Functions A rational function is a function of the form r P Q where P and Q are polynomials. We assume that P() and Q() have no factors in common, and Q() is not the zero polynomial. Rational

More information

Solutions for Rational Functions

Solutions for Rational Functions Solutions for Rational Functions I. Souldatos Problems Problem 1. 1.1. Let f(x) = x4 9 x 3 8. Find the domain of f(x). Set the denominator equal to 0: x 3 8 = 0 x 3 = 8 x = 3 8 = 2 So, the domain is all

More information

SA2 Unit 4 Investigating Exponentials in Context Classwork A. Double Your Money. 2. Let x be the number of assignments completed. Complete the table.

SA2 Unit 4 Investigating Exponentials in Context Classwork A. Double Your Money. 2. Let x be the number of assignments completed. Complete the table. Double Your Money Your math teacher believes that doing assignments consistently will improve your understanding and success in mathematics. At the beginning of the year, your parents tried to encourage

More information

Mock Midterm 2B. t 1 + (t 4)(t + 1) = 5 = 5. 0 = lim. t 4 + (t 4)(t + 1) = 80

Mock Midterm 2B. t 1 + (t 4)(t + 1) = 5 = 5. 0 = lim. t 4 + (t 4)(t + 1) = 80 Mock Midterm B Note: The problems on this mock midterm have not necessarily been selected to allow them to be easy to work without a calculator. The problems on the real midterm will not require the use

More information

PRINTABLE VERSION. Practice Final Exam

PRINTABLE VERSION. Practice Final Exam Page 1 of 25 PRINTABLE VERSION Practice Final Exam Question 1 The following table of values gives a company's annual profits in millions of dollars. Rescale the data so that the year 2003 corresponds to

More information

Check that your exam contains 20 questions numbered sequentially.

Check that your exam contains 20 questions numbered sequentially. MATH 22 EXAM II SAMPLE EXAM VERSION A NAME STUDENT NUMBER INSTRUCTOR SECTION NUMBER On your scantron, write and bubble your PSU ID, Section Number, and Test Version. Failure to correctly code these items

More information

You should already have a worksheet with the Basic Plus Plan details in it as well as another plan you have chosen from ehealthinsurance.com.

You should already have a worksheet with the Basic Plus Plan details in it as well as another plan you have chosen from ehealthinsurance.com. In earlier technology assignments, you identified several details of a health plan and created a table of total cost. In this technology assignment, you ll create a worksheet which calculates the total

More information

Name Student ID # Instructor Lab Period Date Due. Lab 6 The Tangent

Name Student ID # Instructor Lab Period Date Due. Lab 6 The Tangent Name Student ID # Instructor Lab Period Date Due Lab 6 The Tangent Objectives 1. To visualize the concept of the tangent. 2. To define the slope of the tangent line. 3. To develop a definition of the tangent

More information

Problem Set 1: Review of Mathematics; Aspects of the Business Cycle

Problem Set 1: Review of Mathematics; Aspects of the Business Cycle Problem Set 1: Review of Mathematics; Aspects of the Business Cycle Questions 1 to 5 are intended to help you remember and practice some of the mathematical concepts you may have encountered previously.

More information

Fact: The graph of a rational function p(x)/q(x) (in reduced terms) will be have no jumps except at the zeros of q(x), where it shoots off to ±.

Fact: The graph of a rational function p(x)/q(x) (in reduced terms) will be have no jumps except at the zeros of q(x), where it shoots off to ±. Rational functions Some of these are not polynomials. 5 1/x 4x 5 + 4x 2 x+1 x 1 (x + 3)(x + 2)() Nonetheless these non-polynomial functions are built out of polynomials. Maybe we can understand them in

More information

3.1 Solutions to Exercises

3.1 Solutions to Exercises .1 Solutions to Exercises 1. (a) f(x) will approach + as x approaches. (b) f(x) will still approach + as x approaches -, because any negative integer x will become positive if it is raised to an even exponent,

More information

EXPONENTIAL FUNCTIONS GET A GUIDED NOTES SHEET FROM THE BACK!

EXPONENTIAL FUNCTIONS GET A GUIDED NOTES SHEET FROM THE BACK! EXPONENTIAL FUNCTIONS GET A GUIDED NOTES SHEET FROM THE BACK! EXPONENTIAL FUNCTIONS An exponential function is a function with a variable in the exponent. f(x) = a(b) x EXPONENTIAL FUNCTIONS Parent graphs

More information

Risk Analysis. å To change Benchmark tickers:

Risk Analysis. å To change Benchmark tickers: Property Sheet will appear. The Return/Statistics page will be displayed. 2. Use the five boxes in the Benchmark section of this page to enter or change the tickers that will appear on the Performance

More information

Lab 10: Optimizing Revenue and Profits (Including Elasticity of Demand)

Lab 10: Optimizing Revenue and Profits (Including Elasticity of Demand) Lab 10: Optimizing Revenue and Profits (Including Elasticity of Demand) There's no doubt that the "bottom line" is the maximization of profit, at least to the CEO and shareholders. However, the sales director

More information

Analyzing the Elements of Real GDP in FRED Using Stacking

Analyzing the Elements of Real GDP in FRED Using Stacking Tools for Teaching with Analyzing the Elements of Real GDP in FRED Using Stacking Author Mark Bayles, Senior Economic Education Specialist Introduction This online activity shows how to use FRED, the Federal

More information

Laboratory I.9 Applications of the Derivative

Laboratory I.9 Applications of the Derivative Laboratory I.9 Applications of the Derivative Goals The student will determine intervals where a function is increasing or decreasing using the first derivative. The student will find local minima and

More information

Chapter 8 To Infinity and Beyond: LIMITS

Chapter 8 To Infinity and Beyond: LIMITS ANSWERS Mathematics 4 (Mathematical Analysis) page 1 Chapter 8 To Infinity and Beyond: LIMITS LM-. LM-3. f) If the procedures are followed accurately, all the last acute angles should be very close to

More information

Continuous Random Variables and the Normal Distribution

Continuous Random Variables and the Normal Distribution Chapter 6 Continuous Random Variables and the Normal Distribution Continuous random variables are used to approximate probabilities where there are many possible outcomes or an infinite number of possible

More information

3.1 Solutions to Exercises

3.1 Solutions to Exercises .1 Solutions to Exercises 1. (a) f(x) will approach + as x approaches. (b) f(x) will still approach + as x approaches -, because any negative integer x will become positive if it is raised to an even exponent,

More information

The Normal Distribution

The Normal Distribution 5.1 Introduction to Normal Distributions and the Standard Normal Distribution Section Learning objectives: 1. How to interpret graphs of normal probability distributions 2. How to find areas under the

More information

WEB APPENDIX 8A 7.1 ( 8.9)

WEB APPENDIX 8A 7.1 ( 8.9) WEB APPENDIX 8A CALCULATING BETA COEFFICIENTS The CAPM is an ex ante model, which means that all of the variables represent before-the-fact expected values. In particular, the beta coefficient used in

More information

Lecture : The Definite Integral & Fundamental Theorem of Calculus MTH 124. We begin with a theorem which is of fundamental importance.

Lecture : The Definite Integral & Fundamental Theorem of Calculus MTH 124. We begin with a theorem which is of fundamental importance. We begin with a theorem which is of fundamental importance. The Fundamental Theorem of Calculus (FTC) If F (t) is continuous for a t b, then b a F (t) dt = F (b) F (a). Moreover the antiderivative F is

More information

Analyzing the Elements of Real GDP in FRED Using Stacking

Analyzing the Elements of Real GDP in FRED Using Stacking Tools for Teaching with Analyzing the Elements of Real GDP in FRED Using Stacking Author Mark Bayles, Senior Economic Education Specialist Introduction This online activity shows how to use FRED, the Federal

More information

What s Normal? Chapter 8. Hitting the Curve. In This Chapter

What s Normal? Chapter 8. Hitting the Curve. In This Chapter Chapter 8 What s Normal? In This Chapter Meet the normal distribution Standard deviations and the normal distribution Excel s normal distribution-related functions A main job of statisticians is to estimate

More information

DAY 97 EXPONENTIAL FUNCTIONS: DOMAIN & RANGE

DAY 97 EXPONENTIAL FUNCTIONS: DOMAIN & RANGE DAY 97 EXPONENTIAL FUNCTIONS: DOMAIN & RANGE EXAMPLE Part I Using a graphing calculator, graph the function and sketch the graph on the grid provided below. EXAMPLE Part I Using a graphing calculator,

More information

Section 7C Finding the Equation of a Line

Section 7C Finding the Equation of a Line Section 7C Finding the Equation of a Line When we discover a linear relationship between two variables, we often try to discover a formula that relates the two variables and allows us to use one variable

More information

Chapter 6 Analyzing Accumulated Change: Integrals in Action

Chapter 6 Analyzing Accumulated Change: Integrals in Action Chapter 6 Analyzing Accumulated Change: Integrals in Action 6. Streams in Business and Biology You will find Excel very helpful when dealing with streams that are accumulated over finite intervals. Finding

More information

Spreadsheet Directions

Spreadsheet Directions The Best Summer Job Offer Ever! Spreadsheet Directions Before beginning, answer questions 1 through 4. Now let s see if you made a wise choice of payment plan. Complete all the steps outlined below in

More information

Week 19 Algebra 2 Assignment:

Week 19 Algebra 2 Assignment: Week 9 Algebra Assignment: Day : pp. 66-67 #- odd, omit #, 7 Day : pp. 66-67 #- even, omit #8 Day : pp. 7-7 #- odd Day 4: pp. 7-7 #-4 even Day : pp. 77-79 #- odd, 7 Notes on Assignment: Pages 66-67: General

More information

Calculus Review with Matlab

Calculus Review with Matlab Calculus Review with Matlab While Matlab is capable of doing symbolic math (i.e. algebra) for us, the real power of Matlab comes out when we use it to implement numerical methods for solving problems,

More information

Getting started with WinBUGS

Getting started with WinBUGS 1 Getting started with WinBUGS James B. Elsner and Thomas H. Jagger Department of Geography, Florida State University Some material for this tutorial was taken from http://www.unt.edu/rss/class/rich/5840/session1.doc

More information

BARUCH COLLEGE MATH 2003 SPRING 2006 MANUAL FOR THE UNIFORM FINAL EXAMINATION

BARUCH COLLEGE MATH 2003 SPRING 2006 MANUAL FOR THE UNIFORM FINAL EXAMINATION BARUCH COLLEGE MATH 003 SPRING 006 MANUAL FOR THE UNIFORM FINAL EXAMINATION The final examination for Math 003 will consist of two parts. Part I: Part II: This part will consist of 5 questions similar

More information

Foundational Preliminaries: Answers to Within-Chapter-Exercises

Foundational Preliminaries: Answers to Within-Chapter-Exercises C H A P T E R 0 Foundational Preliminaries: Answers to Within-Chapter-Exercises 0A Answers for Section A: Graphical Preliminaries Exercise 0A.1 Consider the set [0,1) which includes the point 0, all the

More information

Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W

Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W Notes on a Basic Business Problem MATH 104 and MATH 184 Mark Mac Lean (with assistance from Patrick Chan) 2011W This simple problem will introduce you to the basic ideas of revenue, cost, profit, and demand.

More information

MLC at Boise State Polynomials Activity 3 Week #5

MLC at Boise State Polynomials Activity 3 Week #5 Polynomials Activity 3 Week #5 This activity will be discuss maximums, minimums and zeros of a quadratic function and its application to business, specifically maximizing profit, minimizing cost and break-even

More information

Math 234 Spring 2013 Exam 1 Version 1 Solutions

Math 234 Spring 2013 Exam 1 Version 1 Solutions Math 234 Spring 203 Exam Version Solutions Monday, February, 203 () Find (a) lim(x 2 3x 4)/(x 2 6) x 4 (b) lim x 3 5x 2 + 4 x (c) lim x + (x2 3x + 2)/(4 3x 2 ) (a) Observe first that if we simply plug

More information

. (i) What is the probability that X is at most 8.75? =.875

. (i) What is the probability that X is at most 8.75? =.875 Worksheet 1 Prep-Work (Distributions) 1)Let X be the random variable whose c.d.f. is given below. F X 0 0.3 ( x) 0.5 0.8 1.0 if if if if if x 5 5 x 10 10 x 15 15 x 0 0 x Compute the mean, X. (Hint: First

More information

Study Guide - Part 1

Study Guide - Part 1 Math 116 Spring 2015 Study Guide - Part 1 1. Find the slope of a line that goes through the points (1, 5) and ( 3, 13). The slope is (A) Less than -1 (B) Between -1 and 1 (C) Between 1 and 3 (D) More than

More information

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs

Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Using an Excel spreadsheet to calculate Andrew s 18th birthday costs Open a new spreadsheet in Excel. Highlight cells A1 to J1. Prevocational Mathematics 1 of 17 Planning an event Using an Excel spreadsheet

More information

4.5 Comparing Exponential Functions

4.5 Comparing Exponential Functions 4.5 Comparing Exponential Functions So far we have talked in detail about both linear and exponential functions. In this section we ll compare exponential functions to other exponential functions and also

More information

Lecture 11 - Business and Economics Optimization Problems and Asymptotes

Lecture 11 - Business and Economics Optimization Problems and Asymptotes Lecture 11 - Business and Economics Optimization Problems and Asymptotes 11.1 More Economics Applications Price Elasticity of Demand One way economists measure the responsiveness of consumers to a change

More information

GRAPHS IN ECONOMICS. Appendix. Key Concepts. Graphing Data

GRAPHS IN ECONOMICS. Appendix. Key Concepts. Graphing Data Appendix GRAPHS IN ECONOMICS Key Concepts Graphing Data Graphs represent quantity as a distance on a line. On a graph, the horizontal scale line is the x-axis, the vertical scale line is the y-axis, and

More information

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL

LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL LAB 2 INSTRUCTIONS PROBABILITY DISTRIBUTIONS IN EXCEL There is a wide range of probability distributions (both discrete and continuous) available in Excel. They can be accessed through the Insert Function

More information

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product

Introduction to Basic Excel Functions and Formulae Note: Basic Functions Note: Function Key(s)/Input Description 1. Sum 2. Product Introduction to Basic Excel Functions and Formulae Excel has some very useful functions that you can use when working with formulae. This worksheet has been designed using Excel 2010 however the basic

More information

MATH20330: Optimization for Economics Homework 1: Solutions

MATH20330: Optimization for Economics Homework 1: Solutions MATH0330: Optimization for Economics Homework 1: Solutions 1. Sketch the graphs of the following linear and quadratic functions: f(x) = 4x 3, g(x) = 4 3x h(x) = x 6x + 8, R(q) = 400 + 30q q. y = f(x) is

More information

P(z) =.0.2X2 + 22x - 400

P(z) =.0.2X2 + 22x - 400 Survey ofcalcu1us I (Math 121 Exam 3 November 13, 2002 Part I. Multiple Choice. (2 points each) P(z) =.0.2X2 + 22x - 400 1. Find the marginal profit at a production level of 50 clocks. numerical answer,

More information

Logarithmic and Exponential Functions

Logarithmic and Exponential Functions Asymptotes and Intercepts Logarithmic and exponential functions have asymptotes and intercepts. Consider the functions f(x) = log ax and f(x) = lnx. Both have an x-intercept at (1, 0) and a vertical asymptote

More information

Lab 14: Accumulation and Integration

Lab 14: Accumulation and Integration Lab 14: Accumulation and Integration Sometimes we know more about how a quantity changes than what it is at any point. The speedometer on our car tells how fast we are traveling but do we know where we

More information

LAB 2 Random Variables, Sampling Distributions of Counts, and Normal Distributions

LAB 2 Random Variables, Sampling Distributions of Counts, and Normal Distributions LAB 2 Random Variables, Sampling Distributions of Counts, and Normal Distributions The ECA 225 has open lab hours if you need to finish LAB 2. The lab is open Monday-Thursday 6:30-10:00pm and Saturday-Sunday

More information

1. Variability in estimates and CLT

1. Variability in estimates and CLT Unit3: Foundationsforinference 1. Variability in estimates and CLT Sta 101 - Fall 2015 Duke University, Department of Statistical Science Dr. Çetinkaya-Rundel Slides posted at http://bit.ly/sta101_f15

More information

.. /-!"::- '..- ( \.- - '-/../ '

.. /-!::- '..- ( \.- - '-/../ ' ....'-/ -!"::- ' ( \.-../ ' /- Triple Shot Forex Trading System The term "Day Trading" usually refers to the act of buying and selling a financial instrument within the same day. In the Forex market, a

More information

Calculus for Business Economics Life Sciences and Social Sciences 13th Edition Barnett SOLUTIONS MANUAL Full download at:

Calculus for Business Economics Life Sciences and Social Sciences 13th Edition Barnett SOLUTIONS MANUAL Full download at: Calculus for Business Economics Life Sciences and Social Sciences 1th Edition Barnett TEST BANK Full download at: https://testbankreal.com/download/calculus-for-business-economics-life-sciencesand-social-sciences-1th-edition-barnett-test-bank/

More information

123 PART 1: Solutions to Odd-Numbered Exercises and Practice Tests

123 PART 1: Solutions to Odd-Numbered Exercises and Practice Tests 3 PART : Solutions to Odd-Numbered Eercises and Practice Tests Section.7 Graphs of Rational Functions You should be able to graphf() - q()" (a) Find the - and -intercepts. (b) Find an vertical or horizontal

More information

2 Maximizing pro ts when marginal costs are increasing

2 Maximizing pro ts when marginal costs are increasing BEE14 { Basic Mathematics for Economists BEE15 { Introduction to Mathematical Economics Week 1, Lecture 1, Notes: Optimization II 3/12/21 Dieter Balkenborg Department of Economics University of Exeter

More information

Robert Roy's Power Hour Indicator Applied to TradeStation

Robert Roy's Power Hour Indicator Applied to TradeStation Author: Rick Maus Date: March 18, 2017 Version: 1.0 Version Description 1.0 Initial document. Robert Roy's Power Hour Indicator Applied to TradeStation Table of Contents Table of Contents... 1 Overview...

More information

REGIONAL WORKSHOP ON TRAFFIC FORECASTING AND ECONOMIC PLANNING

REGIONAL WORKSHOP ON TRAFFIC FORECASTING AND ECONOMIC PLANNING International Civil Aviation Organization 27/8/10 WORKING PAPER REGIONAL WORKSHOP ON TRAFFIC FORECASTING AND ECONOMIC PLANNING Cairo 2 to 4 November 2010 Agenda Item 3 a): Forecasting Methodology (Presented

More information

MLC at Boise State Polynomials Activity 2 Week #3

MLC at Boise State Polynomials Activity 2 Week #3 Polynomials Activity 2 Week #3 This activity will discuss rate of change from a graphical prespective. We will be building a t-chart from a function first by hand and then by using Excel. Getting Started

More information

Section 3.1 Relative extrema and intervals of increase and decrease.

Section 3.1 Relative extrema and intervals of increase and decrease. Section 3.1 Relative extrema and intervals of increase and decrease. 4 3 Problem 1: Consider the function: f ( x) x 8x 400 Obtain the graph of this function on your graphing calculator using [-10, 10]

More information

Economics 602 Macroeconomic Theory and Policy Problem Set 3 Suggested Solutions Professor Sanjay Chugh Spring 2012

Economics 602 Macroeconomic Theory and Policy Problem Set 3 Suggested Solutions Professor Sanjay Chugh Spring 2012 Department of Applied Economics Johns Hopkins University Economics 60 Macroeconomic Theory and Policy Problem Set 3 Suggested Solutions Professor Sanjay Chugh Spring 0. The Wealth Effect on Consumption.

More information

This appendix discusses two extensions of the cost concepts developed in Chapter 10.

This appendix discusses two extensions of the cost concepts developed in Chapter 10. CHAPTER 10 APPENDIX MATHEMATICAL EXTENSIONS OF THE THEORY OF COSTS This appendix discusses two extensions of the cost concepts developed in Chapter 10. The Relationship Between Long-Run and Short-Run Cost

More information

CH 5 Normal Probability Distributions Properties of the Normal Distribution

CH 5 Normal Probability Distributions Properties of the Normal Distribution Properties of the Normal Distribution Example A friend that is always late. Let X represent the amount of minutes that pass from the moment you are suppose to meet your friend until the moment your friend

More information

To compare the different growth patterns for a sum of money invested under a simple interest plan and a compound interest plan.

To compare the different growth patterns for a sum of money invested under a simple interest plan and a compound interest plan. Student Activity 7 8 9 10 11 12 Aim TI-Nspire CAS Investigation Student 180min To compare the different growth patterns for a sum of money invested under a simple interest plan and a compound interest

More information

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function.

Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. Excel Tutorial 9: Working with Financial Tools and Functions TRUE/FALSE 1. The fv argument is required in the PMT function. ANS: F PTS: 1 REF: EX 493 2. Cash flow has nothing to do with who owns the money.

More information

For Project 11M, you will need the following file: You will save your workbook as 11M_Studio_Loan_Firstname_Lastname

For Project 11M, you will need the following file: You will save your workbook as 11M_Studio_Loan_Firstname_Lastname CH11_student_cd.qxd 10/17/08 7:09 AM Page 4 Mastering Excel Project 11M Studio Loan In this project, you will apply the skills you practiced from the Objectives in Project 11B. Objectives: 6. Use Financial

More information

Lecture Notes 1 Part B: Functions and Graphs of Functions

Lecture Notes 1 Part B: Functions and Graphs of Functions Lecture Notes 1 Part B: Functions and Graphs of Functions In Part A of Lecture Notes #1 we saw man examples of functions as well as their associated graphs. These functions were the equations that gave

More information

SFSU FIN822 Project 1

SFSU FIN822 Project 1 SFSU FIN822 Project 1 This project can be done in a team of up to 3 people. Your project report must be accompanied by printouts of programming outputs. You could use any software to solve the problems.

More information

The answer lies in the role of the exchange rate, which is determined in the foreign exchange market.

The answer lies in the role of the exchange rate, which is determined in the foreign exchange market. In yesterday s lesson we saw that the market for loanable funds shows us how financial capital flows into or out of a nation s financial account. Goods and services also flow, but this flow is tracked

More information

4.4 L Hospital s Rule

4.4 L Hospital s Rule CHAPTER 4. APPLICATIONS OF DERIVATIVES 02 4.4 L Hospital s Rule ln() Eample. Find!. ln() Solution. Check:! ln() X ln()!! 0 0 cos() Eample 2. Find.!0 sin() Solution. WRONG SOLUTION:!0 sin(0) 0. There are

More information

MATH Intuitive Calculus Spring 2011 Circle one: 8:50 5:30 Ms. Kracht. Name: Score: /100. EXAM 2: Version A NO CALCULATORS.

MATH Intuitive Calculus Spring 2011 Circle one: 8:50 5:30 Ms. Kracht. Name: Score: /100. EXAM 2: Version A NO CALCULATORS. MATH 11012 Intuitive Calculus Spring 2011 Circle one: 8:50 5:30 Ms Kracht Name: Score: /100 110 pts available) EXAM 2: Version A NO CALCULATORS Multiple Choice: 10 questions at 3 points each Circle the

More information

TCM Final Review Packet Name Per.

TCM Final Review Packet Name Per. TCM Final Review Packet Name Per. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Translate the statement into a formula. 1) The total distance traveled,

More information

Exponential Functions with Base e

Exponential Functions with Base e Exponential Functions with Base e Any positive number can be used as the base for an exponential function, but some bases are more useful than others. For instance, in computer science applications, the

More information

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop Minitab 14 1 GETTING STARTED To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop The Minitab session will come up like this 2 To SAVE FILE 1. Click File>Save Project

More information

Understanding Tax Codes in Simply Accounting

Understanding Tax Codes in Simply Accounting Understanding Tax Codes in Simply Accounting www.prismbusinesstraining.com Understanding the Taxes and Tax Codes The tax code settings in Simply Accounting are found in the Setup menu on Simply s home

More information

Elementary Statistics

Elementary Statistics Chapter 7 Estimation Goal: To become familiar with how to use Excel 2010 for Estimation of Means. There is one Stat Tool in Excel that is used with estimation of means, T.INV.2T. Open Excel and click on

More information

Final Examination Re - Calculus I 21 December 2015

Final Examination Re - Calculus I 21 December 2015 . (5 points) Given the graph of f below, determine each of the following. Use, or does not exist where appropriate. y (a) (b) x 3 x 2 + (c) x 2 (d) x 2 (e) f(2) = (f) x (g) x (h) f (3) = 3 2 6 5 4 3 2

More information

Lab#3 Probability

Lab#3 Probability 36-220 Lab#3 Probability Week of September 19, 2005 Please write your name below, tear off this front page and give it to a teaching assistant as you leave the lab. It will be a record of your participation

More information

This method uses not only values of a function f(x), but also values of its derivative f'(x). If you don't know the derivative, you can't use it.

This method uses not only values of a function f(x), but also values of its derivative f'(x). If you don't know the derivative, you can't use it. Finding Roots by "Open" Methods The differences between "open" and "closed" methods The differences between "open" and "closed" methods are closed open ----------------- --------------------- uses a bounded

More information

TN 2 - Basic Calculus with Financial Applications

TN 2 - Basic Calculus with Financial Applications G.S. Questa, 016 TN Basic Calculus with Finance [016-09-03] Page 1 of 16 TN - Basic Calculus with Financial Applications 1 Functions and Limits Derivatives 3 Taylor Series 4 Maxima and Minima 5 The Logarithmic

More information

(i.e. the rate of change of y with respect to x)

(i.e. the rate of change of y with respect to x) Section 1.3 - Linear Functions and Math Models Example 1: Questions we d like to answer: 1. What is the slope of the line? 2. What is the equation of the line? 3. What is the y-intercept? 4. What is the

More information

Test Review. Question 1. Answer 1. Question 2. Answer 2. Question 3. Econ 719 Test Review Test 1 Chapters 1,2,8,3,4,7,9. Nominal GDP.

Test Review. Question 1. Answer 1. Question 2. Answer 2. Question 3. Econ 719 Test Review Test 1 Chapters 1,2,8,3,4,7,9. Nominal GDP. Question 1 Test Review Econ 719 Test Review Test 1 Chapters 1,2,8,3,4,7,9 All of the following variables have trended upwards over the last 40 years: Real GDP The price level The rate of inflation The

More information

Use the data you collected and plot the points to create scattergrams or scatter plots.

Use the data you collected and plot the points to create scattergrams or scatter plots. Key terms: bivariate data, scatterplot (also called scattergram), correlation (positive, negative, or none as well as strong or weak), regression equation, interpolation, extrapolation, and correlation

More information

Math 118 Final Exam December 14, 2011

Math 118 Final Exam December 14, 2011 Math 118 Final Exam December 14, 2011 Name (please print): Signature: Student ID: Directions. Fill out your name, signature and student ID number on the lines above right now before starting the exam!

More information

Activity Getting even at Pens R Us

Activity Getting even at Pens R Us Activity 4.3.2 Getting even at Pens R Us As part of Enterprise Activity Week you have decided to open a stall at school break times selling stationery. You have borrowed 200 from your parents which you

More information

It is a measure to compare bonds (among other things).

It is a measure to compare bonds (among other things). It is a measure to compare bonds (among other things). It provides an estimate of the volatility or the sensitivity of the market value of a bond to changes in interest rates. There are two very closely

More information

Topic #1: Evaluating and Simplifying Algebraic Expressions

Topic #1: Evaluating and Simplifying Algebraic Expressions John Jay College of Criminal Justice The City University of New York Department of Mathematics and Computer Science MAT 105 - College Algebra Departmental Final Examination Review Topic #1: Evaluating

More information

Algebra 2 Final Exam

Algebra 2 Final Exam Algebra 2 Final Exam Name: Read the directions below. You may lose points if you do not follow these instructions. The exam consists of 30 Multiple Choice questions worth 1 point each and 5 Short Answer

More information

B) 2x3-5x D) 2x3 + 5x

B) 2x3-5x D) 2x3 + 5x Pre Calculus Final Review 2010 (April) Name Divide f(x) by d(x), and write a summary statement in the form indicated. 1) f x = x - 4; d x = x + 7 (Write answer in polynomial form) 1) A) f x = x + 7 x2-7x

More information

Notation for the Derivative:

Notation for the Derivative: Notation for the Derivative: MA 15910 Lesson 13 Notes Section 4.1 (calculus part of textbook, page 196) Techniques for Finding Derivatives The derivative of a function y f ( x) may be written in any of

More information

DECISION SUPPORT Risk handout. Simulating Spreadsheet models

DECISION SUPPORT Risk handout. Simulating Spreadsheet models DECISION SUPPORT MODELS @ Risk handout Simulating Spreadsheet models using @RISK 1. Step 1 1.1. Open Excel and @RISK enabling any macros if prompted 1.2. There are four on-line help options available.

More information

CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES

CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES DISCRETE RANDOM VARIABLE: Variable can take on only certain specified values. There are gaps between possible data values. Values may be counting numbers or

More information

Math Analysis Midterm Review. Directions: This assignment is due at the beginning of class on Friday, January 9th

Math Analysis Midterm Review. Directions: This assignment is due at the beginning of class on Friday, January 9th Math Analysis Midterm Review Name Directions: This assignment is due at the beginning of class on Friday, January 9th This homework is intended to help you prepare for the midterm exam. The questions are

More information

Interest Formulas. Simple Interest

Interest Formulas. Simple Interest Interest Formulas You have $1000 that you wish to invest in a bank. You are curious how much you will have in your account after 3 years since banks typically give you back some interest. You have several

More information

Budget Preparation. 301 Tilton Road, Northfield, NJ P:

Budget Preparation. 301 Tilton Road, Northfield, NJ P: Budget Preparation Table of Contents: Creating the Budget/Revenue Preparation File Deleting the Budget/Revenue Prep File.....2 Creating the Budget Preparation.3 Creating the Revenue Preparation...4 Completing

More information