Project 2 by Kayli-Anna Barriteau

Size: px
Start display at page:

Download "Project 2 by Kayli-Anna Barriteau"

Transcription

1 Project 2 by Kayli-Anna Barriteau Decay of quinine in a malaria patient Data for the decay of a mg dose of quinine in a patient suffering from malaria is given in Mathematica format below. The first number in each pair is the number of hours since the injection of quinine, and the second number is the amount of quinine remaining in the body at that time after the injection. data = 880,.<, 81, 4.9<, 82, 44.1<, 83, 41.4<, 84, 39.1<, 85, 3.<, 8, 34.5<, 87, 32.4<, 88,.5<, 89, 28.7<, 8, 27.<, 811, 25.4<, 812, 23.9<, 813, 22.4<, 814, 21.<, 815, 19.7<, 81, 18.<, 817, 17.5<, 818, 1.5<, 819, 15.4<, 8, 14.5<, 821, 13.5<, 822, 12.8<, 823, 12.<, 824, 11.4<, 825,.<, 82,.<, 827, 9.5<, 828, 8.9<, 829, 8.3<, 8, 7.7<, 831, 7.3<, 832,.9<, 833,.<, 834,.2<, 835, 5.7<, 83, 5.3<, 837, 5.1<, 838, 4.7<, 839, 4.4<, 8, 4.3<, 841, 4.<, 842, 3.7<, 843, 3.<, 844, 3.3<, 845, 3.1<, 84, 2.8<, 847, 2.7<, 848, 2.5<, 849, 2.5<, 8, 2.2<< The data of the amount of quinine in the patient as a function of time is plotted below. ListPlot@dataD You can see better that that there is a curve in the data by joining the points.

2 2 Joined TrueD In order to calculate the the hour-by-hour growth rate of quinine in the patient, i have first placed the data in a table as shown below.

3 TableHeadings 8None, 8"Hours", "Amount"<<D Hours Amount

4 4 growth = Table@8n, data@@n + 1DD@@2DD - data@@ndd@@2dd<, 8n, 1, Length@dataD - 1<D by using the information in the table and with mathematica s programing, I am able to calculate the growth rate per hour. The first number in each pair is the hour while the second is the current growrth rate by that hour. We can see by the calculations, that the growth rate is not constant and that it can accelerate and slow down at different points. 881, - 3.1<, 82, - 2.8<, 83, - 2.7<, 84, - 2.3<, 85, - 2.5<, 8, - 2.1<, 87, - 2.1<, 88, - 1.9<, 89, - 1.8<, 8, - 1.7<, 811, - 1.<, 812, - 1.5<, 813, - 1.5<, 814, - 1.4<, 815, - 1.3<, 81, - 1.1<, 817, - 1.1<, 818, - 1.<, 819, - 1.1<, 8, - 0.9<, 821, - 1.<, 822, - 0.7<, 823, - 0.8<, 824, - 0.<, 825, - 0.8<, 82, - 0.<, 827, - 0.5<, 828, - 0.<, 829, - 0.<, 8, - 0.<, 831, - 0.4<, 832, - 0.4<, 833, - 0.3<, 834, - 0.4<, 835, - 0.5<, 83, - 0.4<, 837, - 0.2<, 838, - 0.4<, 839, - 0.3<, 8, - 0.1<, 841, - 0.3<, 842, - 0.3<, 843, - 0.1<, 844, - 0.3<, 845, - 0.2<, 84, - 0.3<, 847, - 0.1<, 848, - 0.2<, 849, 0.<, 8, - 0.3<< Below Is a visul reprensation of the growth rate. p3 = ListPlot@growth, Joined TrueD nlm = NonlinearModelFit@data, a * Exp@- b * xd, 8a, b, c<, xd This is the non-linear model for this particular growth as a logistic function. FittedModelB ã x F below is a plotted graph of the logisctic function.

5 5 P2 = Plot@nlm@xD, 8x, 1, <, PlotStyle RedD 0 By combining the graph of the logistic function and the original plotted data, we can visually see that the model fits the data really well. Show@8p1, P2<D nlm@"rsquared"d By calculating the RSquared Value, we can see that it is deffintly a good fit since the value is almost one and no were close to D@nlm@xD, xd Below is the calculated derivative of the non-linear model. This allows us to calculate the instantaneous growth rate of the logistic function approximation ã x Below is the plotted growth rate of the logistic function.

