Newton s Cooling Model in Matlab and the Cooling Project!

Size: px
Start display at page:

Download "Newton s Cooling Model in Matlab and the Cooling Project!"

Transcription

1 Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton Cooling Project Your Project Typical Cooling Project Matlab Session

2 Abstract Newton s Cooling Model in Matlab and the Cooling Project! Your assignment will be to take the liquid of your choice and place it in a cup of some sort like a coffee cup. Measure the ambient temperature A of the room you are in. Microwave the contents until the liquid is close to boiling. Then take it out of the microwave and measure the initial temperature, T 0. Then measure the temperature every 30 seconds for the first five minutes and then every minute for the next 10 minutes and then every five minutes thereafter until the temperature of the liquid in the cup reaches A + 5 or so. You will not reach room temperature in any reasonable length of time, so stopping at A + 5 is just fine. We will then model the decay of the temperature of your liquid using Newton s Law of Cooling. So it we let T (t) be the temperature of your liquid at time t in minutes, we will assume that the cooling of the liquid satisfies Newton s Law of Cooling.

3 Hence, we know This has solution T (t) = k(t (t) A), T (0) = T 0. T (t) = A + Be kt. Applying the initial condition, we get T 0 = A + B. or B = T 0 A. Hence, the solution is T (t) = A + (T 0 A)e kt. The one parameter we don t know is the constant of proportionality, k. However, we do have all the data we collected. So, rewrite our solution as T (t) A = e kt. T 0 A Now take the logarithm of both sides to get ( ) T (t) A ln = kt. (1) T 0 A This tell us how to estimate the value of k. Let the variable U(t) be defined to be ( ) T (t) A U(t) = ln T 0 A Then, Equation 1 can be written as U(t) = kt. Thus, the variable U is linear in t; i.e. if we graph U versus t we should see a straight line with slope k. Our collected data consists of pairs of the form (time, temperature). Suppose we collected N such pairs. Label them as (t i, T i) for 1 i N (you might have 80 points say so for you N = 80). Compute the corresponding U(t i) U i points ( ) Ti A U i = ln T 0 A and plot them as a scatter plot in MatLab.

4 Note the first value, U 1 = ln T0 A T0 A = ln(1) = 0. So our line has U intercept 0. Hence, our line is of the form y = mt and we have to find a good candidate for the slope m. This slope will then be used in our cooling model. From your data, you now have a collection of pairs (t i, U i) for 1 i N. We can find a line which comes close in an optimal way to all of this data (although the line does not have to include all the data!) by using a bit of calculus. At each time, the line has the value mt i. The discrepancy or error between the actual U value and the line value is then U i mt i. We want the cumulative error between our line and the data, so we don t want errors to cancel. Hence, we could choose an error term like U i mt i or (U i mt i) 2. Both of these are fine, but the squared one is differentiable which will allow us to use calculus methods. Define the energy function E(m) where m is the slope to be E(m) = N (U i mt i) 2. This is a nice function and so let s find where this function has a minimum by setting its derivative is zero. Setting the derivative to zero, we find de N dm = 2 (U i mt i) ( t i) = 0. Simplifying a bit, we have N ( U it i = m ti 2 ).

5 Solving for the critical point m, we find m = Uiti t2 i Finally, it is easy to see d 2 E dm 2 = 2 N ti 2 > 0. for all choices of m. Hence, the value m which is the critical point must be the global minimum Hence, the optimal slope is m = Uiti t2 i Then we can see how good our model is by plotting the model solution T (t) = T (t) = A + (T 0 A)e m t on the same plot as the actual data. First some notes of formatting of the report in your choice of word processor. 1. Use a one inch margin on all sides. 2. Use 11 pt font. Now let s talk about the structure of the document. It consists of the following pieces: Introduction: here you discuss the Newton s Law of Cooling. You should do some research on this at the library or online to find out more about this law. Your findings about this will then go in this section. This is 6 Points.

