Math 250A (Fall 2008) - Lab II (SOLUTIONS)

Size: px
Start display at page:

Download "Math 250A (Fall 2008) - Lab II (SOLUTIONS)"

Transcription

1 Math 25A (Fall 28) - Lab II (SOLUTIONS) Part I Consider the differential equation d d = 2 + () Solve this equation analticall to obtain an epression for (). Your answer should contain an arbitrar constant. Answer: A general solution can be found b first separating variables and then integrating both sides. One can then make a trigonometric substitution = tan θ and upon solving for, the solution is () = tan ( + C) where C is a constant dependent upon the initial condition. (2) Solve the differential equation numericall using Euler s method on the interval [, ] for the initial condition () =. On a single figure, plot our estimated solution curve using the following step sizes for :.5,.2,.,.5, and.. Make clear which curve corresponds to each step-size (Hint: use different line stles/colors). Answer: An important component of the assignment was in this specific question. The main challenge stemmed from learning how to write a Matlab script that would do the numeric integration when eecuted. An eample code is given below as well as the figure (Fig. ) that was asked for. Make sure ou understand how each line of the code works and how the ultimatel all tie together to form the program. % ### odesolvepti.m ###..8 % Matlab code to use Euler s method to solve the differential equation % = ˆ2 + % NOTE: there are a lot of different was (e.g., structure, snta, naming % conventions) one could use for this code that would still ultimatel % produce the same result clear clf % - % User Input Parameters % nsteps= ; % # of steps MIN= ; % starting -value MAX= ; % ending -value

2 2.6 Numerical Solution to ODE d/d = 2 + using Eulers Method step size = FIGURE. Comparison of numerical solutions for the differential equation = 2 + using Euler s method for different step-sizes. deltax=.; % step-size % initial conditions (i.e. what is (MIN)?) = ; % - % [user shouldn t have to change parameters below here] = MIN; % rename initial -value % determine # of steps needed based upon interval bounds and specified step-size nsteps= (MAX-MIN)/deltaX; % create the arras S and S that will contain all the and -values % b setting first value equal to initial condition S()= ; S()= ; % use a for loop to go through each step for nn=2:nsteps+ end % use Euler s method to solve for net -value % (this is where the form of the differential equation is input) S(nn) = S(nn-) + deltax*(s(nn-)ˆ2 + ); % update -arra S(nn) = S(nn-)+ deltax; % plot the numerical solution

3 3.6 Numerical Solution to ODE d/d = 2 + using Eulers Method Eulers method Eact FIGURE 2. Comparison of eact solution for the differential equation = 2 + with solution estimated numericall using Euler s method. plot(s,s) hold on; label( ) label( ) title( Numerical Solution to ODE d/d =ˆ2+ using Eulers Method ) % plot eact (i.e., analticall-derived) solution (onl true if ()=) A= tan(s); plot(s,a, r ) grid on legend( Eulers method, Eact, Location, SouthEast ) (3) On a different figure, plot our numerical solution above for =.5 together with the eact solution ou solved for analticall (given the specified initial condition). Make sure that it is clear which of the two different curves is which. Discuss an differences ou see between the two plots and tr to eplain how those differences arise. How does this difference change as gets smaller? Answer: See Fig. 2. We can see that the numerical solution (solid blue line) under-estimates the eact solution (() = tan ( + C)). From Fig., we can sa that the difference between the eact and numerical solutions decreases as gets smaller.

4 Eulers method Eact Numerical Solution to ODE d/d = 2 + using Eulers Method FIGURE 3. Comparison of eact solution for the differential equation = 2 + with solution estimated numericall using Euler s method with a step-size of =.5. (4) Etend the range of comparison between the numerical solution and the eact solution to [, π/2]. How does our numerical solution compare to the analtical solution as gets close to π/2? Eplain wh one is larger than the other. Answer: From Fig. 3, we can see that the numerical solution gets worse and worse (as it under-estimates) the eact solution diverges as π/2 and that its derivative goes to. Remember that Euler s method assumes that the derivative is constant over the interval, using the value at the left-hand side. Since the derivative becomes increasingl larger as π/2, it makes sense that the total error in the numerical approimation will increase and that the numerical solution will be an under-esitmate (since the assumed value of the derivative is alwas the smallest of anwhere on the actual interval).

5 5 FIGURE 4. Phase-line portrait for d/d = 2 c. Note that the stabilit of the equilibria can be determined b whether the quadratic function is above or below the -ais. Part II Consider the differential equation d d = 2 c where c is a constant greater than zero. () Determine all equilibrium solutions and their stabilit. Answer: Factoring the right-hand side of the differential equation, we can see that there will be equilibria solutions at = ± c. There are man was one could determine their stabilit (e.g. use DFIELD, linearize about the fied point and find the eigenvalues, etc..). One approach is to plot the phase-line portrait (Fig.4). The right-hand side is just a concave-up parabola and the points where it crosses the horizontal-ais indicates the equilibrium locations. Whether the curve is above or below the ais indicates the directionalit of the phase-line. We can see that = c is unstable and = c is a stable equilibrium. (2) Solve this equation analticall to obtain an epression for (). Your answer should depend upon c and contain an arbitrar constant. Answer: Similar to Part I, we would use separation of variables, then integrate both sides. For this case, we could use a partial fraction epansion to simplif the

