ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS

Size: px
Start display at page:

Download "ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS"

Transcription

1 ERROR ANALYSIS ACTIVITY 1: STATISTICAL MEASUREMENT UNCERTAINTY AND ERROR BARS LEARNING GOALS At the end of this activity you will be able 1. to explain the merits of different ways to estimate the statistical uncertainty in common measurements like a DC voltage reading. 2. to explain which of the methods actually give an estimate of the standard deviation, which over/underestimate the uncertainty, and which are just a rough estimate of the uncertainty. 3. compute the uncertainty in a derived quantity using the uncertainties in the measured quantities (error propagation). 4. add error bars to a plot as a visual representation of uncertainty. INTRODUCTION TO MEASUREMENT UNCERTAINTY When attempting to establish the validity of our experimental results it is always important to quantify the uncertainty. Measurement uncertainty wasn t invented to make lab classes tedious, rather it is a core part of any experimental work that gives us a way to quantify how much we trust our results. A simple and rigorous way to make a measurement and estimate its uncertainty is to take N measurements {y 1, y 2,, y N } and estimate the value by the mean: N y = 1 N y i The estimated uncertainty (standard deviation, σ y, or variance σ y 2 ) of any one measurement is given by i=1 σ 2 y = 1 N N 1 (y i y ) 2 While the uncertainty in the mean value σ y is smaller and is given by i=1 σ y 2 = σ y 2 The remainder of this activity will discuss a variety of practical considerations about using uncertainty in the lab. N

2 ESTIMATING THE MEAN AND UNCERTAINTY The next four questions cover a basic measurement that was essential in the Gaussian Laser Beams lab. In a group of 2 or 3, find a lab bench with a laser and turn it on immediately. It might take 5 minutes for the laser to warm up. Use the photodetector to measure the DC optical power. Question 1 Measurement and uncertainty using the multimeter Note: It may be possible to answer questions 1 and 2 at the same time if you use a BNC T to send the voltage to the multimeter and oscilloscope at the same time. Make a table of estimated DC voltages from the laser and the corresponding uncertainties using the following methods a. Eyeball the mean. Eyeball the amplitude of the random fluctuations. b. If your multimeter has the capability, set the multimeter on max/min mode to record the V max and V min fluctuations over a certain time period. You can estimate the mean by (V max + V min )/2 and the uncertainty by (V max V min )/2. c. Record the instantaneous voltage reading on the multimeter N times and calculate the estimated uncertainty from the standard deviation. d. What is the resolution intrinsic to the FLUKE multimeter according to the spec sheet on the course website (under Hints ). (No measurement required) How does this compare to the observed uncertainty in parts a-c? Question 2 Measurement and uncertainty using the oscilloscope Continue the previous table of estimated DC voltages from the laser and the corresponding uncertainties using the following methods. For each method comment on if and how it depends on the setting for the time scale or voltage scale on the oscilloscope. a. Eyeball the mean. Eyeball the amplitude of the random fluctuations (no cursors or measurement tools). b. Use the measurement function on the scope to record the mean and RMS fluctuations. c. Use the cursors to measure the mean and size of fluctuations. d. Record the voltage from the oscilloscope N times and calculate the estimated uncertainty from the standard deviation. e. A comparison with the data sheet is difficult because so many factors affect the observed noise in the oscilloscope. You can find some information in the RIGOL oscilloscope datasheet on the course website (under Hints ). There is information about the resolution and the DC measurement accuracy. Question 3 Summary of Questions 1 and 2 (make sure to support your answers for each question): a. Did any methods overestimate the uncertainty? b. Did any methods underestimate the uncertainty? c. How reliable was eyeballing? d. Did the time scale or voltage scale affect any of the oscilloscope measurements? If yes, how? Does this tell you anything about how to use the scope? e. Suppose the light into the photodetector was not constant during the measurements (due to variations of the laser, room lights, etc.). In which estimates of the uncertainty will this be included? f. Which method(s) should give a true estimate for the uncertainty?

3 Question 4 Measurement using the NI USB-6009 DAQ a. Is the USB data acquisition device more like the multimeter, or more like the oscilloscope? (Just think back to your experience using the DAQ last time. No data taking for this part.) b. How would you go about estimating the uncertainty when using your DAQ? WRITING NUMBERS AND THEIR UNCERTAINTY The convention used in this course is that we 1) only display one significant digit of the uncertainty (two are allowed if the first significant digit is a 1) 2) display the measurement to the same digit as the uncertainty. The numbers 154±3, ±0.04, and 245.1±1.4 follow the convention. However, numbers copied from the computer are often displayed as machine precision with no regard for significant digits. Question 5 Mathematica generated the following fit parameters and corresponding uncertainties: a = ± b = ± How should the two Mathematica fit parameters above be rewritten? ERROR PROPAGATION: FROM MEASURED TO DERIVED QUANTITIES The quantity of interest in an experiment is often derived from other measured quantities. An example is estimating the resistance of a circuit element from measurements of current and voltage, using Ohm s law (R = V/I) to convert our measured quantities (voltage and current) into a derived quantity (resistance). Error propagation comes in when we want to estimate the uncertainty in the derived quantity based on the uncertainties in the measured quantities. Keeping things general, suppose we want to derive a quantity z from a set of measured quantities a, b, c, etc. The mathematical function which gives us z is z = z(a, b, c, ). In general, any fluctuation in the measured quantities a, b, c, will cause a fluctuation in z according to δz = ( z ) δa + ( z) δb + ( z a b c ) δc + (1) This equation comes straight from basic calculus. It s like the first term in a Taylor series. It s the linear approximation of z(a, b, c, ) near (a 0, b 0, c 0, ). However, we don t know the exact magnitude or sign of the fluctuations, rather we just can estimate the spread in δa, δb, δc, which we often use the standard deviations σ a, σ b, σ c. In this case, the propagated uncertainty in z is: σ z 2 = ( z a ) 2 σ a 2 + ( z b ) 2 σ b 2 + ( z c ) 2 σ c 2 + (2)