6 More on your document s structure: The Mathematical Model: Here you state the mathematical form of Newton s Law of Cooling. This means that you need to type the appropriate mathematical equations. Take care to do this nicely so that the report has a nice visual look. Discuss the meaning of each symbol in the mathematical equations, of course. Derive the solution to the Newton cooling problem showing all the mathematics. This is to make sure you learn how to use mathematics in a word processing document. Derive the optimal slope value as we have done in the text: again, this is to make sure you can type mathematics. Derive the appropriate log plot that you will use to find the Newton Cooling Constant. This is 10 Points. The Experiment: Here you discuss that your experiment is going to try find out if your liquid obeys Newton s Law of Cooling. You need to explicitly go over all of the information that is relevant to the experiment. This includes the choice of liquid, the cup it was placed in, an analysis of the kind of cup it was (ceramic, Styrofoam etc.), how the temperature of the liquid was measured and so forth. Be very explicit here. The idea is that the reader would have enough information to run the experiment themselves. Include a picture of the cup and your temperature measurement device in this section. Don t use water; that is an automatic project score of 0! Take pictures of your experimental setup and embed them in the document. This is 10 Points.

7 The MatLab Analysis: Here you include 1. the MatLab code fragments that plot your original data using circles for the data points. 2. the MatLab code to create the appropriate log plot annotated carefully. 3. the plot of your log data using circles for the data points. 4. the MatLab code to find the optimal slope from log plot and your value of the slope This is 10 Points. The Model: Here you discuss the model you found from your data and show how it compares to the data you collected. The MatLab code to plot the model and the data simultaneously needs to be here as well as the actual plot. Your original data is again plotted with circles for the data while the model is plotted as a smooth curve. This is 8 Points. Conclusions: Here you discuss whether or not you feel Newton s Law of Cooling provides a good theoretical model for your collected data. Discuss also flaws you might have found in the experiment. This is 6 points. References: Any references you used need to be placed here.

8 Let s see how we can manage our experimental data. Save your experimental data in a file with two columns. Column one is for time and column two is for the temperature of your liquid. Create a new file in Matlab and call it Newton.dat or some other name. Place it in your class folder. For a typical liquid (orange juice, water, tomato juice etc), we might collect the data here We have the ambient or room temperature is 76 degrees for our experiment. load the data and generate the plot of the data % l o a d i n t h e e x p e r i m e n t a l d a t a from t h e % f i l e Newton. dat as two columns >> Data = l o a d ( Newton. dat ) ; % use t h e f i r s t column as time >> time = Data ( :, 1 ) ; % use t h e second column as t e m p e r a t u r e >> Temperature = Data ( :, 2 ) ; % g e n e r a t e a p l o t o f t h e e x p e r i m e n t a l d a t a >> p l o t ( time, Temperature, o ) ; % s e t x l a b e l >> x l a b e l ( Time i n Minutes ) ; % s e t y l a b e l >> y l a b e l ( Temperature in Fahrenheit ) ; % s e t t i t l e >> t i t l e ( Newton Law Of C o o l i n g E x p e r i m e n t a l Data ) ;

9 We see the plot of the measured data here: From the theory we have discussed, ( we ) know we should graph the T A transformed data given by log T0 A where A is the room temperature, T and T0 are the temperature and initial temperature of the liquid, respectively. Here A = 76 and T0 = 205. Thus, T0 A = 129. Here is how we do this in Matlab: % for t h i s data, T 0 A = = 129 >> A = 7 6 ; >> LogTemperature = l o g ( ( Temperature A) / ( ) ) ; >> p l o t ( time, LogTemperature, o ) ; >> x l a b e l ( Time i n Minutes ) ; >> y l a b e l ( Transformed V a r i a b l e l n ( (T A) /( T 0 A) ) ) ; >> t i t l e ( Transformed Data V e r s u s Time ) ;

10 You can see this transformed data here: Then, look for the best straight line through the plot making sure you have the line go through the point (0, 0) at the top. The optimal slope is then m = Uiti N. t2 i In MatLab, we can add up all the entries in the variable U and time using the sum command. The optimal slope calculation in MatLab is then >> mstar = sum ( LogTemperature. time ) /sum ( time. time ) mstar = where the variable LogTemperature plays the role of U. Note time and LogTemperature are vectors so we use.* to do component wise multiplications!