6 6.2.4 Numerical Solution to ODE d/d = 2 c using Eulers Method step size = Numerical Solution to ODE d/d = 2 c using Eulers Method step size = log(+.) FIGURE 5. Comparison of eact solution for the differential equation = 2 c with solution estimated numericall using Euler s method for different step-sizes. Also shown using a logarithmic -ais (where the values were slightl offset so to visualize the initial point). denominator, ielding [ d 2 c = 2 c ( + c) + ] 2 c ( d = + C c) The resulting integral is easil solved (make a substitution and use du u = ln u + c) and solving for, we have the final solution c () = c + Ae2 Ae 2 c where A is an arbitrar constant. (3) Write a code to solve the equation numericall using Euler s method on the interval [, 5] for the initial condition () = and with c = 4. On a single figure, plot our estimated solution curve using the following step sizes for :.5,.2,.,.5, and.. Make clear which curve corresponds to each stepsize. How does the solution depend upon? Answer: An eample code is given below as well as the figure (Fig. 5) that was asked for. The solution approaches the equilibrium value faster for smaller values of. A sample code for solving the problem is shown below. % ### odesolveptii.m ###..8 % Matlab code to use Euler s method to solve the differential equation % = ˆ2 - c % (where c is a positive const.)

7 7 clear clf % - % User Input Parameters MIN= ; % starting -value MAX= 5; % ending -value deltax=.; % step-size % initial conditions = ; % - = MIN; nsteps= (MAX-MIN)/deltaX; S()= ; S()= ; for nn=2:nsteps+ end % note the difference here from the code for Part I S(nn) = S(nn-) + deltax*(s(nn-)ˆ2 - c); % update -arra S(nn) = S(nn-)+ deltax; % plot the numerical solution plot(s,s) hold on; label( ) label( ) title( Numerical Solution to ODE d/d =ˆ2-c using Eulers Method ) % plot eact (i.e., analticall-derived) solution (onl true if ()=) A= sqrt(c)*(-ep(2*sqrt(c)*s))./((+ep(2*sqrt(c)*s))); % could also have used -sqrt(c)*tanh(sqrt(c)*s) here too plot(s,a, r ) grid on legend( Eulers method, Eact, Location, SouthEast ) (4) Using =., find solution curves for different initial conditions () = o. How do the solutions depend upon o? Answer: See Fig.6. (5) Eplain our answer to the last part in terms of our analtic solution. Are the two results consistent? Answer: The constant A will depend upon the initial condition such that A = o c o + c

8 8 2 Numerical Solution to ODE d/d =^2 -c using Eulers Method.5.5 = FIGURE 6. Comparison of numerical solutions for the differential equation = 2 4 with solution estimated numericall using Euler s method with a step-size of =. for different initial values at =. Though not shown on this figure, initial conditions where o > 2 will diverge towards + (as ) and o < 2 will converge towards = 2. where o = (). Solutions will diverge towards + (for increasing ) if o > c. Solutions will be sigmoidal when o < c. The shape will be a reverse- S since solutions will move awa from the unstable equilibrium (i.e., c) and towards the stable one ( c) as increases. Decreasing o from around 2 towards -2 will move the center of the S-shape to the left. For o < c, solution curves will asmptoticall approach the stable equilibrium. When o = c, the solutions will be constant (i.e., equilibrium solutions). Both the numerical ( =.) and analtical solutions are consistent with one another, though the numerical solution will underestimate for the case o > c as the solution diverges. Note that for the initial condition () =, we have the solution. c () = c e2 + e = c tanh ( c) 2 c (6) What is the effect of varing c? Eplain in the contets of both our analtical answer and numerical simulations. Do both agree?

9 Answer: The effect of changing c is two-fold. First, it changes the equilibrium values and thus what the asmptotic limits are. Second, because c appears in the argument of the eponent, increasing c will increase the rate at which solution asmptoticall approach (or move awa from) the equilibria. For eample, if o < c, then a larger value of c means a sharper transition in the S-shape that the solution takes. One could also introduce the variables u = / c and τ = c. This change of variables would reformulate the differential equation as du dτ = u2 and thereb removing the parameter-dependence in terms of understanding the underling dnamics. 9

Name: Date: Page 1 of 7. What is Slope? There are four types of slope you can encounter. A slope can be positive, negative, zero, or undefined.

Name: Date: Page 1 of 7. What is Slope? There are four types of slope you can encounter. A slope can be positive, negative, zero, or undefined. Name: Date: Page of 7 What is Slope? What is slope? If ou have ever walked up or down a hill, then ou have alread eperienced a real life eample of slope. Keeping this fact in mind, b definition, the slope

More information

Non-linearities in Simple Regression

Non-linearities in Simple Regression Non-linearities in Simple Regression 1. Eample: Monthly Earnings and Years of Education In this tutorial, we will focus on an eample that eplores the relationship between total monthly earnings and years

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

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

9-9A. Graphing Proportional Relationships. Vocabulary. Activity 1. Lesson

9-9A. Graphing Proportional Relationships. Vocabulary. Activity 1. Lesson Chapter 9 Lesson 9-9A Graphing Proportional Relationships Vocabular unit rate BIG IDEA The graph of the pairs of positive numbers in a proportional relationship is a ra starting at (, ) and passing through