4 There are standard equations provided in courses like the introductory physics lab for the error in the sum, difference, product, quotient. These are all easily derived from the general formula. Question 6 Question 7 Question 8 Review things from long ago Apply the general error propagation formula in Eq. 2 to calculate the derived uncertainty σ z 2 in terms of the measurement uncertainties σ a and σ b when a. z = a + b b. z = a b c. z = ab In the case where a voltage V and current I are measured to derive the resistance R, use Eq. 2 to calculate the uncertainty in R in terms of the uncertainties σ I and σ V. A diffraction grating can be used to measure the wavelength of light using 2a sin θ = nλ where a is distance between the grating spacing, and θ is the angle of incidence and reflection, and n is the order of the diffraction peak. Note that n is an integer. If we derive λ from measurements of θ and a, use Eq. 2 to calculate the uncertainty in λ in terms of the uncertainty in a and θ: σ a and σ θ. ERROR PROPAGATION IN MATHEMATICA So far we have explored the use of Mathematica for basic data analysis and plotting, but Mathematica also has powerful symbolic math capabilities. One example where this can be helpful is for complicated error propagation calculations. The following bit of Mathematica code can calculate the propagated variance in the derived quantity symbolically. The code is available and explained in a Mathematica notebook Uncertainty_Propagation.nb on the course website. (There is a link on the Lecture Activities page.) Question 9 In the Gaussian Laser Beams lab, you modeled the Gaussian beam s width w(z) as: w(z) = w ( z z 2 0 πw 2 0 /λ ) For the output beam of one of the lasers, a fit of beam width versus position gave the following fit parameters: z 0 = 0.03 ± 0.04 m The wavelength is given by λ = ± 0.1 nm. w 0 = (1.90 ± 0.09) 10 6 m Use Mathematica to estimate the uncertainty in the derived width w(z) when z is a distance of ± m from the waist position. You will probably find it helpful to copy and modify the code given in the example Mathematica notebook, Uncertainty_Propagation.nb on the Lecture Activities part of the course website.

5 ERROR BARS The error bar is a graphical way to display the uncertainty in a measurement. In order to put error bars on a plot you must first estimate the error for each point. Anytime you include error bars in a plot you should explain how the uncertainty in each point was estimated (e.g., you eyeballed the uncertainty, or you sampled it N times and took the standard deviation of the mean, etc.) ERROR BARS IN MATHEMATICA Creating plots with error bars in Mathematica requires the use of the ErrorBarPlots package. Suppose you had estimated the uncertainty at every point in a width measurement of your Gaussian laser beam to be 0.04 V. This error was chosen to demonstrate the mechanics of making a plot with error bars, but the uncertainty in the actual data was probably smaller than this. Also, there is no reason to believe it was the same at low and high voltages. The data and uncertainty form a three column data set. Micrometer Position (inches) Photodetector Voltage (V) Estimated uncertainty (V) The Mathematica code for plotting with error bars will look something like this: Needs["ErrorBarPlots`"]; d = Import[ Gaussian_beam_data_with_errors.txt, TSV ]; dnew = Table[{ {d[[i,1]], d[[i,2]]}, ErrorBar[d[[i,3]]] },{i,2,length[d]}]; ErrorListPlot[dNew, FrameLabel->{"Position, x (inches)", "Photodetector output (V)"}]

6 The first line loads the ErrorBarPlots package. The second line is important because the error bars have to be input in a certain format. The following table gives a comparison of plotting data with and without error bars in Mathematica. Here we are only adding y errors, and assume the positive and negative errors are the same. No error bars d = {{x1,y1}, {x2, y2},...} (built in function) ListPlot[d] With error bars d = { {{x1, y1}, ErrorBar[e1]}, {{x2, y2}, ErrorBar[e2]},...} Needs["ErrorBarPlots`"]; ErrorListPlot[d] EXAMPLE: GAUSSIAN LASER BEAM WIDTH MEASUREMENT Question 10 Import the dataset gaussian_data_with_errors.txt with the uncertainties from the website (in the Lecture Activities tab). Use the ErrorBarPlots package to reproduce a plot like this. If you need advice on setting plot options, look at the final section of the Mathematica Activity 2. REFERENCES 1. Taylor, J. R. (1997). An Introduction to Error Analysis: The Study of Uncertainties in Physical Measurements (p. 327). University Science Books. This is the standard undergraduate text for measurement and uncertainty. 2. Bevington, P. R., & Robinson, K. D. (2003). Data Reduction and Error Analysis for the Physical Sciences Third Edition (3rd ed.). New York: McGraw-Hill. Great for advanced undergrad error analysis. Professional physicists use it too.

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe)