6 p4 = PlotA ã x, 8x, 1, <E By plotting both the growth rate from the logistic function and the growth rate we get from the data, we can see that this is almost a perfect fit and that the logistic function allows us to calculate the value of decay in more than just whole hours. This function clearly demonstrates exponential decay or a decrease that follows an exponential function. Show@8p3, p4<d Rate of enzyme catalysis = most troubled part of my project! I apologize for the bad work :( Data posted at biology-online shows how an enzyme breaks down hydrogen peroxide with time in a process called enzyme catalysis. The data are shown below in Mathematica format. The first number in each pair is the time t (in seconds) since the beginning of the catalysis experiment, and the second number is the amount of hydrogen peroxide H(t) (in ml) broken down by the enzyme at time t.

7 Rate of enzyme catalysis = most troubled part of my project! I apologize for the bad work :( 7 Data posted at biology-online shows how an enzyme breaks down hydrogen peroxide with time in a process called enzyme catalysis. The data are shown below in Mathematica format. The first number in each pair is the time t (in seconds) since the beginning of the catalysis experiment, and the second number is the amount of hydrogen peroxide H(t) (in ml) broken down by the enzyme at time t. In[23]:= enzymedata = 88, 0.5<, 8, 1.5<, 80, 3<, 890, 4<, 81, 4.5<, 8180, 5<< Below is the plotted data. In[29]:= p1 = ListPlot@88, 0.5<, 8, 1.5<, 80, 3<, 890, 4<, 81, 4.5<, 8180, 5<<, Joined TrueD Out[29]= Below is my fitted model and it s plotted graph. In[27]:= Out[27]= NonlinearModelFit@enzymedata, a - b * Exp@c * td, 8a, b, c<, td FittedModelB 0. F

8 8 In[]:= p2 = Plot@nlm@tD, 8t,, 180<, PlotStyle RedD 12 8 Out[]= 4 0 In[31]:= 1 Show@8p1, p2<d Out[31]= 2 1 In[32]:= Out[32]= 0 1 nlm@"rsquared"d I guess the model suggests that the maximum break down is 5 ml. Below is the derivative of the data and it s plot. In[35]:= Out[35]= d = D@nlm@tD, td ã t ã t t

9 In[47]:= 9 PlotA ã t ã t t, 8t,, 180<E Out[47]= Longitudinal observation of Japanese Lancelet, Branchiostoma japonicum, metamorphosis Data on a longitudinal observation of Japanese Lancelet, Branchiostoma japonicum, metamorphosis is shown (in Mathematica format) below. The first number in each pair is the number of days since the birth of a lancelet, and the second number is the length of the lancelet (in cm) on that day. data = 88, 5.8<, 87,.1<, 88, 5.9<, 89, <, 8,.1<, 811, <, 812, <, 813, 5.8<, 814, <, 815, 5.9<, 81, 5.9<, 817, <, 818,.2<, 819, 5.9<, 8, <, 821, <, 822, <, 823, 5.9<, 824,.1<, 825, <, 82, <, 827, <, 828,.1<, 829,.1<, 8, <, 831,.1<, 832,.1<, 833,.1<, 834,.1<, 835,.1<, 83,.1<, 837,.1<, 838,.1<, 839,.2<, 8,.1<, 841,.1<, 842,.2<, 843,.2<, 844,.3<, 845,.2<, 84,.3<, 847,.4<, 848,.4<, 849,.<, 8,.4<, 851,.5<, 852,.5<, 853,.7<, 854,.7<, 855,.8<, 85,.9<, 857,.8<, 858, 7<, 859, 7.1<, 80, 7.2<, 81, 7.5<, 82, 7.4<, 83, 7.5<, 84, 7.7<, 8, 7.9<, 87, 7.9<, 88, 8<, 89, 8<, 870, 8.2<, 872, 8.2<, 873, 8.5<, 874, 8.<, 875, 8.<, 87, 8.8<, 877, 9<, 879, 9<, 880, 9.2<< The data is plotted below as the length of the lancelet versus the number of days since birth as well as another version with the joining of all plotted points.

10 p1 = ListPlot@dataD ListPlot@data, Joined TrueD TableForm@data, TableHeadings 8None, 8"ð of Days", "Length"<<D ð of Days Length

11 Above is the data organized into a table form. This makes it easier to calculate the day-by day growth rate of the lancelet s length per day as shown below. The first number in the pair represents the day while the second number represents the growth rate. 11

12 12 Above is the data organized into a table form. This makes it easier to calculate the day-by day growth rate of the lancelet s length per day as shown below. The first number in the pair represents the day while the second number represents the growth rate. growth = Table@8n, data@@n + 1DD@@2DD - data@@ndd@@2dd<, 8n, 1, Length@dataD - 1<D 881, 0.3<, 82, - 0.2<, 83, 0.1<, 84, 0.1<, 85, - 0.1<, 8, 0<, 87, - 0.2<, 88, 0.2<, 89, - 0.1<, 8, 0.<, 811, 0.1<, 812, 0.2<, 813, - 0.3<, 814, 0.1<, 815, 0<, 81, 0<, 817, - 0.1<, 818, 0.2<, 819, - 0.1<, 8, 0<, 821, 0<, 822, 0.1<, 823, 0.<, 824, - 0.1<, 825, 0.1<, 82, 0.<, 827, 0.<, 828, 0.<, 829, 0.<, 8, 0.<, 831, 0.<, 832, 0.<, 833, 0.1<, 834, - 0.1<, 835, 0.<, 83, 0.1<, 837, 0.<, 838, 0.1<, 839, - 0.1<, 8, 0.1<, 841, 0.1<, 842, 0.<, 843, 0.2<, 844, - 0.2<, 845, 0.1<, 84, 0.<, 847, 0.2<, 848, 0.<, 849, 0.1<, 8, 0.1<, 851, - 0.1<, 852, 0.2<, 853, 0.1<, 854, 0.1<, 855, 0.3<, 85, - 0.1<, 857, 0.1<, 858, 0.2<, 859, 0.2<, 80, 0.<, 81, 0.1<, 82, 0<, 83, 0.2<, 84, 0.<, 85, 0.3<, 8, 0.1<, 87, 0.<, 88, 0.2<, 89, 0.2<, 870, 0<, 871, 0.2<< Below is the plotted version of the day - by - day growth rate. p3 = ListPlot@growth, Joined TrueD nlm = NonlinearModelFit@data, a * x ^ 2 + b * x + c, 8a, b, c<, xd Below is a model for the data in the form of c+bx+ax^2 and a graph that represents the model visually. FittedModelB x x2 F

13 13 p2 = Plot@nlm@xD, 8x,, 80<, PlotStyle RedD The figure below is a visual demonstartion on how good a fit the nonlinear model is to the data. Visually, it is a good fit. Show@8p1, p2<d nlm@"rsquared"d To insure that it is indeed a good fit, the RSquared value is calculated. The value is around.999 which is almost one. So, it is indeed a good fit since it is no where close to D@nlm@xD, xd Below is the calculated derivative of the non-linear model along with a plot of the derivative x

14 14 p4 = Plot@ x, 8x, 1, 71<D The graph below holds both the derivative of the non linear model as well as the the day by day growth rate. Show@8p3, p4<d Judging from a visula stand point, the fit is horrible and i do not beleive that this quadratic model for the lancelet s length can hold for days 0 through 5. Effect of temperature on parsnip germination The temperature at which seedlings are grown effects the percentage of seeds that germinate. One would like to find the optimum temperature that maximizes the germination rate. Below, in Mathematica format, is a set of data for germination percentages of parsnips, at varying temperatures. The first number in each pair is the temperature (F ), and second number is the percentage of seeds that germinated at that temperature.

15 15 The temperature at which seedlings are grown effects the percentage of seeds that germinate. One would like to find the optimum temperature that maximizes the germination rate. Below, in Mathematica format, is a set of data for germination percentages of parsnips, at varying temperatures. The first number in each pair is the temperature (F ), and second number is the percentage of seeds that germinated at that temperature. Parsnipdata = 8832, 0.82<, 841, 0.87<, 8, 0.79<, 859, 0.85<, 88, 0.89<, 877, 0.77<, 88, 0.51<, 895, 0.1<, 84, 0.<< 8832, 0.82<, 841, 0.87<, 8, 0.79<, 859, 0.85<, 88, 0.89<, 877, 0.77<, 88, 0.51<, 895, 0.1<, 84, 0.<< the percentage germination versus temperature is plotted below p1 = ListPlot@ParsnipdataD NonlinearModelFit@Parsnipdata, a * T ^ 2 + b * T + c, 8a, b, c<, TD Below is a nonlinear model and it s plotted graph. FittedModelB T T2 F

16 1 P2 = Plot@nlm@TD, 8T, 0, 32<, PlotStyle RedD Below is supposed to show both the linear model plot along with the data plot. For some reason, the Non linear plot is not showing up so we can not determine a visual fit. Luckily, the calculated R squared value located just below the graph tells us that it is indeed a good fit. Show@8p1, P2<D nlm@"rsquared"d Below is the calculated derivative of our model. d = D@nlm@TD, TD T By setting the serivative to 0, we are able to find the maximum temperature at which the model takes a maximum value which is degrees (F). I think the domain of the parsnip data has to be tested a little wider in order to conclude that this is indeed true. FindRoot@d Š 0, 8T, <D 8T 23.17< Melatonin in the blood A recent study investigated the blood levels of melatonin when inhaled as a spray.the data, in Mathematica format is given below.the first number in each pair is the time (in minutes) since administration of the melatonin as an oral spray, and the second number is the blood concentration (in ng/ml) of

17 17 Melatonin in the blood A recent study investigated the blood levels of melatonin when inhaled as a spray.the data, in Mathematica format is given below.the first number in each pair is the time (in minutes) since administration of the melatonin as an oral spray, and the second number is the blood concentration (in ng/ml) of melatonin in the bloodstream (averaged over 8 people: 3 females and 5 males). In[1]:= spraydata = 880, 0.38<, 85, 1.09<, 8, 4.79<, 8,.44<, 8, 13.08<, 8, 13.14<, 80, 11.43<, 890, 8.52<, 81,.58<, 8180, 3.31<, 82, 1.<, 830, 0.39<< the average concentration of melatonin as a function of time is plotted below. In[]:= p1 = ListPlot@spraydataD 12 8 Out[]= by using the nonlinearmodelfit command I am able to construct a surge function model for the data as shown below. In[4]:= Out[4]= nlm = NonlinearModelFit@spraydata, a * t * Exp@- b * td, 8a, b<, td FittedModelB ã t t F Below is the plotted non linear function as well as the nonlinear function plotted along side the data.

18 18 In[5]:= P2 = Plot@nlm@tD, 8t, 0, 30<, PlotStyle RedD 12 8 Out[5]= 4 2 In[7]:= Show@8p1, P2<D 12 8 Out[7]= Visually and from calculating the RSquared value, it is a rather decent fit. In[8]:= Out[8]= nlm@"rsquared"d Below is the derivative of the non-linear model and the derivative function plotted as a function of time. In[19]:= Out[19]= d = D@nlm@tD, td ã t ã t t

19 In[1]:= p3 = PlotA ã t ã t t, 8t, 0, 30<, PlotStyle RGBColor@0.8, 0., 0.3DE Out[1]= In[13]:= growth = TableForm@spraydata, TableHeadings 8None, 8"minutes", "blood concentration"<<d Out[13]//TableForm= minutes In[14]:= Out[14]= blood concentration growth = Table@8n, spraydata@@n + 1DD@@2DD - spraydata@@ndd@@2dd<, 8n, 1, Length@spraydataD - 1<D 881, 0.71<, 82, 3.7<, 83, 5.5<, 84, 2.4<, 85, 0.0<, 8, <, 87, <, 88, <, 89, <, 8, - 1.5<, 811, << the derivative from the data ia calculated and plotted along with the derivative of the surge function model below. 19

20 In[17]:= p4 = ListPlot@growth, Joined TrueD 4 2 Out[17]= In[18]:= Show@8p3, p4<d Out[18]= It does not appear to be a good fit. FindRoot@d Š 0, 8t,.71<D According to the derivative of the surge function, the model is 0 at around 4 minutes. and I think I am doing something wrong because that does not make any sense. Out[21]= 8t <

21 21

22 22

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata MSE 3/ECE 340 Instructor: Bill Knowlton Examples of Plotting Functions ü Example 1: Using the command ListPlot[ ] to plot data in a scatter plot In[1]:= Initialize data Clear somedata someplot Place data

More information

Exponential function review and practice Day 1

Exponential function review and practice Day 1 February 9, 2009 Exponential review: Day 1 page 1 Exponential function review and practice Day 1 Test this Friday 2/13. Bring your calculator every day, but especially Friday! Today s problems emphasize

More information

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Sean Rodby, Luke Snyder, Autar Kaw University of South

More information

Table 2.1 presents examples and explains how the proper results should be written. Table 2.1: Writing Your Results When Adding or Subtracting

Table 2.1 presents examples and explains how the proper results should be written. Table 2.1: Writing Your Results When Adding or Subtracting When you complete a laboratory investigation, it is important to make sense of your data by summarizing it, describing the distributions, and clarifying messy data. Analyzing your data will allow you to

More information

A Poor Example of a Project - But Gives Some Direction

A Poor Example of a Project - But Gives Some Direction A Poor Example of a Project - But Gives Some Direction Bill Knowlton Materials Science & Engineering Electrical & Computer Engineering Boise State Unversity The idea behind this example is two-fold: 1.

More information

Definition: A "system" of equations is a set or collection of equations that you deal with all together at once.

Definition: A system of equations is a set or collection of equations that you deal with all together at once. System of Equations Definition: A "system" of equations is a set or collection of equations that you deal with all together at once. There is both an x and y value that needs to be solved for Systems

More information

ME201/MTH281/ME400/CHE400 Newton's Law of Cooling

ME201/MTH281/ME400/CHE400 Newton's Law of Cooling ME1/MTH281/ME0/CHE0 Newton's Law of Cooling 1. Introduction This notebook uses Mathematica to solve the problem presented in class, in section 5.1 of the notes. The problem is one of transient heat conduction

More information

Chemical Reac+ons and Enzymes. Lesson Overview. Lesson Overview. 2.4 Chemical Reactions and Enzymes

Chemical Reac+ons and Enzymes. Lesson Overview. Lesson Overview. 2.4 Chemical Reactions and Enzymes Lesson Overview Chemical Reac+ons and Enzymes Lesson Overview 2.4 Chemical Reactions and Enzymes THINK ABOUT IT Living things are made up of chemical compounds, but chemistry isn t just what life is made

More information

MAT 17A - UHP - DISCUSSION #10 December 1, 2015

MAT 17A - UHP - DISCUSSION #10 December 1, 2015 MAT 17A - UHP - DISCUSSION #10 December 1, 2015 PROBLEM 1. Linear recursion equations Consider the linear recursion (finite difference) equation x j+1 = L x j = a x j + b, x 0 (1), where a and b are: (i)

More information

ME201/MTH21/ME400/CHE400 ASSIGNMENT #7 PROBLEM 1 Newton's Law of Cooling in Transient Conduction 1. Introduction This notebook uses Mathematica to solve problem 1 of Assignment #7, in which we analyze

More information

10-2: Exponential Function Introduction

10-2: Exponential Function Introduction Math 95 10-2: Exponential Function Introduction Quadratic functions, like y = x B, are made of a sum of powers of the independent variable. In a quadratic function, the variables are in the base of the

More information

Math 132. Population Growth: Raleigh and Wake County

Math 132. Population Growth: Raleigh and Wake County Math 132 Population Growth: Raleigh and Wake County S. R. Lubkin Application Ask anyone who s been living in Raleigh more than a couple of years what the biggest issue is here, and if the answer has nothing

More information

6.4 Exponential Growth and Decay

6.4 Exponential Growth and Decay 496 differential equations 6.4 Exponential Growth and Decay The separable differential equation y = y is relatively simple to solve, but it can model a wealth of important situations, including population

More information

Exponential growth and decay models have the form y = A e bt, t 0 for constants A and b, where independent variable t usually represents time.

Exponential growth and decay models have the form y = A e bt, t 0 for constants A and b, where independent variable t usually represents time. Chapter 3 Mathematical models 3. Introduction A mathematical model is an equation which is intended to match or model the behavior of some natural quantities. Eponential functions are found in many mathematical

More information

Achilles: Now I know how powerful computers are going to become!

Achilles: Now I know how powerful computers are going to become! A Sigmoid Dialogue By Anders Sandberg Achilles: Now I know how powerful computers are going to become! Tortoise: How? Achilles: I did curve fitting to Moore s law. I know you are going to object that technological

More information

Question 1: y= 2( ) +5 y= The line intersect the circle at points (-1.07, 2.85) and (-3.73,-2.45)

Question 1: y= 2( ) +5 y= The line intersect the circle at points (-1.07, 2.85) and (-3.73,-2.45) 1 1 1 1 1 1 Question 1: At what points (x,y) does the line with equation y = x+5 intersect the circle with radius 3 and center (-, 0)? The equation of the circle is (x + ) + y = 3 We can then substitute

More information

Applications of Exponential Functions Group Activity 7 STEM Project Week #10

Applications of Exponential Functions Group Activity 7 STEM Project Week #10 Applications of Exponential Functions Group Activity 7 STEM Project Week #10 In the last activity we looked at exponential functions. We looked at an example of a population growing at a certain rate.

More information

AMS-MAA-MER Special Session: David Bressoud Macalester College, St. Paul, MN New Orleans, January 8, 2007

AMS-MAA-MER Special Session: David Bressoud Macalester College, St. Paul, MN New Orleans, January 8, 2007 AMS-MAA-MER Special Session: David Bressoud Macalester College, St. Paul, MN New Orleans, January 8, 2007 This PowerPoint presentation is available at www.macalester.edu/~bressoud/talks Our problems with

More information

1 Functions And Change

1 Functions And Change 1 Functions And Change 1.1 What Is a Function? * Function A function is a rule that takes certain numbers as inputs and assigns to each a definite output number. The set of all input numbers is called

More information

Least-Squares Regression

Least-Squares Regression MATH 203 Least-Squares Regression Dr. Neal, Spring 2009 As well as finding the correlation of paired data {{ x 1, y 1 }, { x 2, y 2 },..., { x n, y n }}, we also can plot the data with a scatterplot and

More information

Exponential Decay. Enter the two points in the spreadsheet and make a list. b. Find an exponential regression model.

Exponential Decay. Enter the two points in the spreadsheet and make a list. b. Find an exponential regression model. Exponential Decay Example 5: At the beginning of a study, there are 50 grams of a substance present. After 17 days, there are 38.7 grams remaining. Assume the substance decays exponentially. a. State the

More information

appstats8.notebook October 11, 2016

appstats8.notebook October 11, 2016 Chapter 8 Linear Regression Objective: Students will construct and analyze a linear model for a given set of data. Fat Versus Protein: An Example pg 168 The following is a scatterplot of total fat versus

More information

HW #6. 1. Inflaton. (a) slow-roll regime. HW6.nb 1

HW #6. 1. Inflaton. (a) slow-roll regime. HW6.nb 1 HW6.nb HW #6. Inflaton (a) slow-roll regime In the slow-roll regime, we neglect the kinetic energy as well as f ÿÿ term in the equation of motion. Then H = ÅÅÅ 8 p 3 G N ÅÅÅ m f, 3 H f ÿ + m f = 0. We

More information

Unit #16 : Differential Equations

Unit #16 : Differential Equations Unit #16 : Differential Equations Goals: To introduce the concept of a differential equation. Discuss the relationship between differential equations and slope fields. Discuss Euler s method for solving

More information

Quantum Mechanics using Matrix Methods

Quantum Mechanics using Matrix Methods Quantum Mechanics using Matrix Methods Introduction and the simple harmonic oscillator In this notebook we study some problems in quantum mechanics using matrix methods. We know that we can solve quantum

More information

Discrete versus continuous-time models of malaria infections

Discrete versus continuous-time models of malaria infections Discrete versus continuous-time models of malaria infections Level 2 module in Modelling course in population and evolutionary biology (701-1418-00) Module author: Lucy Crooks Course director: Sebastian

More information

Non-maximum likelihood estimation and statistical inference for linear and nonlinear mixed models

Non-maximum likelihood estimation and statistical inference for linear and nonlinear mixed models Optimum Design for Mixed Effects Non-Linear and generalized Linear Models Cambridge, August 9-12, 2011 Non-maximum likelihood estimation and statistical inference for linear and nonlinear mixed models

More information

Ratios, Proportions, Unit Conversions, and the Factor-Label Method

Ratios, Proportions, Unit Conversions, and the Factor-Label Method Ratios, Proportions, Unit Conversions, and the Factor-Label Method Math 0, Littlefield I don t know why, but presentations about ratios and proportions are often confused and fragmented. The one in your

More information

Response Surface Methods

Response Surface Methods Response Surface Methods 3.12.2014 Goals of Today s Lecture See how a sequence of experiments can be performed to optimize a response variable. Understand the difference between first-order and second-order

More information

The number of daily sleep hours can be used to determine the amount of available study hours.

The number of daily sleep hours can be used to determine the amount of available study hours. Neatly complete all parts and hand in Wednesday. Clearly label the functions, the endpoints, intercepts, asymptotes, etc. The number of daily sleep hours can be used to determine the amount of available

More information

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Differentiation 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. 1 Launch Mathematica. Type

More information

Differentiation of Continuous Functions Central Difference Approximation of the First Derivative

Differentiation of Continuous Functions Central Difference Approximation of the First Derivative Differentiation of Continuous Functions Central Difference Approximation of the First Derivative Ana Catalina Torres, Autar Kaw University of South Florida United States of America kaw@eng.usf.edu Introduction

More information

Chapter 11 Packet & 11.2 What is a Differential Equation and What are Slope Fields

Chapter 11 Packet & 11.2 What is a Differential Equation and What are Slope Fields Chapter 11 Packet 11.1 & 11. What is a Differential Equation and What are Slope Fields What is a differential equation? An equation that gives information about the rate of change of an unknown function

More information

Study Island Algebra 2 Standards at Risk

Study Island Algebra 2 Standards at Risk Study Island Algebra 2 Standards at Risk Scatter Plots 1. The number of people who visited a state park each year is recorded. The scatter plot below shows the park's annual visitors over a nine-year period

More information

Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras

Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras Design and Optimization of Energy Systems Prof. C. Balaji Department of Mechanical Engineering Indian Institute of Technology, Madras Lecture - 09 Newton-Raphson Method Contd We will continue with our

More information

8.4 Application to Economics/ Biology & Probability

8.4 Application to Economics/ Biology & Probability 8.4 Application to Economics/ Biology & 8.5 - Probability http://classic.hippocampus.org/course_locat or?course=general+calculus+ii&lesson=62&t opic=2&width=800&height=684&topictitle= Costs+&+probability&skinPath=http%3A%2F%

More information

Extreme values: Maxima and minima. October 16, / 12

Extreme values: Maxima and minima. October 16, / 12 Extreme values: Maxima and minima October 16, 2015 1 / 12 Motivation for Maxima and Minima Imagine you have some model which predicts profits / cost of doing something /.... Then you probably want to find

More information

ST EDWARD S OXFORD. 14+ Entrance Assessment 2014 Science 1 hour. Candidate Name:.

ST EDWARD S OXFORD. 14+ Entrance Assessment 2014 Science 1 hour. Candidate Name:. ST EDWARD S OXFORD 14+ Entrance Assessment 2014 Science 1 hour Candidate Name: PHYSICS 1 Electricity may be produced from a number of different energy resources (a) (i) Complete the table below The first

More information

Acceleration. 3. Changing Direction occurs when the velocity and acceleration are neither parallel nor anti-parallel

Acceleration. 3. Changing Direction occurs when the velocity and acceleration are neither parallel nor anti-parallel Acceleration When the velocity of an object changes, we say that the object is accelerating. This acceleration can take one of three forms: 1. Speeding Up occurs when the object s velocity and acceleration

More information

Mathematica Project, Math21b Spring 2008

Mathematica Project, Math21b Spring 2008 Mathematica Project, Math21b Spring 2008 Oliver Knill, Harvard University, Spring 2008 Support Welcome to the Mathematica computer project! In case problems with this assignment, please email Oliver at

More information

Physics 1140 Fall 2013 Introduction to Experimental Physics

Physics 1140 Fall 2013 Introduction to Experimental Physics Physics 1140 Fall 2013 Introduction to Experimental Physics Joanna Atkin Lecture 5: Recap of Error Propagation and Gaussian Statistics Graphs and linear fitting Experimental analysis Typically make repeat

More information

PARTICLE MOTION: DAY 2

PARTICLE MOTION: DAY 2 PARTICLE MOTION: DAY 2 Section 3.6A Calculus AP/Dual, Revised 2018 viet.dang@humbleisd.net 7/30/2018 1:24 AM 3.6A: Particle Motion Day 2 1 WHEN YOU SEE THINK When you see Think Initially t = 0 At rest

More information

Lecture 10: Powers of Matrices, Difference Equations

Lecture 10: Powers of Matrices, Difference Equations Lecture 10: Powers of Matrices, Difference Equations Difference Equations A difference equation, also sometimes called a recurrence equation is an equation that defines a sequence recursively, i.e. each

More information

3 Describe the change in the two populations between days 0 and 8. [1]

3 Describe the change in the two populations between days 0 and 8. [1] Name: Date: Beach Channel High School Graphing and Interperting Data January 2005 Base your answers to questions 1 through 4 on the information and data table below and on your knowledge of biology. A

More information

Math 2311 Sections 4.1, 4.2 and 4.3

Math 2311 Sections 4.1, 4.2 and 4.3 Math 2311 Sections 4.1, 4.2 and 4.3 4.1 - Density Curves What do we know about density curves? Example: Suppose we have a density curve defined for defined by the line y = x. Sketch: What percent of observations

More information

Section 4.6 Exercises

Section 4.6 Exercises Section 4.6 Exponential and Logarithmic Models 283 Section 4.6 Exercises 1. You go to the doctor and he injects you with 13 milligrams of radioactive dye. After 12 minutes, 4.75 milligrams of dye remain

More information

7-8 Using Exponential and Logarithmic Functions

7-8 Using Exponential and Logarithmic Functions 1. PALEONTOLOGY The half-life of Potassium-40 is about 1.25 billion years. a. Determine the value of k and the equation of decay for Potassium-40. b. A specimen currently contains 36 milligrams of Potassium-40.

More information

Geometric series and effective medicine dosage

Geometric series and effective medicine dosage Geometric series and effective medicine dosage Introduction This lab concerns a model for a drug being given to a patient at regular intervals. As the drug is broken down by the body, its concentration

More information

REVISION: POPULATION ECOLOGY 01 OCTOBER 2014

REVISION: POPULATION ECOLOGY 01 OCTOBER 2014 REVISION: POPULATION ECOLOGY 01 OCTOBER 2014 Lesson Description In this lesson we revise: Introduction to Population Ecology What s Happening in the Environment Human Population: Analysis & Predictions

More information

OCR Maths S1. Topic Questions from Papers. Representation of Data

OCR Maths S1. Topic Questions from Papers. Representation of Data OCR Maths S1 Topic Questions from Papers Representation of Data PhysicsAndMathsTutor.com 12 The back-to-back stem-and-leaf diagram below shows the number of hours of television watched per week by each

More information

Step 1 Determine the Order of the Reaction

Step 1 Determine the Order of the Reaction Step 1 Determine the Order of the Reaction In this step, you fit the collected data to the various integrated rate expressions for zezro-, half-, first-, and second-order kinetics. (Since the reaction

More information

AP CHEMISTRY CHAPTER 12 KINETICS

AP CHEMISTRY CHAPTER 12 KINETICS AP CHEMISTRY CHAPTER 12 KINETICS Thermodynamics tells us if a reaction can occur. Kinetics tells us how quickly the reaction occurs. Some reactions that are thermodynamically feasible are kinetically so

More information

The general concept of pharmacokinetics

The general concept of pharmacokinetics The general concept of pharmacokinetics Hartmut Derendorf, PhD University of Florida Pharmacokinetics the time course of drug and metabolite concentrations in the body Pharmacokinetics helps to optimize

More information

Assuming that all items produced are sold, find the cost C as a function of the price p.

Assuming that all items produced are sold, find the cost C as a function of the price p. Math 165 - Reviewing Chapter 5 Name SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. For the given functions f and g, find the requested composite function

More information

x is also called the abscissa y is also called the ordinate "If you can create a t-table, you can graph anything!"

x is also called the abscissa y is also called the ordinate If you can create a t-table, you can graph anything! Senior Math Section 6-1 Notes Rectangular Coordinates and Lines Label the following 1. quadrant 1 2. quadrant 2 3. quadrant 3 4. quadrant 4 5. origin 6. x-axis 7. y-axis 8. Ordered Pair (x, y) at (2, 1)

More information

When activation energy is added to the reactants, a so-called activated complex is formed.

When activation energy is added to the reactants, a so-called activated complex is formed. SESSION 12: ENERGY & CHEMICAL CHANGE Key Concepts In this session we will focus on summarising what you need to know about: Activation energy and activation complex Energy profile of a reaction Enthalpy

More information

May 9, 2018 MATH 255A Spring Final Exam Study Guide. Types of questions

May 9, 2018 MATH 255A Spring Final Exam Study Guide. Types of questions May 9, 18 MATH 55A Spring 18 Final Exam Study Guide Rules for the final exam: The test is closed books/notes. A formula sheet will be provided that includes the key formulas that were introduced in the

More information

Time (hours) Morphine sulfate (mg)

Time (hours) Morphine sulfate (mg) Mat Xa Fall 2002 Review Notes Limits and Definition of Derivative Important Information: 1 According to te most recent information from te Registrar, te Xa final exam will be eld from 9:15 am to 12:15

More information

Mathematica for Calculus II (Version 9.0)

Mathematica for Calculus II (Version 9.0) Mathematica for Calculus II (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy December 31, 013 Contents 1. Introduction. Volumes of revolution 3. Solving systems of equations

More information

Chapter 5 Smartboard Notes

Chapter 5 Smartboard Notes Name Chapter 5 Smartboard Notes 10.1 Graph ax 2 + c Learning Outcome To graph simple quadratic functions Quadratic function A non linear function that can be written in the standard form y = ax 2 + bx

More information

*061006* Paper 6 Alternative to practical 0610/06

*061006* Paper 6 Alternative to practical 0610/06 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education BIOLOGY *00* Paper Alternative to practical 0/0 May/June 005 Candidates answer on the Question

More information

BIOLOGY 12: CHAPTER 6 - REVIEW WORKSHEET ENZYMES. 4. Define the First Law of Thermodynamics. Can energy be converted from one form to another form?

BIOLOGY 12: CHAPTER 6 - REVIEW WORKSHEET ENZYMES. 4. Define the First Law of Thermodynamics. Can energy be converted from one form to another form? BIOLOGY 12: CHAPTER 6 - REVIEW WORKSHEET ENZYMES PART A: CHAPTER REVIEW 1. List the 2 cellular organelles that transform one form of energy into another form. 2. Name the 2 processes that permit a flow

More information

Solutions. .5 = e k k = ln(.5) Now that we know k we find t for which the exponential function is = e kt

Solutions. .5 = e k k = ln(.5) Now that we know k we find t for which the exponential function is = e kt MATH 1220-03 Exponential Growth and Decay Spring 08 Solutions 1. (#15 from 6.5.) Cesium 137 and strontium 90 were two radioactive chemicals released at the Chernobyl nuclear reactor in April 1986. The

More information

MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4

MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4 MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4 GILBERT STRANG: OK, today is about differential equations. That's where calculus really is applied. And these will be equations that describe growth.

More information

N= {1,2,3,4,5,6,7,8,9,10,11,...}

N= {1,2,3,4,5,6,7,8,9,10,11,...} 1.1: Integers and Order of Operations 1. Define the integers 2. Graph integers on a number line. 3. Using inequality symbols < and > 4. Find the absolute value of an integer 5. Perform operations with

More information

Math 95 Practice Final Exam

Math 95 Practice Final Exam Part 1: No Calculator Evaluating Functions and Determining their Domain and Range The domain of a function is the set of all possible inputs, which are typically x-values. The range of a function is the

More information

εx 2 + x 1 = 0. (2) Suppose we try a regular perturbation expansion on it. Setting ε = 0 gives x 1 = 0,

εx 2 + x 1 = 0. (2) Suppose we try a regular perturbation expansion on it. Setting ε = 0 gives x 1 = 0, 4 Rescaling In this section we ll look at one of the reasons that our ε = 0 system might not have enough solutions, and introduce a tool that is fundamental to all perturbation systems. We ll start with

More information

Lesson 19: Understanding Variability When Estimating a Population Proportion

Lesson 19: Understanding Variability When Estimating a Population Proportion Lesson 19: Understanding Variability When Estimating a Population Proportion Student Outcomes Students understand the term sampling variability in the context of estimating a population proportion. Students

More information

Final Exam Study Aid

Final Exam Study Aid Math 112 Final Exam Study Aid 1 of 33 Final Exam Study Aid Note: This study aid is intended to help you review for the final exam. It covers the primary concepts in the course, with a large emphasis on

More information

Enzyme Model Catalase A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS

Enzyme Model Catalase A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS CoreModels Enzyme Model Catalase A CORE LEARNING GOALS ACTIVITY FOR SCIENCE AND MATHEMATICS Summary Students use a computer and a preconstructed STELLA model of enzyme activity to study the reaction rate

More information

Experiment Flow Analysis

Experiment Flow Analysis MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics Physics 8.1X Fall Term 22 Handed out: November 26 Due: Dec 6 at 4 pm Experiment Flow Analysis Problem 1: Here is a summary of the measurements,

More information

Knots, Coloring and Applications

Knots, Coloring and Applications Knots, Coloring and Applications Ben Webster University of Virginia March 10, 2015 Ben Webster (UVA) Knots, Coloring and Applications March 10, 2015 1 / 14 This talk is online at http://people.virginia.edu/~btw4e/knots.pdf

More information

NP-Completeness. Until now we have been designing algorithms for specific problems

NP-Completeness. Until now we have been designing algorithms for specific problems NP-Completeness 1 Introduction Until now we have been designing algorithms for specific problems We have seen running times O(log n), O(n), O(n log n), O(n 2 ), O(n 3 )... We have also discussed lower

More information

Contingency Tables. Safety equipment in use Fatal Non-fatal Total. None 1, , ,128 Seat belt , ,878

Contingency Tables. Safety equipment in use Fatal Non-fatal Total. None 1, , ,128 Seat belt , ,878 Contingency Tables I. Definition & Examples. A) Contingency tables are tables where we are looking at two (or more - but we won t cover three or more way tables, it s way too complicated) factors, each

More information

Exponents and Logarithms Exam

Exponents and Logarithms Exam Name: Class: Date: Exponents and Logarithms Exam Multiple Choice Identify the choice that best completes the statement or answers the question.. The decay of a mass of a radioactive sample can be represented

More information

Science One Math. October 23, 2018

Science One Math. October 23, 2018 Science One Math October 23, 2018 Today A general discussion about mathematical modelling A simple growth model Mathematical Modelling A mathematical model is an attempt to describe a natural phenomenon

More information

DO NOT WRITE ON THIS PAGE

DO NOT WRITE ON THIS PAGE PART A: MULTIPLE CHOICE AND MATCHING (24 KU) 1. A rate of reaction is usually obtained by measuring a. the rate at which products are consumed b. the rate at which reactants are produced c. the rate at

More information

In[0]:= Dateist@D Out[0]= 82009, 0, 9, 2, 35, 3.457034< ü Bo 0 < < -> 2 Consider the case when we have a particle in the ground state of PIB of length. In[3]:= Y@_, _D := Definitions: 2 SinB p F In[4]:=

More information

RECITATION 9: 4-1 MAXIMUM AND MINIMUM VALUES (PART 2)

RECITATION 9: 4-1 MAXIMUM AND MINIMUM VALUES (PART 2) RECITATION 9: 4-1 MAXIMUM AND MINIMUM VALUES (PART 2) WARM-UP QUESTIONS: 1. Explain the difference between an absolute minimum/maximum and a local minimum/maximum. Use pictures AND words in English. 2.

More information

[ ESS ESS ] / 2 [ ] / ,019.6 / Lab 10 Key. Regression Analysis: wage versus yrsed, ex

[ ESS ESS ] / 2 [ ] / ,019.6 / Lab 10 Key. Regression Analysis: wage versus yrsed, ex Lab 1 Key Regression Analysis: wage versus yrsed, ex wage = - 4.78 + 1.46 yrsed +.126 ex Constant -4.78 2.146-2.23.26 yrsed 1.4623.153 9.73. ex.12635.2739 4.61. S = 8.9851 R-Sq = 11.9% R-Sq(adj) = 11.7%

More information

MBF3C S3L1 Sine Law and Cosine Law Review May 08, 2018

MBF3C S3L1 Sine Law and Cosine Law Review May 08, 2018 MBF3C S3L1 Sine Law and Cosine Law Review May 08, 2018 Topic : Review of previous spiral I remember how to apply the formulas for Sine Law and Cosine Law Review of Sine Law and Cosine Law Remember when

More information

Today s Agenda: 1) Why Do We Need To Measure The Memory Component? 2) Machine Pool Memory / Best Practice Guidelines

Today s Agenda: 1) Why Do We Need To Measure The Memory Component? 2) Machine Pool Memory / Best Practice Guidelines Today s Agenda: 1) Why Do We Need To Measure The Memory Component? 2) Machine Pool Memory / Best Practice Guidelines 3) Techniques To Measure The Memory Component a) Understanding Your Current Environment