11 The syntax LogTemperature.*time means to multiply each component of LogTemperature and time separately to create the new column of values LogTemperature(1) time (1) LogTemperature(N). time (N) The command sum applied to this column then creates the sum Uiti like we need. A similar thing is happening with the term sum(time.*time). The model is thus which we enter in MatLab as u(t) = e t % compute t h e model >> u2 = exp ( mstar time ) ; Then we plot both the experimental data and the model on the same plot, % p l o t t h e model and the measure d a t a on t h e same p l o t >> p l o t ( time, u2, r, time, Temperature, o ) ; >> x l a b e l ( Time I n Minutes ) ; >> y l a b e l ( Temperature in Fahrenheit ) ; >> t i t l e ( F i t o f Newton Law o f C o o l i n g Model To Data : Data = o ) ; Looks pretty good! We could also have added a legend like legend( Model, Data, Location, BestOutside ); but we didn t show that. You should do that though in your report so it is really easy to see what is going on.

12 Our final plot! Here is all the code without comments! >> Data = l o a d ( Newton. dat ) ; >> time = Data ( :, 1 ) ; >> Temperature = Data ( :, 2 ) ; >> p l o t ( time, Temperature, o ) ; >> x l a b e l ( Time i n Minutes ) ; >> y l a b e l ( Temperature in Fahrenheit ) ; >> t i t l e ( Newton Law Of C o o l i n g E x p e r i m e n t a l Data ) ; % for t h i s data, T 0 A = = 129 >> A = 7 6 ; >> LogTemperature = l o g ( ( Temperature A) / ( ) ) ; >> p l o t ( time, LogTemperature, o ) ; >> x l a b e l ( Time i n Minutes ) ; >> y l a b e l ( Transformed V a r i a b l e l n ( (T A) /( T 0 A) ) ) ; >> t i t l e ( Transformed Data V e r s u s Time ) ; >> mstar = sum ( LogTemperature. time ) /sum ( time. time ) ; >> u2 = exp ( mstar time ) ; >> p l o t ( time, u2, r, time, Temperature, o ) ; >> x l a b e l ( Time I n Minutes ) ; >> y l a b e l ( Temperature in Fahrenheit ) ; >> t i t l e ( F i t o f Newton Law o f C o o l i n g Model To Data : Data = o ) ;

13 So there you have it. You are ready to go off and collect some data and see if your liquid obeys Newton s cooling law. Have some fun with this and treat it like a real lab in biology. Document everything! I want you to learn how to type mathematics into word so look around and find the tools to do that. You ll have three plots total! Make sure you get them all. I enjoy interesting liquid combinations in this lab, so be inventive!

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

MatLab Code for Simple Convex Minimization

MatLab Code for Simple Convex Minimization MatLab Code for Simple Convex Minimization, 1-8, 2017 Draft Version April 25, 2018 MatLab Code for Simple Convex Minimization James K. Peterson 1 * Abstract We look at MatLab code to solve a simple L 1

More information

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab Riemann Sums James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 15, 2013 Outline Riemann Sums Riemann Sums In MatLab Abstract This

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 9, 2018 Outline 1 Extremal Values 2

More information

The Derivative of a Function

The Derivative of a Function The Derivative of a Function James K Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 1, 2017 Outline A Basic Evolutionary Model The Next Generation

More information

Predator - Prey Model Trajectories and the nonlinear conservation law

Predator - Prey Model Trajectories and the nonlinear conservation law Predator - Prey Model Trajectories and the nonlinear conservation law James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 2017 Outline Extremal Values The

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

Ideal Gas and Latent Heat

Ideal Gas and Latent Heat Ideal Gas and Latent Heat Objectives: To understand the significance of the ideal gas law. To determine the value of absolute zero on the Centigrade scale. To design an experiment to measure the latent

More information

More Protein Synthesis and a Model for Protein Transcription Error Rates

More Protein Synthesis and a Model for Protein Transcription Error Rates More Protein Synthesis and a Model for Protein James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 3, 2013 Outline 1 Signal Patterns Example

More information

Class President: A Network Approach to Popularity. Due July 18, 2014