Physics 3150, Laboratory X January 22, 2014 Ann Onymous (lab partner: John Doe) A. Procedure and Results Physics 150, Laboratory X January, 01 Ann Onymous (lab partner: John Doe) A.1. Voltage and current for a resistor bridge We constructed a resistor bridge circuit as indicated in

More information

WEEK 1 INTRO: MEASURING A GAUSSIAN BEAM. CALIBRATING YOUR PHOTODETECTOR

WEEK 1 INTRO: MEASURING A GAUSSIAN BEAM. CALIBRATING YOUR PHOTODETECTOR GAUSSIAN LASER BEAMS WEEK 1 INTRO: MEASURING A GAUSSIAN BEAM. CALIBRATING YOUR PHOTODETECTOR GOALS In this lab, you will use a lot of equipment and try out some techniques that are generally useful in

More information

POLARIZATION OF LIGHT

POLARIZATION OF LIGHT POLARIZATION OF LIGHT OVERALL GOALS The Polarization of Light lab strongly emphasizes connecting mathematical formalism with measurable results. It is not your job to understand every aspect of the theory,

More information

Capacitance Measurement

Capacitance Measurement Overview The goal of this two-week laboratory is to develop a procedure to accurately measure a capacitance. In the first lab session, you will explore methods to measure capacitance, and their uncertainties.

More information

Error analysis for IPhO contestants

Error analysis for IPhO contestants Error analysis for IPhO contestants Heikki Mäntysaari University of Jyväskylä, Department of Physics Abstract In the experimental part of IPhO (and generally when performing measurements) you have to estimate

More information

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement Experiment 0 ~ Introduction to Statistics and Excel Tutorial Many of you already went through the introduction to laboratory practice and excel tutorial in Physics 1011. For that reason, we aren t going

More information

Experiment 4 Free Fall

Experiment 4 Free Fall PHY9 Experiment 4: Free Fall 8/0/007 Page Experiment 4 Free Fall Suggested Reading for this Lab Bauer&Westfall Ch (as needed) Taylor, Section.6, and standard deviation rule ( t < ) rule in the uncertainty

More information

Experiment 2. F r e e F a l l

Experiment 2. F r e e F a l l Suggested Reading for this Lab Experiment F r e e F a l l Taylor, Section.6, and standard deviation rule in Taylor handout. Review Chapters 3 & 4, Read Sections 8.1-8.6. You will also need some procedures

More information

Data Analysis, Standard Error, and Confidence Limits E80 Spring 2015 Notes

Data Analysis, Standard Error, and Confidence Limits E80 Spring 2015 Notes Data Analysis Standard Error and Confidence Limits E80 Spring 05 otes We Believe in the Truth We frequently assume (believe) when making measurements of something (like the mass of a rocket motor) that

More information

Exercise 4 Modeling transient currents and voltages

Exercise 4 Modeling transient currents and voltages Exercise 4 Modeling transient currents and voltages Basic A circuit elements In a D circuit, the electro-motive forces push the electrons along the circuit and resistors remove that energy by conversion

More information

PHYS Uncertainty Analysis

PHYS Uncertainty Analysis PHYS 213 1 Uncertainty Analysis Types of uncertainty We will consider two types of uncertainty that affect our measured or calculated values: random uncertainty and systematic uncertainty. Random uncertainties,

More information

Data Analysis, Standard Error, and Confidence Limits E80 Spring 2012 Notes

Data Analysis, Standard Error, and Confidence Limits E80 Spring 2012 Notes Data Analysis Standard Error and Confidence Limits E80 Spring 0 otes We Believe in the Truth We frequently assume (believe) when making measurements of something (like the mass of a rocket motor) that

More information

Errors: What they are, and how to deal with them

Errors: What they are, and how to deal with them Errors: What they are, and how to deal with them A series of three lectures plus exercises, by Alan Usher Room 111, a.usher@ex.ac.uk Synopsis 1) Introduction ) Rules for quoting errors 3) Combining errors

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

The Treatment of Numerical Experimental Results

The Treatment of Numerical Experimental Results Memorial University of Newfoundl Department of Physics Physical Oceanography The Treatment of Numerical Experimental Results The purpose of these notes is to introduce you to some techniques of error analysis

More information

Prepare for this experiment!

Prepare for this experiment! Notes on Experiment #8 Theorems of Linear Networks Prepare for this experiment! If you prepare, you can finish in 90 minutes. If you do not prepare, you will not finish even half of this experiment. So,

More information

APPENDIX A: DEALING WITH UNCERTAINTY