More information

Chapter 9 Regression with a Binary Dependent Variable. Multiple Choice. 1) The binary dependent variable model is an example of a

Chapter 9 Regression with a Binary Dependent Variable. Multiple Choice. 1) The binary dependent variable model is an example of a Chapter 9 Regression with a Binary Dependent Variable Multiple Choice ) The binary dependent variable model is an example of a a. regression model, which has as a regressor, among others, a binary variable.

More information

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment Unit 6 (1-Dimensional Motion) Practice Assessment Choose the best answer to the following questions. Indicate the confidence in your answer by writing C (Confident), S (So-so), or G (Guessed) next to the

More information

2-4 Chemical Reactions and Enzymes

2-4 Chemical Reactions and Enzymes 2-4 Chemical Reactions and Enzymes Living things, as you have seen, are made up of chemical compounds-some simple and some complex. But chemistry isn t just what life is made of-chemistry is also what

More information

Describing Nonlinear Change Over Time

Describing Nonlinear Change Over Time Describing Nonlinear Change Over Time Longitudinal Data Analysis Workshop Section 8 University of Georgia: Institute for Interdisciplinary Research in Education and Human Development Section 8: Describing

More information

Mathematica Project 3

Mathematica Project 3 Mathematica Project 3 Name: Section: Date: On your class s Sakai site, your instructor has placed 5 Mathematica notebooks. Please use the following table to determine which file you should select based