More information

MATH COLLEGE ALGEBRA/BUSN - PRACTICE EXAM #2 - SUMMER DR. DAVID BRIDGE

MATH COLLEGE ALGEBRA/BUSN - PRACTICE EXAM #2 - SUMMER DR. DAVID BRIDGE MATH 13 - COLLEGE ALGEBRA/BUSN - PRACTICE EXAM # - SUMMER 007 - DR. DAVID BRIDGE MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Graph the piecewise

More information

FINITE MATH LECTURE NOTES. c Janice Epstein 1998, 1999, 2000 All rights reserved.

FINITE MATH LECTURE NOTES. c Janice Epstein 1998, 1999, 2000 All rights reserved. FINITE MATH LECTURE NOTES c Janice Epstein 1998, 1999, 2000 All rights reserved. August 27, 2001 Chapter 1 Straight Lines and Linear Functions In this chapter we will learn about lines - how to draw them

More information

EXPONENTIAL FUNCTION BASICS COMMON CORE ALGEBRA II BASIC EXPONENTIAL FUNCTIONS

EXPONENTIAL FUNCTION BASICS COMMON CORE ALGEBRA II BASIC EXPONENTIAL FUNCTIONS Name: Date: EXPONENTIAL FUNCTION BASICS COMMON CORE ALGEBRA II You studied eponential functions etensivel in Common Core Algebra I. Toda's lesson will review man of the basic components of their graphs

More information

QUADRATIC. Parent Graph: How to Tell it's a Quadratic: Helpful Hints for Calculator Usage: Domain of Parent Graph:, Range of Parent Graph: 0,

QUADRATIC. Parent Graph: How to Tell it's a Quadratic: Helpful Hints for Calculator Usage: Domain of Parent Graph:, Range of Parent Graph: 0, Parent Graph: How to Tell it's a Quadratic: If the equation's largest exponent is 2 If the graph is a parabola ("U"-Shaped) Opening up or down. QUADRATIC f x = x 2 Domain of Parent Graph:, Range of Parent

More information

5.2E Lesson: Proportions in Tables and Graphs*

5.2E Lesson: Proportions in Tables and Graphs* 5.2E Lesson: Proportions in Tables and Graphs* Name: Period: 1. Use Graph A below to fill in the table relating calories to snacks. Number Number of Ordered Write a complete sentence describing the meaning

More information

GRAPHS IN ECONOMICS. Appendix. Key Concepts. A Positive Relationship

GRAPHS IN ECONOMICS. Appendix. Key Concepts. A Positive Relationship Appendi GRAPHS IN ECONOMICS Ke Concepts Graphing Data Graphs represent quantit as a distance on a line. On a graph, the horizontal scale line is the -ais, the vertical scale line is the -ais, and the intersection

More information

Probability distributions relevant to radiowave propagation modelling

Probability distributions relevant to radiowave propagation modelling Rec. ITU-R P.57 RECOMMENDATION ITU-R P.57 PROBABILITY DISTRIBUTIONS RELEVANT TO RADIOWAVE PROPAGATION MODELLING (994) Rec. ITU-R P.57 The ITU Radiocommunication Assembly, considering a) that the propagation

More information

Exploring Slope. High Ratio Mountain Lesson 11-1 Linear Equations and Slope

Exploring Slope. High Ratio Mountain Lesson 11-1 Linear Equations and Slope Eploring Slope High Ratio Mountain Lesson 11-1 Learning Targets: Understand the concept of slope as the ratio points on a line. between any two Graph proportional relationships; interpret the slope and

More information

Some Formulas neglected in Anderson, Sweeny, and Williams, with a Digression on Statistics and Finance

Some Formulas neglected in Anderson, Sweeny, and Williams, with a Digression on Statistics and Finance Some Formulas neglected in Anderson, Sween, and Williams, with a Digression on Statistics and Finance Transformations of a Single Random variable: If ou have a case where a new random variable is defined

More information

Math 229 FINAL EXAM Review: Fall Final Exam Monday December 11 ALL Projects Due By Monday December 11

Math 229 FINAL EXAM Review: Fall Final Exam Monday December 11 ALL Projects Due By Monday December 11 Math 229 FINAL EXAM Review: Fall 2018 1 Final Exam Monday December 11 ALL Projects Due By Monday December 11 1. Problem 1: (a) Write a MatLab function m-file to evaluate the following function: f(x) =

More information

Problem Set 2 Solutions