APPENDIX A: DEALING WITH UNCERTAINTY APPENDIX A: DEALING WITH UNCERTAINTY 1. OVERVIEW An uncertainty is always a positive number δx > 0. If the uncertainty of x is 5%, then δx =.05x. If the uncertainty in x is δx, then the fractional uncertainty

More information

Physics 201: Experiment #1 Franck-Hertz Experiment

Physics 201: Experiment #1 Franck-Hertz Experiment Physics 201: Experiment #1 Franck-Hertz Experiment Carl Adams Winter 2004 Purpose To demonstrate that electrons colliding with gaseous mercury atoms lose energy in discrete amounts. Nobel Prize Winner

More information

Take the measurement of a person's height as an example. Assuming that her height has been determined to be 5' 8", how accurate is our result?

Take the measurement of a person's height as an example. Assuming that her height has been determined to be 5' 8, how accurate is our result? Error Analysis Introduction The knowledge we have of the physical world is obtained by doing experiments and making measurements. It is important to understand how to express such data and how to analyze

More information

Junior Laboratory. PHYC 307L, Spring Webpage:

Junior Laboratory. PHYC 307L, Spring Webpage: Lectures: Mondays, 13:00-13:50 am, P&A room 184 Lab Sessions: Room 133 Junior Laboratory PHYC 307L, Spring 2016 Webpage: http://physics.unm.edu/courses/becerra/phys307lsp16/ Monday 14:00-16:50 (Group 1)

More information

farads or 10 µf. The letter indicates the part tolerance (how close should the actual value be to the marking).

farads or 10 µf. The letter indicates the part tolerance (how close should the actual value be to the marking). p1 EE1050/60 Capacitors Lab University of Utah Electrical Engineering Department EE1050/1060 Capacitors A. Stolp, 10/4/99 rev 3/17/01 Objectives 1.) Observe charging and discharging of a capacitor. 2.)

More information

Assignment 1 Physics/ECE 176

Assignment 1 Physics/ECE 176 Assignment 1 Physics/ECE 176 Made available: Thursday, January 13, 211 Due: Thursday, January 2, 211, by the beginning of class. Overview Before beginning this assignment, please read carefully the part

More information

Experiment 2 Random Error and Basic Statistics

Experiment 2 Random Error and Basic Statistics PHY9 Experiment 2: Random Error and Basic Statistics 8/5/2006 Page Experiment 2 Random Error and Basic Statistics Homework 2: Turn in at start of experiment. Readings: Taylor chapter 4: introduction, sections

More information

Prepare for this experiment!

Prepare for this experiment! Notes on Experiment #8 Theorems of Linear Networks Prepare for this experiment! If you prepare, you can finish in 90 minutes. If you do not prepare, you will not finish even half of this experiment. So,

More information

Experiment 2 Random Error and Basic Statistics

Experiment 2 Random Error and Basic Statistics PHY191 Experiment 2: Random Error and Basic Statistics 7/12/2011 Page 1 Experiment 2 Random Error and Basic Statistics Homework 2: turn in the second week of the experiment. This is a difficult homework

More information

The RC Circuit INTRODUCTION. Part 1: Capacitor Discharging Through a Resistor. Part 2: The Series RC Circuit and the Oscilloscope

The RC Circuit INTRODUCTION. Part 1: Capacitor Discharging Through a Resistor. Part 2: The Series RC Circuit and the Oscilloscope The RC Circuit INTRODUCTION The goal in this lab is to observe the time-varying voltages in several simple circuits involving a capacitor and resistor. In the first part, you will use very simple tools

More information

Introduction to the General Physics Laboratories

Introduction to the General Physics Laboratories Introduction to the General Physics Laboratories September 5, 2007 Course Goals The goal of the IIT General Physics laboratories is for you to learn to be experimental scientists. For this reason, you

More information

Now let s look at some devices that don t have a constant resistance.

Now let s look at some devices that don t have a constant resistance. Lab #3 Now let s look at some devices that don t have a constant resistance. This is the same circuit you built last time. But now, in place of the resistor first build the circuit with a light bulb, then

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

Measurements and Data Analysis

Measurements and Data Analysis Measurements and Data Analysis 1 Introduction The central point in experimental physical science is the measurement of physical quantities. Experience has shown that all measurements, no matter how carefully

More information

Administrivia. Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1.

Administrivia. Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1. Administrivia Lab notebooks from Lab 0 are due at 2 PM in Hebb 42 at the start of Lab 1. You can trade lab partners for the next lab, by mutual agreement of all the parties concerned. No unilateral abandonments,

More information

PHYSICS 122/124 Lab EXPERIMENT NO. 9 ATOMIC SPECTRA

PHYSICS 122/124 Lab EXPERIMENT NO. 9 ATOMIC SPECTRA PHYSICS 1/14 Lab EXPERIMENT NO. 9 ATOMIC SPECTRA The purpose of this laboratory is to study energy levels of the Hydrogen atom by observing the spectrum of emitted light when Hydrogen atoms make transitions

More information

ECEN 4606, UNDERGRADUATE OPTICS LAB