More information

DOWNLOAD PDF KINEMATICS NOTES PHYSICS 11

DOWNLOAD PDF KINEMATICS NOTES PHYSICS 11 Chapter 1 : Kinematics Grade 11 Physics Notes Khullakitab Physics 11 à Kinematics 1 Physics 11 à Kinematics à Graphing Motion Kinematics is the study of motion without reference to forces and masses. Note

More information

Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions. Alan J Xiao, Cognigen Corporation, Buffalo NY

Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions. Alan J Xiao, Cognigen Corporation, Buffalo NY Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions Alan J Xiao, Cognigen Corporation, Buffalo NY ABSTRACT Logistic regression has been widely applied to population

More information

The Solow model - analytical solution, linearization, shooting, relaxation (complete)

The Solow model - analytical solution, linearization, shooting, relaxation (complete) The Solow model - analytical solution, linearization, shooting, relaxation (complete) (Quantitative Dynamic Macroeconomics, Lecture Notes, Thomas Steger, University of Leipzig). Solow model: analytical

More information

Math Final Exam Review. 1. The following equation gives the rate at which the angle between two objects is changing during a game:

Math Final Exam Review. 1. The following equation gives the rate at which the angle between two objects is changing during a game: Math 131 Spring 2008 c Sherry Scarborough and Heather Ramsey Page 1 Math 131 - Final Exam Review 1. The following equation gives the rate at which the angle between two objects is changing during a game:

More information

Chapter 8. Linear Regression. The Linear Model. Fat Versus Protein: An Example. The Linear Model (cont.) Residuals

Chapter 8. Linear Regression. The Linear Model. Fat Versus Protein: An Example. The Linear Model (cont.) Residuals Chapter 8 Linear Regression Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 8-1 Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fat Versus

More information

Population Changes at a Constant Percentage Rate r Each Time Period

Population Changes at a Constant Percentage Rate r Each Time Period Concepts: population models, constructing exponential population growth models from data, instantaneous exponential growth rate models, logistic growth rate models. Population can mean anything from bacteria

More information

Time (mins) # of E.coli cells

Time (mins) # of E.coli cells Logistic Growth So far in this unit we have assumed that a population grew by the same percentage growth rate each time period. This is the fundamental assumption behind exponential growth. With exponential

More information

Physic 231 Lecture 3. Main points of today s lecture. for constant acceleration: a = a; assuming also t0. v = lim

Physic 231 Lecture 3. Main points of today s lecture. for constant acceleration: a = a; assuming also t0. v = lim Physic 231 Lecture 3 Main points of today s lecture Δx v = ; Δ t = t t0 for constant acceleration: a = a; assuming also t0 = 0 Δ x = v v= v0 + at Δx 1 v = lim Δ x = Δ t 0 ( v+ vo ) t 2 Δv 1 2 a = ; Δ v=

More information

Math Circles: Population Models

Math Circles: Population Models Math Circles: Population Models Marek Stastna, Kris Rowe March 4, 2015 1 Examples Now that you have seen the first slide set, let s work out some concrete examples. This will be followed by three problems

More information

Math 201 Calculus I Course Activity: Antiderivatives and the First Fundamental Theorem of Calculus

Math 201 Calculus I Course Activity: Antiderivatives and the First Fundamental Theorem of Calculus Math 201 Calculus I Page 1 Math 201 Calculus I Course Activity: Antiderivatives and the First Fundamental Theorem of Calculus Name: Purpose: To begin investigating the relationship between a function and

More information

Name: How Long Does It Take? (Part 1)

Name: How Long Does It Take? (Part 1) Name: How Long Does It Take? (Part 1) Standards Addressed in this Task MGSE9-12.N.RN.1, MGSE9-12.N.RN.2, MGSE9-12.N.RN.3 Before sending astronauts to investigate the new planet of Exponentia, NASA decided

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology v2.0 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a near-daily basis

More information