Class President: A Network Approach to Popularity. Due July 18, 2014 Class President: A Network Approach to Popularity Due July 8, 24 Instructions. Due Fri, July 8 at :59 PM 2. Work in groups of up to 3 3. Type up the report, and submit as a pdf on D2L 4. Attach the code

More information

A population is modeled by the differential equation

A population is modeled by the differential equation Math 2, Winter 2016 Weekly Homework #8 Solutions 9.1.9. A population is modeled by the differential equation dt = 1.2 P 1 P ). 4200 a) For what values of P is the population increasing? P is increasing

More information

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline Riemann Sums Riemann Sums In MatLab Graphing

More information

MATH 408N PRACTICE MIDTERM 1

MATH 408N PRACTICE MIDTERM 1 02/0/202 Bormashenko MATH 408N PRACTICE MIDTERM Show your work for all the problems. Good luck! () (a) [5 pts] Solve for x if 2 x+ = 4 x Name: TA session: Writing everything as a power of 2, 2 x+ = (2

More information

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline 1 Riemann Sums 2 Riemann Sums In MatLab 3 Graphing

More information

One common method of shaping

One common method of shaping L A B 7 NEWTON S LAW OF COOLING Exponential Decay One common method of shaping plastic products is to pour hot plastic resin into a mold. The resin, which was poured at a temperature of 300 F, is then

More information

Sin, Cos and All That

Sin, Cos and All That Sin, Cos and All That James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 9, 2017 Outline 1 Sin, Cos and all that! 2 A New Power Rule 3

More information

Advanced Protein Models

Advanced Protein Models Advanced Protein Models James. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2014 Outline 1 Advanced Protein Models 2 The Bound Fraction

More information

Introduction to Special Relativity

Introduction to Special Relativity 1 Introduction to Special Relativity PHYS 1301 F99 Prof. T.E. Coan version: 20 Oct 98 Introduction This lab introduces you to special relativity and, hopefully, gives you some intuitive understanding of

More information

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

Lecture 5b: Starting Matlab

Lecture 5b: Starting Matlab Lecture 5b: Starting Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 7, 2013 Outline 1 Resources 2 Starting Matlab 3 Homework

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities)

Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities) Math Fundamentals for Statistics I (Math 52) Unit 7: Connections (Graphs, Equations and Inequalities) By Scott Fallstrom and Brent Pickett The How and Whys Guys This work is licensed under a Creative Commons

More information

Solving Linear Systems of ODEs with Matlab

Solving Linear Systems of ODEs with Matlab Solving Linear Systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 27, 2013 Outline Linear Systems Numerically

More information

Advanced Protein Models

Advanced Protein Models Advanced Protein Models James. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2014 Outline Advanced Protein Models The Bound Fraction Transcription

More information

An Introduction to Matlab

An Introduction to Matlab An Introduction to Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 25, 2013 Outline Starting Matlab Matlab Vectors and Functions

More information

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates.

Physics E-1ax, Fall 2014 Experiment 3. Experiment 3: Force. 2. Find your center of mass by balancing yourself on two force plates. Learning Goals Experiment 3: Force After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Find your center of mass by

More information

Sin, Cos and All That

Sin, Cos and All That Sin, Cos and All That James K Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 9, 2014 Outline Sin, Cos and all that! A New Power Rule Derivatives

More information

Using Recursion in Models and Decision Making: Recursion Using Rate of Change IV.C Student Activity Sheet 5: Newton s Law of Cooling

Using Recursion in Models and Decision Making: Recursion Using Rate of Change IV.C Student Activity Sheet 5: Newton s Law of Cooling Have you ever noticed that a container of cold liquid, such as a glass of iced tea, creates condensation on the outside of the container? Or that a cup of hot coffee does not always stay hot? What happened

More information

Solving systems of ODEs with Matlab

Solving systems of ODEs with Matlab Solving systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 20, 2013 Outline 1 Systems of ODEs 2 Setting Up

More information

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II)

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) PURPOSE: Observe a redox reaction. AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) Apply graphing techniques to analyze data. Practice computer skills to develop a data table. Determine the order of

More information

Integration by Parts Logarithms and More Riemann Sums!

Integration by Parts Logarithms and More Riemann Sums! Integration by Parts Logarithms and More Riemann Sums! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 16, 2013 Outline 1 IbyP with