Problem Set 2 Solutions ECO2001 Fall 2015 Problem Set 2 Solutions 1. Graph a tpical indifference curve for the following utilit functions and determine whether the obe the assumption of diminishing MRS: a. U(, ) = 3 + b. U(,

More information

Neoclassical Growth Models. Solow Model

Neoclassical Growth Models. Solow Model Neoclassical Growth Models Model - mathematical representation of some aspect of the econom; best models are often ver simple but conve enormous insight into how the world wors "ll theor depends on assumptions

More information

MATH 572: Computational Assignment #2

MATH 572: Computational Assignment #2 MATH 57: Computational Assignment # Due on Thurda, March 3, 4 TTH :4pm Wenqiang Feng Wenqiang Feng MATH 57 ( TTH :4pm): Computational Assignment # Contents Adaptive Runge-Kutta Methods Formulas 3 Problem

More information

14.02 Principles of Macroeconomics Problem Set 6 Solutions Fall 2004

14.02 Principles of Macroeconomics Problem Set 6 Solutions Fall 2004 Part I. True/False/Uncertain Justif our answer with a short argument. 4.0 Principles of Macroeconomics Problem Set 6 Solutions Fall 004. In an econom with technological progress, the saving rate is irrelevant

More information

Lesson 6: Extensions and applications of consumer theory. 6.1 The approach of revealed preference

Lesson 6: Extensions and applications of consumer theory. 6.1 The approach of revealed preference Microeconomics I. Antonio Zabalza. Universit of Valencia 1 Lesson 6: Etensions and applications of consumer theor 6.1 The approach of revealed preference The basic result of consumer theor (discussed in

More information

Representation of Preferences

Representation of Preferences Consumer Preference and The Concept Of Utilit Representation of Preferences Bundle/basket a combination of goods and services that an individual might consume. Eample: Bundle A = (60, 30) contains 60 units

More information

Homework 3 Solutions

Homework 3 Solutions Homework 3 Solutions Econ 5 - Stanford Universit - Winter Quarter 215/16 Exercise 1: Math Warmup: The Canonical Optimization Problems (Lecture 6) For each of the following five canonical utilit functions,

More information

Division of Polynomials

Division of Polynomials Division of Polnomials Dividing Monomials: To divide monomials we must draw upon our knowledge of fractions as well as eponent rules. 1 Eample: Divide. Solution: It will help to separate the coefficients

More information

APPM 2360 Project 1. Due: Friday October 6 BEFORE 5 P.M.

APPM 2360 Project 1. Due: Friday October 6 BEFORE 5 P.M. APPM 2360 Project 1 Due: Friday October 6 BEFORE 5 P.M. 1 Introduction A pair of close friends are currently on the market to buy a house in Boulder. Both have obtained engineering degrees from CU and

More information

Appendix G: Numerical Solution to ODEs

Appendix G: Numerical Solution to ODEs Appendix G: Numerical Solution to ODEs The numerical solution to any transient problem begins with the derivation of the governing differential equation, which allows the calculation of the rate of change

More information

Analytic Models of the ROC Curve: Applications to Credit Rating Model Validation

Analytic Models of the ROC Curve: Applications to Credit Rating Model Validation Analtic Models of the ROC Curve: Applications to Credit Rating Model Validation Steve Satchell Facult of Economics and Politics Universit of Cambridge Email: ses@econ.cam.ac.uk Wei Xia Birkbeck College

More information

Chapter 1 Review Applied Calculus 60

Chapter 1 Review Applied Calculus 60 Chapter 1 Review Applied Calculus 60 Section 7: Eponential Functions Consider these two companies: Company A has 100 stores, and epands by opening 50 new stores a year Company B has 100 stores, and epands

More information

Pre-Calculus Midterm Exam REVIEW January 2013

Pre-Calculus Midterm Exam REVIEW January 2013 Pre-Calculus Midterm Eam REVIEW Januar 0 Name: Date: Teacher: Period: Your midterm eamination will consist of: 0 multiple-choice questions (including true/false & matching) these will be completed on the

More information

n - 1 PMT = 2) ( ) + ( ) + (9 1) A) 7,002,009 B) 70,002,009 C) 70,020,009 D) 700,020,009

n - 1 PMT = 2) ( ) + ( ) + (9 1) A) 7,002,009 B) 70,002,009 C) 70,020,009 D) 700,020,009 MGF 1107-Math for Liberal Arts II-Final Eam Stud Guide Spring 015 The final eam will consist of three parts: both a multiple choice and free response section allowing a scientific calculator, and a free

More information

5.7 Factoring by Special Products

5.7 Factoring by Special Products Section 5.7 Factoring b Special Products 305 5.7 Factoring b Special Products OBJECIVES 1 Factor a Perfect Square rinomial. 2 Factor the Difference of wo Squares. 3 Factor the Sum or Difference of wo Cubes.

More information

Laurie s Notes. Overview of Section 7.6. (1x + 6)(2x + 1)

Laurie s Notes. Overview of Section 7.6. (1x + 6)(2x + 1) Laurie s Notes Overview of Section 7.6 Introduction In this lesson, students factor trinomials of the form ax 2 + bx + c. In factoring trinomials, an common factor should be factored out first, leaving

More information

Lesson 2.3 Exercises, pages

Lesson 2.3 Exercises, pages Lesson.3 Eercises, pages 11 11 A. For the graph of each rational function below: i) Write the equations of an asmptotes. ii) State the domain. a) b) 0 6 8 8 0 8 16 i) There is no vertical asmptote. The

More information

Solve the problem. 1) The price p and the quantity x sold of a certain product obey the demand equation: p = - 1 x + 300, 0 x 800.

Solve the problem. 1) The price p and the quantity x sold of a certain product obey the demand equation: p = - 1 x + 300, 0 x 800. Sample Test 3 Name In the real test ou will have questions and the following rules: You have 0 minutes to complete the test below. The usage of books or notes, or communication with other students is not

More information

Test # 1 Review Math MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

Test # 1 Review Math MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Test # 1 Review Math 135 Name (Sections 1.3,.,3.7,..1,.3,11.1,11.,11.3,and 11.) _ MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Factor out the greatest