ECEN 4606, UNDERGRADUATE OPTICS LAB ECEN 4606, UNDERGRADUATE OPTICS LAB Lab 6: Polarization Original: Professor McLeod SUMMARY: In this lab you will become familiar with the basics of polarization and learn to use common optical elements

More information

Equipotential and Electric Field Mapping

Equipotential and Electric Field Mapping Experiment 2 Equipotential and Electric Field Mapping 2.1 Objectives 1. Determine the lines of constant electric potential for two simple configurations of oppositely charged conductors. 2. Determine the

More information

Math 231E, Lecture 25. Integral Test and Estimating Sums

Math 231E, Lecture 25. Integral Test and Estimating Sums Math 23E, Lecture 25. Integral Test and Estimating Sums Integral Test The definition of determining whether the sum n= a n converges is:. Compute the partial sums s n = a k, k= 2. Check that s n is a convergent

More information

The Stefan-Boltzmann Law

The Stefan-Boltzmann Law The Stefan-Boltzmann Law Department of Physics Ryerson University 1 Introduction Thermal radiation is typically considered the starting point in many texts for discussions of old quantum theory and the

More information

6. The default plot created by Excel meets all of the requirements for a formal report plot in ME 360.

6. The default plot created by Excel meets all of the requirements for a formal report plot in ME 360. ME 360 Fall 2008 Semester Test #1 9/24/08 Closed book, closed notes portion of test. When you turn in this part of the test you will get the second part which allows a page of handwritten formulas. There

More information

BRIDGE CIRCUITS EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 10/2/13

BRIDGE CIRCUITS EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 10/2/13 EXPERIMENT 5: DC AND AC BRIDGE CIRCUITS 0//3 This experiment demonstrates the use of the Wheatstone Bridge for precise resistance measurements and the use of error propagation to determine the uncertainty

More information

Diffraction of Electrons

Diffraction of Electrons Diffraction of Electrons Object: Apparatus: Verify that electrons are waves; i.e., that they diffract just like light waves. This lab is then used to measure their wavelength or, alternatively, measure

More information

PHYSICS 2150 LABORATORY LECTURE 1

PHYSICS 2150 LABORATORY LECTURE 1 PHYSICS 2150 LABORATORY LECTURE 1 1865 Maxwell equations HISTORY theory expt in 2150 expt not in 2150 SCOPE OF THIS COURSE Experimental introduction to modern physics! Modern in this case means roughly

More information