More information

Mathematical Induction

Mathematical Induction Mathematical Induction James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 12, 2017 Outline Introduction to the Class Mathematical Induction

More information

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 24, 2013 Outline 1 First Order Approximation s Second Order Approximations 2 Approximation

More information

Exploring Graphs of Polynomial Functions

Exploring Graphs of Polynomial Functions Name Period Exploring Graphs of Polynomial Functions Instructions: You will be responsible for completing this packet by the end of the period. You will have to read instructions for this activity. Please

More information

Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 2018.

Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 2018. Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 208. Sir Isaac Newton idology.wordpress.com Gottfried Wilhelm Leibniz et.fh-koeln.de Welcome to BC Calculus. I hope that

More information

1 Measurement Uncertainties

1 Measurement Uncertainties 1 Measurement Uncertainties (Adapted stolen, really from work by Amin Jaziri) 1.1 Introduction No measurement can be perfectly certain. No measuring device is infinitely sensitive or infinitely precise.

More information

Algebra Exam. Solutions and Grading Guide

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

More information

EXPERIMENT 2 Reaction Time Objectives Theory

EXPERIMENT 2 Reaction Time Objectives Theory EXPERIMENT Reaction Time Objectives to make a series of measurements of your reaction time to make a histogram, or distribution curve, of your measured reaction times to calculate the "average" or mean

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline 1 Domains of Continuous Functions 2 The

More information

CHM201 General Chemistry and Laboratory I Laboratory 7 Thermochemistry and Hess s Law May 2, 2018

CHM201 General Chemistry and Laboratory I Laboratory 7 Thermochemistry and Hess s Law May 2, 2018 Purpose: CHM201 General Chemistry and Laboratory I Laboratory 7 Thermochemistry and Hess s Law May 2, 2018 In this laboratory, you will measure heat changes arising from chemical reactions. You will use

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

More On Exponential Functions, Inverse Functions and Derivative Consequences

More On Exponential Functions, Inverse Functions and Derivative Consequences More On Exponential Functions, Inverse Functions and Derivative Consequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 10, 2019

More information

1 Implicit Differentiation

1 Implicit Differentiation 1 Implicit Differentiation In logarithmic differentiation, we begin with an equation y = f(x) and then take the logarithm of both sides to get ln y = ln f(x). In this equation, y is not explicitly expressed

More information

MAPLE Worksheet Number 7 Derivatives in Calculus

MAPLE Worksheet Number 7 Derivatives in Calculus MAPLE Worksheet Number 7 Derivatives in Calculus The MAPLE command for computing the derivative of a function depends on which of the two ways we used to define the function, as a symbol or as an operation.

More information

Math Lab 10: Differential Equations and Direction Fields Complete before class Wed. Feb. 28; Due noon Thu. Mar. 1 in class

Math Lab 10: Differential Equations and Direction Fields Complete before class Wed. Feb. 28; Due noon Thu. Mar. 1 in class Matter & Motion Winter 2017 18 Name: Math Lab 10: Differential Equations and Direction Fields Complete before class Wed. Feb. 28; Due noon Thu. Mar. 1 in class Goals: 1. Gain exposure to terminology and

More information

Math 116 Second Midterm March 20, 2017

Math 116 Second Midterm March 20, 2017 EXAM SOLUTIONS Math 6 Second Midterm March 0, 07. Do not open this exam until you are told to do so.. Do not write your name anywhere on this exam. 3. This exam has pages including this cover. There are

More information

Slide 1. Slide 2. Slide 3. Integrated Rate Laws. What is a rate? A rate as a derivative. Finally a use for calculus! It s a delta/delta!

Slide 1. Slide 2. Slide 3. Integrated Rate Laws. What is a rate? A rate as a derivative. Finally a use for calculus! It s a delta/delta! Slide 1 Integrated Rate Laws Finally a use for calculus! Slide 2 It s a delta/delta! Rate of reaction = What is a rate? In other words, it is a differential. As you MAY recall from calculus, if you take

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 Geometric Series

More information

Lab 6 - Electron Charge-To-Mass Ratio