More information

1 The Solow Growth Model

1 The Solow Growth Model 1 The Solow Growth Model The Solow growth model is constructed around 3 building blocks: 1. The aggregate production function: = ( ()) which it is assumed to satisfy a series of technical conditions: (a)

More information

MLC at Boise State Logarithms Activity 6 Week #8

MLC at Boise State Logarithms Activity 6 Week #8 Logarithms Activity 6 Week #8 In this week s activity, you will continue to look at the relationship between logarithmic functions, exponential functions and rates of return. Today you will use investing

More information

Find the distance between the pair of points. 1) (5, 4) (-7, -3) A) 193 B) 84 C) 5 D) 95

Find the distance between the pair of points. 1) (5, 4) (-7, -3) A) 193 B) 84 C) 5 D) 95 Azu Onwe Okwechime (Instructor) HCCS - NORTHWEST COLLEGE PRECALCULUS - MATH - EXAM # SAMPLE- REVIEW. Eam will consist of to 6 chosen from these Questions MULTIPLE CHOICE. Choose the one alternative that

More information

State-Dependent Fiscal Multipliers: Calvo vs. Rotemberg *

State-Dependent Fiscal Multipliers: Calvo vs. Rotemberg * State-Dependent Fiscal Multipliers: Calvo vs. Rotemberg * Eric Sims University of Notre Dame & NBER Jonathan Wolff Miami University May 31, 2017 Abstract This paper studies the properties of the fiscal

More information

MA Lesson 13 Notes Section 4.1 (calculus part of textbook, page 196) Techniques for Finding Derivatives

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

More information

Continuous Distributions

Continuous Distributions Quantitative Methods 2013 Continuous Distributions 1 The most important probability distribution in statistics is the normal distribution. Carl Friedrich Gauss (1777 1855) Normal curve A normal distribution

More information

In the Herb Business, Part I

In the Herb Business, Part I 63 In the Herb Business, Part I A. You have joined a highl respected St Croi herbalist in a business to market her herbal products. Your personal goal is to assure that the business thrives. Researchers

More information

EXAMPLE. 6 The answer is 3x x 1 1. Divide. a. A10x x 2 B 4 (1 + 2x) b. A9-6a 2-11aB a 5 3a 1. Step 1 Step 2. Step 3.

EXAMPLE. 6 The answer is 3x x 1 1. Divide. a. A10x x 2 B 4 (1 + 2x) b. A9-6a 2-11aB a 5 3a 1. Step 1 Step 2. Step 3. -. Plan Lesson Preview Check Skills You ll Need Adding and Subtracting Polnomials Lesson 9-: Eample Eercises 0 Etra Practice, p. 70 Multipling Binomials Lesson 9-: Eamples, Eercises 9 Etra Practice, p.

More information

8.2 Exercises. Section 8.2 Exponential Functions 783

8.2 Exercises. Section 8.2 Exponential Functions 783 Section 8.2 Eponential Functions 783 8.2 Eercises 1. The current population of Fortuna is 10,000 heart souls. It is known that the population is growing at a rate of 4% per ear. Assuming this rate remains

More information

Name: Math 10250, Final Exam - Version A May 8, 2007

Name: Math 10250, Final Exam - Version A May 8, 2007 Math 050, Final Exam - Version A May 8, 007 Be sure that you have all 6 pages of the test. Calculators are allowed for this examination. The exam lasts for two hours. The Honor Code is in effect for this

More information

Review Problems for Mid-Term 1 (MAT1250/Cal Poly Pomona Fall 2018) ( x + 1) 36 [Hint: Find x] x + x x. x 1. = + g.

Review Problems for Mid-Term 1 (MAT1250/Cal Poly Pomona Fall 2018) ( x + 1) 36 [Hint: Find x] x + x x. x 1. = + g. Prof: M. Nasab Review Problems for Mid-Term (MAT50/Cal Pol Pomona Fall 08). Factor completel 5 +. Find all real zeroes of 8 4 + [Hint: Find ]. Find all real zeroes of ( + ) 6 [Hint: Find ] 4. Add and reduce

More information

Polynomial and Rational Functions

Polynomial and Rational Functions Chapter 4 Polnomial and Rational Functions 4.3 Rational Functions I 1. In R() = 4 3, the denominator, q( ) = 3, has a zero at 3. Thus, the domain of R() is all real numbers ecept 3.. In R() = 5 3 +, the

More information

Online Appendix Optimal Time-Consistent Government Debt Maturity D. Debortoli, R. Nunes, P. Yared. A. Proofs

Online Appendix Optimal Time-Consistent Government Debt Maturity D. Debortoli, R. Nunes, P. Yared. A. Proofs Online Appendi Optimal Time-Consistent Government Debt Maturity D. Debortoli, R. Nunes, P. Yared A. Proofs Proof of Proposition 1 The necessity of these conditions is proved in the tet. To prove sufficiency,

More information

Chapter 4 Probability and Probability Distributions. Sections

Chapter 4 Probability and Probability Distributions. Sections Chapter 4 Probabilit and Probabilit Distributions Sections 4.6-4.10 Sec 4.6 - Variables Variable: takes on different values (or attributes) Random variable: cannot be predicted with certaint Random Variables