Falling Bodies (last

Falling Bodies (last Dr. Larry Bortner Purpose Falling Bodies (last edited ) To investigate the motion of a body under constant acceleration, specifically the motion of a mass falling freely to Earth. To verify the parabolic

More information

Dealing with uncertainty

Dealing with uncertainty Appendix A Dealing with uncertainty A.1 Overview An uncertainty is always a positive number δx > 0. If you measure x with a device that has a precision of u, thenδx is at least as large as u. Fractional

More information

Lab 0: Modeling and Error. Goals 1. Review the lab procedures, safety issues and grading policies. 2. Understanding Modeling and Errors

Lab 0: Modeling and Error. Goals 1. Review the lab procedures, safety issues and grading policies. 2. Understanding Modeling and Errors UNIVERSITY of PENNSYLVANIA DEPARTMENT of ELECTRICAL and SYSTEMS ENGINEERING Electrical Circuits and Systems II Laboratory ESE6 Introduction to the Lab Lab : Modeling and Error Goals 1. Review the lab procedures,

More information

Lab 1: Simple Pendulum 1. The Pendulum. Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301

Lab 1: Simple Pendulum 1. The Pendulum. Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301 Lab 1: Simple Pendulum 1 The Pendulum Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301 Physics 15c; REV 0 1 January 31, 2007 1 Introduction Most oscillating systems behave like

More information

Understanding Errors and Uncertainties in the Physics Laboratory

Understanding Errors and Uncertainties in the Physics Laboratory Chapter 2 Understanding Errors and Uncertainties in the Physics Laboratory 2.1 Introduction We begin with a review of general properties of measurements and how measurements affect what we, as scientists,

More information

Uncertainty, Measurement, and Models. Lecture 2 Physics 2CL Summer Session 2011

Uncertainty, Measurement, and Models. Lecture 2 Physics 2CL Summer Session 2011 Uncertainty, Measurement, and Models Lecture 2 Physics 2CL Summer Session 2011 Outline What is uncertainty (error) analysis and what can it do for you Issues with measurement and observation What does

More information

NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT. Physics 211 E&M and Quantum Physics Spring Lab #4: Electronic Circuits I

NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT. Physics 211 E&M and Quantum Physics Spring Lab #4: Electronic Circuits I NORTHERN ILLINOIS UNIVERSITY PHYSICS DEPARTMENT Physics 211 E&M and Quantum Physics Spring 2018 Lab #4: Electronic Circuits I Lab Writeup Due: Mon/Wed/Thu/Fri, Feb. 12/14/15/16, 2018 Background The concepts

More information

Equipotential and Electric Field Mapping

Equipotential and Electric Field Mapping Experiment 1 Equipotential and Electric Field Mapping 1.1 Objectives 1. Determine the lines of constant electric potential for two simple configurations of oppositely charged conductors. 2. Determine the

More information

Dr. Julie J. Nazareth

Dr. Julie J. Nazareth Name: Dr. Julie J. Nazareth Lab Partner(s): Physics: 133L Date lab performed: Section: Capacitors Parts A & B: Measurement of capacitance single, series, and parallel combinations Table 1: Voltage and

More information

Treatment of Error in Experimental Measurements

Treatment of Error in Experimental Measurements in Experimental Measurements All measurements contain error. An experiment is truly incomplete without an evaluation of the amount of error in the results. In this course, you will learn to use some common

More information

Lecture 19: Introduction to Kinetics First a CH 302 Kinetics Study Guide (Memorize these first three pages, they are all the background you need)

Lecture 19: Introduction to Kinetics First a CH 302 Kinetics Study Guide (Memorize these first three pages, they are all the background you need) Lecture 19: Introduction to Kinetics First a CH 302 Kinetics Study Guide (Memorize these first three pages, they are all the background you need) Reaction Rate: The most important issue in kinetics is

More information

Dealing with uncertainty

Dealing with uncertainty Appendix A Dealing with uncertainty A.1 Overview An uncertainty is always a positive number δx > 0. If you measure x with a device that has a precision of u, thenδx is at least as large as u. Fractional

More information

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK

STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK STATE UNIVERSITY OF NEW YORK COLLEGE OF TECHNOLOGY CANTON, NEW YORK COURSE OUTLINE ELEC 261 ELECTRICITY Prepared By: Dr. Rashid Aidun CANINO SCHOOL OF ENGINEERING TECHNOLOGY ENGINEERING SCIENCE & ELECTRICAL

More information

Uncertainty in Physical Measurements: Module 5 Data with Two Variables

Uncertainty in Physical Measurements: Module 5 Data with Two Variables : Often data have two variables, such as the magnitude of the force F exerted on an object and the object s acceleration a. In this Module we will examine some ways to determine how one of the variables,

More information

Temperature measurement

Temperature measurement Luleå University of Technology Johan Carlson Last revision: July 22, 2009 Measurement Technology and Uncertainty Analysis - E7021E Lab 3 Temperature measurement Introduction In this lab you are given a

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

Simple circuits - 3 hr

Simple circuits - 3 hr Simple circuits - 3 hr Resistances in circuits Analogy of water flow and electric current An electrical circuit consists of a closed loop with a number of different elements through which electric current

More information

1 Random and systematic errors

1 Random and systematic errors 1 ESTIMATION OF RELIABILITY OF RESULTS Such a thing as an exact measurement has never been made. Every value read from the scale of an instrument has a possible error; the best that can be done is to say

More information

Understanding Errors and Uncertainties in the Physics Laboratory

Understanding Errors and Uncertainties in the Physics Laboratory Chapter 2 Understanding Errors and Uncertainties in the Physics Laboratory 2.1 Introduction We begin with a review of general properties of measurements and how measurements affect what we, as scientists,

More information

Check List - Data Analysis

Check List - Data Analysis Chem 360 Check List - Data Analysis Reference: Taylor, J. R. An Introduction to Error Analysis; University Science Books, 2nd Ed., (Oxford University Press): Mill Valley, CA,1997 Listed below are data

More information

Laboratory I: Impedance

Laboratory I: Impedance Physics 33, Fall 2008 ab I - Exercises aboratory I: Impedance eading: ab handout Simpson hapter if necessary) & hapter 2 particularly 2.9-2.3) ab Exercises. Part I What is the input impedance of the oscilloscope

More information

1 SIMPLE PENDULUM 1 L (1.1)

1 SIMPLE PENDULUM 1 L (1.1) 1 SIMPLE PENDULUM 1 October 15, 2016 1 Simple Pendulum IMPORTANT: You must work through the derivation required for this assignment before you turn up to the laboratory. You are also expected to know what

More information

About the different types of variables, How to identify them when doing your practical work.

About the different types of variables, How to identify them when doing your practical work. Learning Objectives You should learn : About the different types of variables, How to identify them when doing your practical work. Variables Variables are things that vary and change Variables In any

More information

Veerapong Kanchanawongkul*

Veerapong Kanchanawongkul* Using LabVIEW to Development of Temperature Measurement System with Thermocouple and Thermistor AIS 08 Veerapong Kanchanawongkul* Department of Mechanical Engineering, Faculty of Engineering, South-East

More information

What to Add Next time you update?

What to Add Next time you update? What to Add Next time you update? Work sheet with 3 and 4 resistors Create worksheet of tables Add Hypothesis and Questions Add Lab and Lecture Objectives Add equipment needed Add science standards Review

More information

Experiment #6. Thevenin Equivalent Circuits and Power Transfer

Experiment #6. Thevenin Equivalent Circuits and Power Transfer Experiment #6 Thevenin Equivalent Circuits and Power Transfer Objective: In this lab you will confirm the equivalence between a complicated resistor circuit and its Thevenin equivalent. You will also learn

More information

Several Things to Talk about