Lab 6 - Electron Charge-To-Mass Ratio Lab 6 Electron Charge-To-Mass Ratio L6-1 Name Date Partners Lab 6 - Electron Charge-To-Mass Ratio OBJECTIVES To understand how electric and magnetic fields impact an electron beam To experimentally determine

More information

2. (12 points) Find an equation for the line tangent to the graph of f(x) =

2. (12 points) Find an equation for the line tangent to the graph of f(x) = November 23, 2010 Name The total number of points available is 153 Throughout this test, show your work Throughout this test, you are expected to use calculus to solve problems Graphing calculator solutions

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Extreme Values and Positive/ Negative Definite Matrix Conditions

Extreme Values and Positive/ Negative Definite Matrix Conditions Extreme Values and Positive/ Negative Definite Matrix Conditions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 016 Outline 1

More information

Defining Exponential Functions and Exponential Derivatives and Integrals

Defining Exponential Functions and Exponential Derivatives and Integrals Defining Exponential Functions and Exponential Derivatives and Integrals James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 19, 2014

More information

Coulomb s Law Mini-Lab

Coulomb s Law Mini-Lab Setup Name Per Date Coulomb s Law Mini-Lab On a fresh piece of notebook paper, write the above title, name, date, and period. Be sure to put all headings, Roman numerals and regular numbers on your paper.

More information

Physics 6A Lab Experiment 6

Physics 6A Lab Experiment 6 Rewritten Biceps Lab Introduction This lab will be different from the others you ve done so far. First, we ll have some warmup exercises to familiarize yourself with some of the theory, as well as the

More information

Implicit Differentiation Applying Implicit Differentiation Applying Implicit Differentiation Page [1 of 5]

Implicit Differentiation Applying Implicit Differentiation Applying Implicit Differentiation Page [1 of 5] Page [1 of 5] The final frontier. This is it. This is our last chance to work together on doing some of these implicit differentiation questions. So, really this is the opportunity to really try these

More information

GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE

GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE LEARNING OBJECTIVES In this section, you will: Solve equations in one variable algebraically. Solve a rational equation. Find a linear equation. Given

More information

Lesson 3A: How Fast Are You Moving?

Lesson 3A: How Fast Are You Moving? Lesson 3A: How Fast Are You Moving? 3.1 Observe and represent Decide on a starting point. You will need 2 cars (or other moving objects). For each car, you will mark its position at each second. Make sure

More information

Derivatives and the Product Rule

Derivatives and the Product Rule Derivatives and the Product Rule James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline 1 Differentiability 2 Simple Derivatives

More information

Coulomb s Law. 1 Equipment. 2 Introduction

Coulomb s Law. 1 Equipment. 2 Introduction Coulomb s Law 1 Equipment conducting ball on mono filament 2 conducting balls on plastic rods housing with mirror and scale vinyl strips (white) wool pads (black) acetate strips (clear) cotton pads (white)

More information

Introduction to Determining Power Law Relationships

Introduction to Determining Power Law Relationships 1 Goal Introduction to Determining Power Law Relationships Content Discussion and Activities PHYS 104L The goal of this week s activities is to expand on a foundational understanding and comfort in modeling

More information

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way

Designing Information Devices and Systems I Spring 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way EECS 16A Designing Information Devices and Systems I Spring 018 Lecture Notes Note 1 1.1 Introduction to Linear Algebra the EECS Way In this note, we will teach the basics of linear algebra and relate

More information

The SIR Disease Model Trajectories and MatLab

The SIR Disease Model Trajectories and MatLab The SIR Disease Model Trajectories and MatLab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 17, 2013 Outline Reviewing the SIR

More information

PRACTICE AP SECTION II, PART A. Time 1 hour and 15 minutes Part A: 30 minutes, 2 problems Part B: 45 minutes, 3 problems

PRACTICE AP SECTION II, PART A. Time 1 hour and 15 minutes Part A: 30 minutes, 2 problems Part B: 45 minutes, 3 problems HW: Page 129 #1,3,4,5,6,8,10,12,19 DO NOW: Questions from HW? Page 111 #68 PRACTICE AP SECTION II, PART A Time 1 hour and 15 minutes Part A: 30 minutes, 2 problems Part B: 45 minutes, 3 problems PART A