More information

Name Class Date. Multiplying Two Binomials Using Algebra Tiles. 2x(x + 3) = x 2 + x. 1(x + 3) = x +

Name Class Date. Multiplying Two Binomials Using Algebra Tiles. 2x(x + 3) = x 2 + x. 1(x + 3) = x + Name Class Date Multiplying Polynomials Going Deeper Essential question: How do you multiply polynomials? A monomial is a number, a variable, or the product of a number and one or more variables raised

More information

14.1 Fitting Exponential Functions to Data

14.1 Fitting Exponential Functions to Data Name Class Date 14.1 Fitting Eponential Functions to Data Essential Question: What are ways to model data using an eponential function of the form f() = ab? Resource Locker Eplore Identifying Eponential

More information

1 4. For each graph look for the points where the slope of the tangent line is zero or f (x) = 0.

1 4. For each graph look for the points where the slope of the tangent line is zero or f (x) = 0. Name: Homework 6 solutions Math 151, Applied Calculus, Spring 2018 Section 4.1 1-4,5,20,23,24-27,38 1 4. For each graph look for the points where the slope of the tangent line is zero or f (x) = 0. 5.

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

Addition and Subtraction of Rational Expressions 5.3

Addition and Subtraction of Rational Expressions 5.3 Addition and Subtraction of Rational Epressions 5.3 This section is concerned with addition and subtraction of rational epressions. In the first part of this section, we will look at addition of epressions

More information

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization March 9 16, 2018 1 / 19 The portfolio optimization problem How to best allocate our money to n risky assets S 1,..., S n with

More information

Economics 386-A1. Practice Assignment 2. S Landon Fall 2003

Economics 386-A1. Practice Assignment 2. S Landon Fall 2003 Economics 386-A Practice Assignment S Landon Fall 003 This assignment will not be graded. Answers will be made available on the Economics 386 web page: http://www.arts.ualberta.ca/~econweb/landon/e38603.html.

More information

Online Shopping Intermediaries: The Strategic Design of Search Environments

Online Shopping Intermediaries: The Strategic Design of Search Environments Online Supplemental Appendix to Online Shopping Intermediaries: The Strategic Design of Search Environments Anthony Dukes University of Southern California Lin Liu University of Central Florida February

More information

elementary and intermediate Algebra Warm-up Name atfm0303mk2810yes

elementary and intermediate Algebra Warm-up Name atfm0303mk2810yes MATH000 online PLACEMENT TEST 1 QUESTIONS 11-0-13 Fall 013 elementar and intermediate Algebra Warm-up Name atfm0303mkes www.alvarezmathhelp.com website PROGRAMS ALVAREZLAB (SAVE AND EXTRACT TO YOUR COMPUTER)

More information

Math 103: The Mean Value Theorem and How Derivatives Shape a Graph

Math 103: The Mean Value Theorem and How Derivatives Shape a Graph Math 03: The Mean Value Theorem and How Derivatives Shape a Graph Ryan Blair University of Pennsylvania Thursday October 27, 20 Math 03: The Mean Value Theorem and How Derivatives Thursday October Shape

More information

Eco504 Spring 2010 C. Sims MID-TERM EXAM. (1) (45 minutes) Consider a model in which a representative agent has the objective. B t 1.

Eco504 Spring 2010 C. Sims MID-TERM EXAM. (1) (45 minutes) Consider a model in which a representative agent has the objective. B t 1. Eco504 Spring 2010 C. Sims MID-TERM EXAM (1) (45 minutes) Consider a model in which a representative agent has the objective function max C,K,B t=0 β t C1 γ t 1 γ and faces the constraints at each period

More information

Linear Modeling Business 5 Supply and Demand

Linear Modeling Business 5 Supply and Demand Linear Modeling Business 5 Supply and Demand Supply and demand is a fundamental concept in business. Demand looks at the Quantity (Q) of a product that will be sold with respect to the Price (P) the product

More information

MA Lesson 27 Section 4.1

MA Lesson 27 Section 4.1 MA 15200 Lesson 27 Section 4.1 We have discussed powers where the eponents are integers or rational numbers. There also eists powers such as 2. You can approimate powers on your calculator using the power

More information

Consumer Optimization Fundamentals

Consumer Optimization Fundamentals Consumer Optimization Fundamentals The consumer optimization processes we use in this class find the point that brings the most utilit b simultaneousl testing all points along the budget constraint following

More information

CHAPTER 6. Exponential Functions

CHAPTER 6. Exponential Functions CHAPTER 6 Eponential Functions 6.1 EXPLORING THE CHARACTERISTICS OF EXPONENTIAL FUNCTIONS Chapter 6 EXPONENTIAL FUNCTIONS An eponential function is a function that has an in the eponent. Standard form:

More information

5 Profit maximization, Supply

5 Profit maximization, Supply Microeconomics I - Lecture #5, March 17, 2009 5 Profit maximization, Suppl We alread described the technological possibilities now we analze how the firm chooses the amount to produce so as to maximize

More information

X ln( +1 ) +1 [0 ] Γ( )

X ln( +1 ) +1 [0 ] Γ( ) Problem Set #1 Due: 11 September 2014 Instructor: David Laibson Economics 2010c Problem 1 (Growth Model): Recall the growth model that we discussed in class. We expressed the sequence problem as ( 0 )=