Several Things to Talk about A slide from a previous class note Several Things to Talk about Homework Previous student comments: I prefer HW assignments to be mandatory. That way I'm forced to do it and learn. I was good about doing

More information

Coupled Electrical Oscillators Physics Advanced Physics Lab - Summer 2018 Don Heiman, Northeastern University, 5/24/2018

Coupled Electrical Oscillators Physics Advanced Physics Lab - Summer 2018 Don Heiman, Northeastern University, 5/24/2018 Coupled Electrical Oscillators Physics 3600 - Advanced Physics Lab - Summer 08 Don Heiman, Northeastern University, 5/4/08 I. INTRODUCTION The objectives of this experiment are: () explore the properties

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

Experiment 1 Simple Measurements and Error Estimation

Experiment 1 Simple Measurements and Error Estimation Experiment 1 Simple Measurements and Error Estimation Reading and problems (1 point for each problem): Read Taylor sections 3.6-3.10 Do problems 3.18, 3.22, 3.23, 3.28 Experiment 1 Goals 1. To perform

More information

PHYSICS 15a, Fall 2006 SPEED OF SOUND LAB Due: Tuesday, November 14

PHYSICS 15a, Fall 2006 SPEED OF SOUND LAB Due: Tuesday, November 14 PHYSICS 15a, Fall 2006 SPEED OF SOUND LAB Due: Tuesday, November 14 GENERAL INFO The goal of this lab is to determine the speed of sound in air, by making measurements and taking into consideration the

More information

Experiment 9. Emission Spectra. measure the emission spectrum of a source of light using the digital spectrometer.

Experiment 9. Emission Spectra. measure the emission spectrum of a source of light using the digital spectrometer. Experiment 9 Emission Spectra 9.1 Objectives By the end of this experiment, you will be able to: measure the emission spectrum of a source of light using the digital spectrometer. find the wavelength of

More information

Understanding Semiconductor Lasers

Understanding Semiconductor Lasers 27 April 2010 age 1 of 8 Experiment II Understanding Semiconductor Lasers The purpose of this experiment is to explore the basic characteristics of semiconductor lasers. We will measure and calculate the

More information

Uncertainty and Bias UIUC, 403 Advanced Physics Laboratory, Fall 2014

Uncertainty and Bias UIUC, 403 Advanced Physics Laboratory, Fall 2014 Uncertainty and Bias UIUC, 403 Advanced Physics Laboratory, Fall 2014 Liang Yang* There are three kinds of lies: lies, damned lies and statistics. Benjamin Disraeli If your experiment needs statistics,

More information

6: Polynomials and Polynomial Functions

6: Polynomials and Polynomial Functions 6: Polynomials and Polynomial Functions 6-1: Polynomial Functions Okay you know what a variable is A term is a product of constants and powers of variables (for example: x ; 5xy ) For now, let's restrict

More information

Electron Diffraction

Electron Diffraction Electron iffraction o moving electrons display wave nature? To answer this question you will direct a beam of electrons through a thin layer of carbon and analyze the resulting pattern. Theory Louis de

More information

Poisson distribution and χ 2 (Chap 11-12)

Poisson distribution and χ 2 (Chap 11-12) Poisson distribution and χ 2 (Chap 11-12) Announcements: Last lecture today! Labs will continue. Homework assignment will be posted tomorrow or Thursday (I will send email) and is due Thursday, February

More information

Error Analysis. V. Lorenz L. Yang, M. Grosse Perdekamp, D. Hertzog, R. Clegg PHYS403 Spring 2016

Error Analysis. V. Lorenz L. Yang, M. Grosse Perdekamp, D. Hertzog, R. Clegg PHYS403 Spring 2016 Error Analysis V. Lorenz L. Yang, M. Grosse Perdekamp, D. Hertzog, R. Clegg PHYS403 Spring 2016 Reporting measurement results Always include uncertainty estimates in your results Have the correct number

More information

Module 1, Add on math lesson Simultaneous Equations. Teacher. 45 minutes

Module 1, Add on math lesson Simultaneous Equations. Teacher. 45 minutes Module 1, Add on math lesson Simultaneous Equations 45 minutes eacher Purpose of this lesson his lesson is designed to be incorporated into Module 1, core lesson 4, in which students learn about potential

More information

Calculus at Rutgers. Course descriptions

Calculus at Rutgers. Course descriptions Calculus at Rutgers This edition of Jon Rogawski s text, Calculus Early Transcendentals, is intended for students to use in the three-semester calculus sequence Math 151/152/251 beginning with Math 151

More information

DRAFT COPY. Leicester, U.K. Experimental Competition

DRAFT COPY. Leicester, U.K. Experimental Competition 1 of 5 07/06/2017, 21:41 DRAFT COPY 31 st International Physics Olympiad Leicester, U.K. Experimental Competition Wednesday, July 12 th, 2000 Please read this first: 1. The time available is 2 ½ hours

More information

Magnetic Deflection of Electrons

Magnetic Deflection of Electrons Magnetic Deflection of Electrons Objective Materials 1. Banana leads 2. Cathode ray tube 3. Fisher 1V/30V power supply (set to 30V) 4. Fluke digital multimeter 5. High voltage power supply 6. Solenoid