More information

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION Name: Partner s Name: EXPERIMENT 500-2 MOTION PLOTS & FREE FALL ACCELERATION APPARATUS Track and cart, pole and crossbar, large ball, motion detector, LabPro interface. Software: Logger Pro 3.4 INTRODUCTION

More information

Modeling Data with Functions

Modeling Data with Functions Chapter 11 Modeling Data with Functions 11.1 Data Modeling Concepts 1 11.1.1 Conceptual Explanations: Modeling Data with Functions In school, you generally start with a function and work from there to

More information

3.4 Complex Zeros and the Fundamental Theorem of Algebra

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

More information

Predator - Prey Model Trajectories are periodic

Predator - Prey Model Trajectories are periodic Predator - Prey Model Trajectories are periodic James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 4, 2013 Outline 1 Showing The PP

More information

Lesson 3-2: Solving Linear Systems Algebraically

Lesson 3-2: Solving Linear Systems Algebraically Yesterday we took our first look at solving a linear system. We learned that a linear system is two or more linear equations taken at the same time. Their solution is the point that all the lines have

More information

22: Applications of Differential Calculus

22: Applications of Differential Calculus 22: Applications of Differential Calculus A: Time Rate of Change The most common use of calculus (the one that motivated our discussions of the previous chapter) are those that involve change in some quantity

More information

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO

Lab 5 - ELECTRON CHARGE-TO-MASS RATIO 81 Name Date Partners Lab 5 - ELECTRON CHARGE-TO-MASS RATIO OBJECTIVES To understand how electric and magnetic fields impact an electron beam To experimentally determine the electron charge-to-mass ratio

More information

Math 5a Reading Assignments for Sections

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

More information

7.1 Indefinite Integrals Calculus

7.1 Indefinite Integrals Calculus 7.1 Indefinite Integrals Calculus Learning Objectives A student will be able to: Find antiderivatives of functions. Represent antiderivatives. Interpret the constant of integration graphically. Solve differential

More information

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method Outline Finding Equilibrium Points Numerically Additional Nonlinear Systems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University June 13, 2017

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline Domains of Continuous Functions The Intermediate

More information

DON T PANIC! If you get stuck, take a deep breath and go on to the next question. Come back to the question you left if you have time at the end.

DON T PANIC! If you get stuck, take a deep breath and go on to the next question. Come back to the question you left if you have time at the end. Math 307, Midterm 2 Winter 2013 Name: Instructions. DON T PANIC! If you get stuck, take a deep breath and go on to the next question. Come back to the question you left if you have time at the end. There

More information

Physics 6A Lab Experiment 6

Physics 6A Lab Experiment 6 Biceps Muscle Model Physics 6A Lab Experiment 6 Introduction This lab will begin with some warm-up exercises to familiarize yourself with the theory, as well as the experimental setup. Then you ll move

More information

Calculus II. Calculus II tends to be a very difficult course for many students. There are many reasons for this.

Calculus II. Calculus II tends to be a very difficult course for many students. There are many reasons for this. Preface Here are my online notes for my Calculus II course that I teach here at Lamar University. Despite the fact that these are my class notes they should be accessible to anyone wanting to learn Calculus

More information

Math 116 Practice for Exam 2

Math 116 Practice for Exam 2 Math 116 Practice for Exam Generated October 8, 016 Name: SOLUTIONS Instructor: Section Number: 1. This exam has 6 questions. Note that the problems are not of equal difficulty, so you may want to skip

More information

Chapter 14: Finding the Equilibrium Solution and Exploring the Nature of the Equilibration Process

Chapter 14: Finding the Equilibrium Solution and Exploring the Nature of the Equilibration Process Chapter 14: Finding the Equilibrium Solution and Exploring the Nature of the Equilibration Process Taking Stock: In the last chapter, we learned that equilibrium problems have an interesting dimension

More information

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation?

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation? Did You Mean Association Or Correlation? AP Statistics Chapter 8 Be careful not to use the word correlation when you really mean association. Often times people will incorrectly use the word correlation

More information

Graphs. 1. Graph paper 2. Ruler