More information

1 A tax on capital income in a neoclassical growth model

1 A tax on capital income in a neoclassical growth model 1 A tax on capital income in a neoclassical growth model We look at a standard neoclassical growth model. The representative consumer maximizes U = β t u(c t ) (1) t=0 where c t is consumption in period

More information

Boise State University GEOS 397 Fall 2016

Boise State University GEOS 397 Fall 2016 Homework #3: Hill-slope evolution and plotting Due: 5:00 PM 09/16/16 Please read the following questions carefully and make sure to answer the problems completely. In your MATLAB script(s), please include

More information

Generating Non-Gaussian Vibration for Testing Purposes

Generating Non-Gaussian Vibration for Testing Purposes Generating Vibration for Testing Purposes David O. Smallwood, Albuquerque, New Meico There is increasing interest in simulating vibration environments that are non-, particularl in the transportation arena.

More information

Economics II - Exercise Session, December 3, Suggested Solution

Economics II - Exercise Session, December 3, Suggested Solution Economics II - Exercise Session, December 3, 008 - Suggested Solution Problem 1: A firm is on a competitive market, i.e. takes price of the output as given. Production function is given b f(x 1, x ) =

More information

1. In this exercise, we can easily employ the equations (13.66) (13.70), (13.79) (13.80) and

1. In this exercise, we can easily employ the equations (13.66) (13.70), (13.79) (13.80) and CHAPTER 13 Solutions Exercise 1 1. In this exercise, we can easily employ the equations (13.66) (13.70), (13.79) (13.80) and (13.82) (13.86). Also, remember that BDT model will yield a recombining binomial

More information

Chapter DIFFERENTIAL EQUATIONS: PHASE SPACE, NUMERICAL SOLUTIONS

Chapter DIFFERENTIAL EQUATIONS: PHASE SPACE, NUMERICAL SOLUTIONS Chapter 10 10. DIFFERENTIAL EQUATIONS: PHASE SPACE, NUMERICAL SOLUTIONS Abstract Solving differential equations analytically is not always the easiest strategy or even possible. In these cases one may

More information

Hydrology 4410 Class 29. In Class Notes & Exercises Mar 27, 2013

Hydrology 4410 Class 29. In Class Notes & Exercises Mar 27, 2013 Hydrology 4410 Class 29 In Class Notes & Exercises Mar 27, 2013 Log Normal Distribution We will not work an example in class. The procedure is exactly the same as in the normal distribution, but first

More information

Test 1 Review MATH 176 Part 1: Computer Part

Test 1 Review MATH 176 Part 1: Computer Part / Test Review MATH 76 Part : Computer Part. Daniel buys a new car for $54,000. The car is epected to last 0 years, at which time it will be worth $7,000. a) Write a function that describes the value of

More information

Feb. 4 Math 2335 sec 001 Spring 2014

Feb. 4 Math 2335 sec 001 Spring 2014 Feb. 4 Math 2335 sec 001 Spring 2014 Propagated Error in Function Evaluation Let f (x) be some differentiable function. Suppose x A is an approximation to x T, and we wish to determine the function value

More information

Estimating Pricing Kernel via Series Methods

Estimating Pricing Kernel via Series Methods Estimating Pricing Kernel via Series Methods Maria Grith Wolfgang Karl Härdle Melanie Schienle Ladislaus von Bortkiewicz Chair of Statistics Chair of Econometrics C.A.S.E. Center for Applied Statistics

More information

TOBB-ETU, Economics Department Macroeconomics II (ECON 532) Practice Problems III

TOBB-ETU, Economics Department Macroeconomics II (ECON 532) Practice Problems III TOBB-ETU, Economics Department Macroeconomics II ECON 532) Practice Problems III Q: Consumption Theory CARA utility) Consider an individual living for two periods, with preferences Uc 1 ; c 2 ) = uc 1

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. MAC Summer C 6 Worksheet (.,.,.) Table Names MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Sketch the graph of the function and determine whether

More information

Homework # 8 - [Due on Wednesday November 1st, 2017]

Homework # 8 - [Due on Wednesday November 1st, 2017] Homework # 8 - [Due on Wednesday November 1st, 2017] 1. A tax is to be levied on a commodity bought and sold in a competitive market. Two possible forms of tax may be used: In one case, a per unit tax

More information

Name Date Student id #:

Name Date Student id #: Math1090 Final Exam Spring, 2016 Instructor: Name Date Student id #: Instructions: Please show all of your work as partial credit will be given where appropriate, and there may be no credit given for problems

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

FIN FINANCIAL INSTRUMENTS SPRING 2008

FIN FINANCIAL INSTRUMENTS SPRING 2008 FIN-40008 FINANCIAL INSTRUMENTS SPRING 2008 The Greeks Introduction We have studied how to price an option using the Black-Scholes formula. Now we wish to consider how the option price changes, either

More information

Exercises in Mathematcs for NEGB01, Quantitative Methods in Economics. Part 1: Wisniewski Module A and Logic and Proofs in Mathematics

Exercises in Mathematcs for NEGB01, Quantitative Methods in Economics. Part 1: Wisniewski Module A and Logic and Proofs in Mathematics Eercises in Mathematcs for NEGB0, Quantitative Methods in Economics Problems marked with * are more difficult and optional. Part : Wisniewski Module A and Logic and Proofs in Mathematics. The following