More information

SPH3U1 Lesson 03 Introduction. 6.1 Expressing Error in Measurement

SPH3U1 Lesson 03 Introduction. 6.1 Expressing Error in Measurement SIGNIFICANT DIGITS AND SCIENTIFIC NOTATION LEARNING GOALS Students will: 6 ERROR Describe the difference between precision and accuracy Be able to compare values quantitatively Understand and describe

More information

Practical 1 RC Circuits

Practical 1 RC Circuits Objectives Practical 1 Circuits 1) Observe and qualitatively describe the charging and discharging (decay) of the voltage on a capacitor. 2) Graphically determine the time constant for the decay, τ =.

More information

MA 3260 Lecture 10 - Boolean Algebras (cont.) Friday, October 19, 2018.

MA 3260 Lecture 10 - Boolean Algebras (cont.) Friday, October 19, 2018. MA 3260 Lecture 0 - Boolean Algebras (cont.) Friday, October 9, 208. Objectives: Boolean algebras on { 0, }. Before we move on, I wanted to give you a taste of what the connection between Boolean algebra

More information

Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data Acquisition

Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data Acquisition Journal of the Advanced Undergraduate Physics Laboratory Investigation Volume 1 Issue 1 Article 3 2013 Electrical and Magnetic Properties of High Temperature Superconductors Using Varying forms of Data

More information

Experiment 3: Resonance in LRC Circuits Driven by Alternating Current

Experiment 3: Resonance in LRC Circuits Driven by Alternating Current Experiment 3: Resonance in LRC Circuits Driven by Alternating Current Introduction In last week s laboratory you examined the LRC circuit when constant voltage was applied to it. During this laboratory

More information

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory

Lab 4 RC Circuits. Name. Partner s Name. I. Introduction/Theory Lab 4 RC Circuits Name Partner s Name I. Introduction/Theory Consider a circuit such as that in Figure 1, in which a potential difference is applied to the series combination of a resistor and a capacitor.

More information

Voltage, Current, Resistance, and Ohm's Law

Voltage, Current, Resistance, and Ohm's Law Voltage, Current, Resistance, and Ohm's Law a learn.sparkfun.com tutorial Available online at: http://sfe.io/t27 Contents Electricity Basics Electrical Charge Voltage Current Resistance Ohm's Law An Ohm's

More information

Faraday Effect. 1 Introduction. H.O. Meyer, 12/4/05

Faraday Effect. 1 Introduction. H.O. Meyer, 12/4/05 H.O. Meyer, 12/4/05 Faraday Effect Goal: Magneto-optics: optical activity in a homogeneous medium in the presence of a magnetic field. Measure the material constant that quantifies this effect (Verdet

More information

Fundamentals of data, graphical, and error analysis

Fundamentals of data, graphical, and error analysis Fundamentals of data, graphical, and error analysis. Data measurement and Significant Figures UTC - Physics 030L/040L Whenever we take a measurement, there are limitations to the data and how well we can

More information

Lab #2: Parallax & Introduction to Error Analysis

Lab #2: Parallax & Introduction to Error Analysis Lab #: Parallax & Introduction to Error Analysis February 6, 0 Due February 0, 0 by am Objectives: To understand and apply the techniques of parallax to measure the distances to terrestrial objects. To

More information

Uncertainty, Error, and Precision in Quantitative Measurements an Introduction 4.4 cm Experimental error

Uncertainty, Error, and Precision in Quantitative Measurements an Introduction 4.4 cm Experimental error Uncertainty, Error, and Precision in Quantitative Measurements an Introduction Much of the work in any chemistry laboratory involves the measurement of numerical quantities. A quantitative measurement

More information

The Digital Multimeter (DMM)

The Digital Multimeter (DMM) The Digital Multimeter (DMM) Since Physics 152 covers electricity and magnetism, the analysis of both DC and AC circuits is required. In the lab, you will need to measure resistance, potential (voltage),

More information

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum To print higher-resolution math symbols, click the Hi-Res Fonts for Printing button on the jsmath control panel. PHY 13 Lab 1 - Error and Uncertainty and the Simple Pendulum Important: You need to print

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

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

Measurement Uncertainty

Measurement Uncertainty β HOW TO COMBINE Measurement Uncertainty WITH DIFFERENT UNITS OF μmeasurement By Rick Hogan 1 How to Combine Measurement Uncertainty With Different Units of Measure By Richard Hogan 2015 ISOBudgets LLC.

More information

Regression, part II. I. What does it all mean? A) Notice that so far all we ve done is math.

Regression, part II. I. What does it all mean? A) Notice that so far all we ve done is math. Regression, part II I. What does it all mean? A) Notice that so far all we ve done is math. 1) One can calculate the Least Squares Regression Line for anything, regardless of any assumptions. 2) But, if

More information

Lab manual version 0

Lab manual version 0 Electrical fluctuations of a resistor in thermal equilibrium: measurement of Boltzmann s constant, and the Centigrade value of Absolute zero. Lab manual version 0 Theory of Johnson, or Nyquist noise: Please

More information