Graphs. 1. Graph paper 2. Ruler Graphs Objective The purpose of this activity is to learn and develop some of the necessary techniques to graphically analyze data and extract relevant relationships between independent and dependent phenomena,

More information

Appendix. Using Your Calculator. Squares, Square Roots, Reciprocals, and Logs. Addition, Subtraction, Multiplication, and Division

Appendix. Using Your Calculator. Squares, Square Roots, Reciprocals, and Logs. Addition, Subtraction, Multiplication, and Division 370770_app.qxd 1/9/03 7:2 PM Page A1 mac114 Mac 114:2nd shift:4_rst: Using Your Calculator In this section we will review how to use your calculator to perform common mathematical operations. This discussion

More information

Parametric Equations, Function Composition and the Chain Rule: A Worksheet

Parametric Equations, Function Composition and the Chain Rule: A Worksheet Parametric Equations, Function Composition and the Chain Rule: A Worksheet Prof.Rebecca Goldin Oct. 8, 003 1 Parametric Equations We have seen that the graph of a function f(x) of one variable consists

More information

Derivatives and Continuity

Derivatives and Continuity Derivatives and Continuity As with limits, derivatives do not exist unless the right and left-hand derivatives both exist and are equal. There are three main instances when this happens: One, if the curve

More information

A Simple Protein Synthesis Model

A Simple Protein Synthesis Model A Simple Protein Synthesis Model James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 3, 213 Outline A Simple Protein Synthesis Model

More information

Differential Equations

Differential Equations Chapter 7 Differential Equations 7. An Introduction to Differential Equations Motivating Questions In this section, we strive to understand the ideas generated by the following important questions: What

More information

Experiment 1: The Same or Not The Same?

Experiment 1: The Same or Not The Same? Experiment 1: The Same or Not The Same? Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to collect data and calculate statistics (mean and standard deviation). 2. Explain

More information

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class

Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Matter & Motion Winter 2017 18 Name: Math Lab 8: Electric Fields Integrating Continuous Charge Distributions II Due noon Thu. Feb. 1 in class Goals: 1. Learn to use Mathematica to plot functions and to

More information

3.1 Derivative Formulas for Powers and Polynomials

3.1 Derivative Formulas for Powers and Polynomials 3.1 Derivative Formulas for Powers and Polynomials First, recall that a derivative is a function. We worked very hard in 2.2 to interpret the derivative of a function visually. We made the link, in Ex.

More information

Regression I - the least squares line

Regression I - the least squares line Regression I - the least squares line The difference between correlation and regression. Correlation describes the relationship between two variables, where neither variable is independent or used to predict.

More information

CHAPTER 7: TECHNIQUES OF INTEGRATION

CHAPTER 7: TECHNIQUES OF INTEGRATION CHAPTER 7: TECHNIQUES OF INTEGRATION DAVID GLICKENSTEIN. Introduction This semester we will be looking deep into the recesses of calculus. Some of the main topics will be: Integration: we will learn how

More information

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way

Designing Information Devices and Systems I Fall 2018 Lecture Notes Note Introduction to Linear Algebra the EECS Way EECS 16A Designing Information Devices and Systems I Fall 018 Lecture Notes Note 1 1.1 Introduction to Linear Algebra the EECS Way In this note, we will teach the basics of linear algebra and relate it

More information

Business Statistics. Lecture 9: Simple Regression

Business Statistics. Lecture 9: Simple Regression Business Statistics Lecture 9: Simple Regression 1 On to Model Building! Up to now, class was about descriptive and inferential statistics Numerical and graphical summaries of data Confidence intervals

More information

Ideal Gas Law and Absolute Zero

Ideal Gas Law and Absolute Zero Experiment IX Ideal Gas Law and Absolute Zero I. Purpose The purpose of this lab is to examine the relationship between the pressure, volume and temperature of air in a closed chamber. To do this, you

More information

Motion in Two Dimensions: Centripetal Acceleration

Motion in Two Dimensions: Centripetal Acceleration Motion in Two Dimensions: Centripetal Acceleration Name: Group Members: Date: TA s Name: Apparatus: Rotating platform, long string, liquid accelerometer, meter stick, masking tape, stopwatch Objectives:

More information