More information

TEST # 1 REVIEW MATH MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

TEST # 1 REVIEW MATH MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. TEST # REVIEW MATH Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Give the domain and range of the relation. ) {(-8, -), (, ), (9, 8), (-, ),

More information

Expenditure minimization

Expenditure minimization These notes are rough; this is mostly in order to get them out before the homework is due. If you would like things polished/clarified, please let me know. Ependiture minimization Until this point we have

More information

Final Exam II (Solutions) ECON 4310, Fall 2014

Final Exam II (Solutions) ECON 4310, Fall 2014 Final Exam II (Solutions) ECON 4310, Fall 2014 1. Do not write with pencil, please use a ball-pen instead. 2. Please answer in English. Solutions without traceable outlines, as well as those with unreadable

More information

Economic Markets. The Theory of Consumer Behavior

Economic Markets. The Theory of Consumer Behavior Economic Markets We want to work towards a theor of market equilibrium. We alread have a prett good idea of what that is, the prices and quantit in a market are going to be set b suppl and demand. So to

More information

Math 154 :: Elementary Algebra

Math 154 :: Elementary Algebra Math 1 :: Elementar Algebra Section.1 Exponents Section. Negative Exponents Section. Polnomials Section. Addition and Subtraction of Polnomials Section. Multiplication of Polnomials Section. Division of

More information

EconS Income E ects

EconS Income E ects EconS 305 - Income E ects Eric Dunaway Washington State University eric.dunaway@wsu.edu September 23, 2015 Eric Dunaway (WSU) EconS 305 - Lecture 13 September 23, 2015 1 / 41 Introduction Over the net

More information

EXAMPLE 2 COMMON CORE

EXAMPLE 2 COMMON CORE REFLECT. Why can it be helpful to solve a linear equation for y? Graphing a Linear Function Using the Slope and y-intercept You can graph the linear function f() = m + b using only the slope m and y-intercept

More information

Solution of Equations

Solution of Equations Solution of Equations Outline Bisection Method Secant Method Regula Falsi Method Newton s Method Nonlinear Equations This module focuses on finding roots on nonlinear equations of the form f()=0. Due to

More information

Normal Probability Distributions

Normal Probability Distributions Normal Probability Distributions Properties of Normal Distributions The most important probability distribution in statistics is the normal distribution. Normal curve A normal distribution is a continuous

More information

0 Review: Lines, Fractions, Exponents Lines Fractions Rules of exponents... 5

0 Review: Lines, Fractions, Exponents Lines Fractions Rules of exponents... 5 Contents 0 Review: Lines, Fractions, Exponents 3 0.1 Lines................................... 3 0.2 Fractions................................ 4 0.3 Rules of exponents........................... 5 1 Functions

More information

MA Notes, Lesson 19 Textbook (calculus part) Section 2.4 Exponential Functions

MA Notes, Lesson 19 Textbook (calculus part) Section 2.4 Exponential Functions MA 590 Notes, Lesson 9 Tetbook (calculus part) Section.4 Eponential Functions In an eponential function, the variable is in the eponent and the base is a positive constant (other than the number ). Eponential

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. 12B Practice for the Final Eam MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. If = -4 and = -2, evaluate the epression. 12-6 1) + 2 A) - 9 B) 0 C)

More information

MACROECONOMICS. Prelim Exam

MACROECONOMICS. Prelim Exam MACROECONOMICS Prelim Exam Austin, June 1, 2012 Instructions This is a closed book exam. If you get stuck in one section move to the next one. Do not waste time on sections that you find hard to solve.

More information

Answer Key. EC 2273 Problem Set 1. Professor Nyshadham. Spring 2017

Answer Key. EC 2273 Problem Set 1. Professor Nyshadham. Spring 2017 EC 2273 Problem Set 1 Professor Nyshadham Spring 2017 Answer Key 1. A visual look at the world In the first class I asked you to write down three characteristics of an under-developed nation. (If you have

More information

501 Algebra Questions

501 Algebra Questions 501 Algebra Questions 501 Algebra Questions 2nd Edition NEW YORK Copright 2006 LearningEpress, LLC. All rights reserved under International and Pan-American Copright Conventions. Published in the United

More information

Continuous random variables

Continuous random variables Continuous random variables probability density function (f(x)) the probability distribution function of a continuous random variable (analogous to the probability mass function for a discrete random variable),

More information

Economics 325 Intermediate Macroeconomic Analysis Practice Problem Set 1 Suggested Solutions Professor Sanjay Chugh Spring 2011

Economics 325 Intermediate Macroeconomic Analysis Practice Problem Set 1 Suggested Solutions Professor Sanjay Chugh Spring 2011 Department of Eonomis Universit of Marland Eonomis 35 Intermediate Maroeonomi Analsis Pratie Problem Set Suggested Solutions Professor Sanja Chugh Spring 0. Partial Derivatives. For eah of the following

More information

Chapter II: Labour Market Policy

Chapter II: Labour Market Policy Chapter II: Labour Market Policy Section 2: Unemployment insurance Literature: Peter Fredriksson and Bertil Holmlund (2001), Optimal unemployment insurance in search equilibrium, Journal of Labor Economics

More information