Some hints for the Radioactive Decay lab

Size: px
Start display at page:

Download "Some hints for the Radioactive Decay lab"

Transcription

1 Some hints for the Radioactive Decay lab Edward Stokan, March 7, 2011 Plotting a histogram using Microsoft Excel The way I make histograms in Excel is to put the bounds of the bin on the top row beside the column of data, like: Now, the goal is to make is so that the bin is 1 if the counts number falls inside the bin. Looking at the first row for the data, row 4, the number of counts is 2, and the bin with 2 shows one, which is good. The other bins for that trial show zero, which is also good. To get this, you'll need a formula that uses an AND() statement inside an IF() statement. Here's what I used: =IF(AND($C4>=E$3,$C4<F$3),1,0) What this is saying is that, if C4 is >= E3 AND C4 < F3, then the result is 1, otherwise the result is zero. Also note the placement of $ to ensure that the same formula can be used for all bins and all trials. It's easy to check if you've done this right by looking to see if the correct bins have a one for each trial. When your bins are populated correctly, sum each column to plot as a vertical bar graph to produce your histogram: (1)

2 From here, you can add axis labels, a title, change the width of the bars, most importantly, change the label for each bin on your histogram. Note that the first bin is always labelled 1, which is definitely wrong. You can change this by right-clicking one of the bars on the histogram, selecting Select Data and changing the Horizontal (Category) Axis Labels on the right: This is what it should look like when you're done. Blank Sample Radioactivity Counts Number [0,1) [1,2) [2,3) [3,4) [4,5) [5,6) [6,7) [7,8) Radioactive Counts Recorded Plotting distributions on the same graph First, start by finding the mean and standard deviation for the recorded data using AVERAGE and STDEV. Next, make a column for all possible value of counts recorded. I went from zero to eight in steps of 0.1 for the blank sample using the Fill function. The Poisson distribution related to each counts value can be found by using the POISSON function, while the normal distribution can be found using the NORMDIST function. Some examples are given on the next page. (2)

3 So: =POISSON(B58,$C$52,FALSE) =NORMDIST(B58,$C$52,$C$53,FALSE) The first number in each function call refer to the counts number, zero for B58. The second number sent to the function is the mean of the observed data, 2.22 stored at C52. The third value for the NORMDIST function is the standard deviation of the observed data, calculated using STDEV, and stored at C53. Finally, both function calls say FALSE because you do not want the cumulative distribution. If you've called the functions correctly, they'll produce numbers smaller than one for each count value. This is because the distributions are normalized such that if you integrate their entire domain, they'll add to one. This is clearly not the case with the data. The area under the data histogram is equal to the sum of the bin widths multiplied by the bin heights. Thus, the area under the histogram is 45. The correct distribution values can then be found by multiplying each distribution value by the area under the graph, 45, stored at F53 in the spreadsheet above: =C58*$F$53 =D58*$F$53 One final step before plotting anything is to add a second counts column beside your normalized Poisson and normal distribution columns. I've done that with column F in the chart above, we'll require this to plot the data correctly, since the axis for the bar graph will be translated horizontally compared to the distributions. Now for plotting, right click your bars on the histogram and click Select Data. Click add and for series values, highlight the column of normalized Poisson distribution values, column G in the screenshot above. Set the name to "Poisson" or something to not be confused, later. At first, the chart will look like crap since it'll try and plot it like a histogram, so right click the red or Poisson bars, select Change Series Chart Type, and set it to some sort of X Y (Scatter) plot. It'll still look like crap because the horizontal axes of the graphs don't match at all. To fix that, right click your Poisson data again, select Select Data, edit (3)

4 your Poisson series, and set the x-values to the duplicated counts value, i.e. column F. It should now look better, but still offset by a bit, so this can be fixed by adding a small offset to the duplicated counts values in column F, like 0.5 or so. The chart should then look good! This is the progression of how the graph changes if the steps are followed: The normal distribution is then easy to add. Right click one of the Poisson bars and select Select Data, go to add a series. For the x-values, select the offset counts values (i.e. column F) and for the y-values, select the scaled normal distribution (i.e. column H). It should look correct from there without any modifications. From here, a legend may be added, and the type of graph, markers, or lines can be played with to get something nice: Blank Sample Radioactivity Counts Number [0,1) [1,2) [2,3) [3,4) [4,5) [5,6) [6,7) [7,8) Radioactive Counts Recorded Measured Poisson Gauss (4)

5 Other stuff The rest of the lab should be relatively straightforward. For b) Radioactive Source counts, question 3., when estimating the probability, explain how you do this. One way might be to determine the area of the bars between n and n + 50, then dividing that by the total area of the histogram, which will give a probability, but you can also take fractional areas, or other methods. Make sure to explain this. When figuring out the same thing with the normal distribution, you can use the normal distribution table, or calculate it numerically using Maple, MATLAB, or even Excel. To figure it out using Excel, you'll have to use NORMDIST again, but with the FALSE option turned to TRUE to give the cumulative distribution: =NORMDIST([mean + 50],[mean],[standard deviation],true) - NORMDIST([mean],[mean],[standard deviation],true) I think that's what the expression may look like, but I haven't checked to see if it's correct, so make sure it makes sense (i.e. no negative numbers!) before you hand it in. Also, this is a long-format lab, even though I said it wasn't... sorry about that! (5)

How many states. Record high temperature

How many states. Record high temperature Record high temperature How many states Class Midpoint Label 94.5 99.5 94.5-99.5 0 97 99.5 104.5 99.5-104.5 2 102 102 104.5 109.5 104.5-109.5 8 107 107 109.5 114.5 109.5-114.5 18 112 112 114.5 119.5 114.5-119.5

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

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

1. The Basic X-Y Scatter Plot

1. The Basic X-Y Scatter Plot 1. The Basic X-Y Scatter Plot EXCEL offers a wide range of plots; however, this discussion will be restricted to generating XY scatter plots in various formats. The easiest way to begin is to highlight

More information

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

Module 2A Turning Multivariable Models into Interactive Animated Simulations

Module 2A Turning Multivariable Models into Interactive Animated Simulations Module 2A Turning Multivariable Models into Interactive Animated Simulations Using tools available in Excel, we will turn a multivariable model into an interactive animated simulation. Projectile motion,

More information

Stochastic Modelling

Stochastic Modelling Stochastic Modelling Simulating Random Walks and Markov Chains This lab sheets is available for downloading from www.staff.city.ac.uk/r.j.gerrard/courses/dam/, as is the spreadsheet mentioned in section

More information

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4 Name: Date: Chemistry ~ Ms. Hart Class: Anions or Cations 4.7 Relationships Among Elements Lab #10 Background Information The periodic table is a wonderful source of information about all of the elements

More information

MITOCW ocw f99-lec09_300k

MITOCW ocw f99-lec09_300k MITOCW ocw-18.06-f99-lec09_300k OK, this is linear algebra lecture nine. And this is a key lecture, this is where we get these ideas of linear independence, when a bunch of vectors are independent -- or

More information

SME 864 Mark Urban-Lurain

SME 864 Mark Urban-Lurain SME 864 Mark Urban-Lurain 1 Import data from non-excel sources Probe Software Web sites Other sources Organize data Structure file for analysis Clean values Analyze Summarize Statistics Graph 2 Get files

More information

5-Sep-15 PHYS101-2 GRAPHING

5-Sep-15 PHYS101-2 GRAPHING GRAPHING Objectives 1- To plot and analyze a graph manually and using Microsoft Excel. 2- To find constants from a nonlinear relation. Exercise 1 - Using Excel to plot a graph Suppose you have measured

More information

Purpose: Materials: WARNING! Section: Partner 2: Partner 1:

Purpose: Materials: WARNING! Section: Partner 2: Partner 1: Partner 1: Partner 2: Section: PLEASE NOTE: You will need this particular lab report later in the semester again for the homework of the Rolling Motion Experiment. When you get back this graded report,

More information

MITOCW ocw f99-lec01_300k

MITOCW ocw f99-lec01_300k MITOCW ocw-18.06-f99-lec01_300k Hi. This is the first lecture in MIT's course 18.06, linear algebra, and I'm Gilbert Strang. The text for the course is this book, Introduction to Linear Algebra. And the

More information

MITOCW ocw f99-lec05_300k

MITOCW ocw f99-lec05_300k MITOCW ocw-18.06-f99-lec05_300k This is lecture five in linear algebra. And, it will complete this chapter of the book. So the last section of this chapter is two point seven that talks about permutations,

More information

Contents. 13. Graphs of Trigonometric Functions 2 Example Example

Contents. 13. Graphs of Trigonometric Functions 2 Example Example Contents 13. Graphs of Trigonometric Functions 2 Example 13.19............................... 2 Example 13.22............................... 5 1 Peterson, Technical Mathematics, 3rd edition 2 Example 13.19

More information

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION

LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION LAB 5 INSTRUCTIONS LINEAR REGRESSION AND CORRELATION In this lab you will learn how to use Excel to display the relationship between two quantitative variables, measure the strength and direction of the

More information

A Scientific Model for Free Fall.

A Scientific Model for Free Fall. A Scientific Model for Free Fall. I. Overview. This lab explores the framework of the scientific method. The phenomenon studied is the free fall of an object released from rest at a height H from the ground.

More information

MITOCW MIT18_01SCF10Rec_24_300k

MITOCW MIT18_01SCF10Rec_24_300k MITOCW MIT18_01SCF10Rec_24_300k JOEL LEWIS: Hi. Welcome back to recitation. In lecture, you've been doing related rates problems. I've got another example for you, here. So this one's a really tricky one.

More information

Red Hot Half-Life Modeling Nuclear Decay

Red Hot Half-Life Modeling Nuclear Decay Red Hot Half-Life Modeling Nuclear Decay About this Lesson This lesson can be used in multiple places within a chemistry curriculum. It can be used with the atomic structure unit, a nuclear chemistry unit

More information

Tabulation means putting data into tables. A table is a matrix of data in rows and columns, with the rows and the columns having titles.

Tabulation means putting data into tables. A table is a matrix of data in rows and columns, with the rows and the columns having titles. 1 Tabulation means putting data into tables. A table is a matrix of data in rows and columns, with the rows and the columns having titles. 2 converting the set of numbers into the form of a grouped frequency

More information

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 A (Mostly) Correctly Formatted Sample Lab Report Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 August 26, 2008 Abstract Your abstract should not be indented and be single-spaced. Abstracts

More information

ENV Laboratory 1: Quadrant Sampling

ENV Laboratory 1: Quadrant Sampling Name: Date: Introduction Quite often when conducting experiments it is impossible to measure every individual, object or species that exists. We will explore some methods to estimate the number of objects/species/individuals

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

Chapter 1 Review of Equations and Inequalities

Chapter 1 Review of Equations and Inequalities Chapter 1 Review of Equations and Inequalities Part I Review of Basic Equations Recall that an equation is an expression with an equal sign in the middle. Also recall that, if a question asks you to solve

More information

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Tutorial:A Random Number of Coin Flips

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Tutorial:A Random Number of Coin Flips 6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Tutorial:A Random Number of Coin Flips Hey, everyone. Welcome back. Today, we're going to do another fun problem that

More information

MITOCW R11. Double Pendulum System

MITOCW R11. Double Pendulum System MITOCW R11. Double Pendulum System The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for

More information

Lab 1. EXCEL plus some basic concepts such as scientific notation, order of magnitude, logarithms, and unit conversions

Lab 1. EXCEL plus some basic concepts such as scientific notation, order of magnitude, logarithms, and unit conversions COMPUTER LAB 1 EARTH SYSTEMS SCIENCE I PG250 Fall 2010 Hunter College Lab 1. EXCEL plus some basic concepts such as scientific notation, order of magnitude, logarithms, and unit conversions Low Impact

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

Boyle s Law: A Multivariable Model and Interactive Animated Simulation

Boyle s Law: A Multivariable Model and Interactive Animated Simulation Boyle s Law: A Multivariable Model and Interactive Animated Simulation Using tools available in Excel, we will turn a multivariable model into an interactive animated simulation. Projectile motion, Boyle's

More information

Taguchi Method and Robust Design: Tutorial and Guideline

Taguchi Method and Robust Design: Tutorial and Guideline Taguchi Method and Robust Design: Tutorial and Guideline CONTENT 1. Introduction 2. Microsoft Excel: graphing 3. Microsoft Excel: Regression 4. Microsoft Excel: Variance analysis 5. Robust Design: An Example

More information

Experiment #4: Radiation Counting Statistics

Experiment #4: Radiation Counting Statistics Experiment #4: Radiation Counting Statistics NUC E 450 - Radiation Detection and Measurement Spring 2014 Report Prepared By: Christine Yeager Lab Preformed By: Christine Yeager Martin Gudewicz Connor Dickey

More information

Geology Geomath Computer Lab Quadratics and Settling Velocities

Geology Geomath Computer Lab Quadratics and Settling Velocities Geology 351 - Geomath Computer Lab Quadratics and Settling Velocities In Chapter 3 of Mathematics: A simple tool for geologists, Waltham takes us through a brief review of quadratic equations and their

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Basic Lesson 3: Using Microsoft Excel to Analyze Weather Data: Topography and Temperature This lesson uses NCDC data to compare

More information

Statistics of Radioactive Decay

Statistics of Radioactive Decay Statistics of Radioactive Decay Introduction The purpose of this experiment is to analyze a set of data that contains natural variability from sample to sample, but for which the probability distribution

More information

We estimated the last digit, It's uncertain. These digits were obtained in all measurements. They are certain

We estimated the last digit, It's uncertain. These digits were obtained in all measurements. They are certain 21 Significant figures SIGNIFICANT FIGURES are a way to indicate the amount of uncertainty in a measurement. The significant figures in a measurement are all of the CERTAIN DIGITS plus one and only one

More information

MITOCW ocw-18_02-f07-lec02_220k

MITOCW ocw-18_02-f07-lec02_220k MITOCW ocw-18_02-f07-lec02_220k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

DISCRETE RANDOM VARIABLES EXCEL LAB #3

DISCRETE RANDOM VARIABLES EXCEL LAB #3 DISCRETE RANDOM VARIABLES EXCEL LAB #3 ECON/BUSN 180: Quantitative Methods for Economics and Business Department of Economics and Business Lake Forest College Lake Forest, IL 60045 Copyright, 2011 Overview

More information

Physics 201 Lab 2 Air Drag Simulation

Physics 201 Lab 2 Air Drag Simulation Physics 201 Lab 2 Air Drag Simulation Jan 28, 2013 Equipment Initial Set Up Type the data from Table 1 into the appropriate cells. By preceding the content of the cell with an equal sign (as in cell A6)

More information

Photometry of Supernovae with Makali i

Photometry of Supernovae with Makali i Photometry of Supernovae with Makali i How to perform photometry specifically on supernovae targets using the free image processing software, Makali i This worksheet describes how to use photometry to

More information

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same!

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same! Two sample tests (part II): What to do if your data are not distributed normally: Option 1: if your sample size is large enough, don't worry - go ahead and use a t-test (the CLT will take care of non-normal

More information

Algebra 1B notes and problems March 12, 2009 Factoring page 1

Algebra 1B notes and problems March 12, 2009 Factoring page 1 March 12, 2009 Factoring page 1 Factoring Last class, you worked on a set of problems where you had to do multiplication table calculations in reverse. For example, given the answer x 2 + 4x + 2x + 8,

More information

Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system.

Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system. Purpose: This lab is an experiment to verify Malus Law for polarized light in both a two and three polarizer system. The basic description of Malus law is given as I = I 0 (cos 2 θ ) Where I is the transmitted

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

Describing the Relationship between Two Variables

Describing the Relationship between Two Variables 1 Describing the Relationship between Two Variables Key Definitions Scatter : A graph made to show the relationship between two different variables (each pair of x s and y s) measured from the same equation.

More information

Boyle s Law and Charles Law Activity

Boyle s Law and Charles Law Activity Boyle s Law and Charles Law Activity Introduction: This simulation helps you to help you fully understand 2 Gas Laws: Boyle s Law and Charles Law. These laws are very simple to understand, but are also

More information

MITOCW ocw f07-lec39_300k

MITOCW ocw f07-lec39_300k MITOCW ocw-18-01-f07-lec39_300k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Homework Example Chapter 1 Similar to Problem #14

Homework Example Chapter 1 Similar to Problem #14 Chapter 1 Similar to Problem #14 Given a sample of n = 129 observations of shower-flow-rate, do this: a.) Construct a stem-and-leaf display of the data. b.) What is a typical, or representative flow rate?

More information

MITOCW watch?v=ed_xr1bzuqs

MITOCW watch?v=ed_xr1bzuqs MITOCW watch?v=ed_xr1bzuqs The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Collecting and Reporting Data

Collecting and Reporting Data Types of Data Data can be classified as qualitative or quantitative: Qualitative data Are observed rather than measured Include written descriptions, videos, photographs, or live observations Examples

More information

MITOCW ocw f99-lec16_300k

MITOCW ocw f99-lec16_300k MITOCW ocw-18.06-f99-lec16_300k OK. Here's lecture sixteen and if you remember I ended up the last lecture with this formula for what I called a projection matrix. And maybe I could just recap for a minute

More information

Name: Hour: Teacher: ROZEMA. Chemistry Isotopes, Decay & Half Lives

Name: Hour: Teacher: ROZEMA. Chemistry Isotopes, Decay & Half Lives Name: Hour: Teacher: ROZEMA Chemistry Isotopes, Decay & Half Lives Isotopia Stable and Radioactive Isotopes Purpose To explore the naturally occurring isotopes of the elements. Part 1: Elements 1 through

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

CH 2212 Lab Exploration Standard Addition in Spectrophotometry

CH 2212 Lab Exploration Standard Addition in Spectrophotometry CH 2212 Lab Exploration Standard Addition in Spectrophotometry Now that you have successfully generated a linear calibration plot for MnO 4 - in the Calibration Curves in Spectrophotometry exploration,

More information

7. STREAMBED TEXTURE ANALYSIS

7. STREAMBED TEXTURE ANALYSIS Geomorphology 7. Streambed Texture Analysis 7. STREAMBED TEXTURE ANALYSIS 50 Points The purpose of this exercise is to analyze the size characteristics of the sediment samples collected in the field. We

More information

M&M Exponentials Exponential Function

M&M Exponentials Exponential Function M&M Exponentials Exponential Function Teacher Guide Activity Overview In M&M Exponentials students will experiment with growth and decay functions. Students will also graph their experimental data and

More information

1. Solve each linear system using Gaussian elimination or Gauss-Jordan reduction. The augmented matrix of this linear system is

1. Solve each linear system using Gaussian elimination or Gauss-Jordan reduction. The augmented matrix of this linear system is Solutions to Homework Additional Problems. Solve each linear system using Gaussian elimination or Gauss-Jordan reduction. (a) x + y = 8 3x + 4y = 7 x + y = 3 The augmented matrix of this linear system

More information

MITOCW 6. Standing Waves Part I

MITOCW 6. Standing Waves Part I MITOCW 6. Standing Waves Part I The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Spectroscopy II Introduction: Spectrophotometry and Fluorometry

Spectroscopy II Introduction: Spectrophotometry and Fluorometry Introduction: Spectrophotometry and Fluorometry In this experiment you will use the SpectroVis Plus (a small computer controlled Spectrophotometer + Fluorometer) to: Measure the Transmission and Absorbance

More information

PubHlth 540 Fall Summarizing Data Page 1 of 18. Unit 1 - Summarizing Data Practice Problems. Solutions

PubHlth 540 Fall Summarizing Data Page 1 of 18. Unit 1 - Summarizing Data Practice Problems. Solutions PubHlth 50 Fall 0. Summarizing Data Page of 8 Unit - Summarizing Data Practice Problems Solutions #. a. Qualitative - ordinal b. Qualitative - nominal c. Quantitative continuous, ratio d. Qualitative -

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

MITOCW ocw f99-lec23_300k

MITOCW ocw f99-lec23_300k MITOCW ocw-18.06-f99-lec23_300k -- and lift-off on differential equations. So, this section is about how to solve a system of first order, first derivative, constant coefficient linear equations. And if

More information

Error Analysis, Statistics and Graphing Workshop

Error Analysis, Statistics and Graphing Workshop Error Analysis, Statistics and Graphing Workshop Percent error: The error of a measurement is defined as the difference between the experimental and the true value. This is often expressed as percent (%)

More information

MITOCW ocw f99-lec17_300k

MITOCW ocw f99-lec17_300k MITOCW ocw-18.06-f99-lec17_300k OK, here's the last lecture in the chapter on orthogonality. So we met orthogonal vectors, two vectors, we met orthogonal subspaces, like the row space and null space. Now

More information

MITOCW 18. Quiz Review From Optional Problem Set 8

MITOCW 18. Quiz Review From Optional Problem Set 8 MITOCW 18. Quiz Review From Optional Problem Set 8 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational

More information

Physics 11: Friction is Fun! Lab Activity

Physics 11: Friction is Fun! Lab Activity Partner s name: Physics 11: Friction is Fun! Lab Activity SELF ASSESSMENT Hypothesis Graph Discussion Conclusion Key Concept Beginning Developing Accomplished Exemplary o Outline a hypothesis o Identify

More information

MITOCW watch?v=y6ma-zn4olk

MITOCW watch?v=y6ma-zn4olk MITOCW watch?v=y6ma-zn4olk PROFESSOR: We have to ask what happens here? This series for h of u doesn't seem to stop. You go a 0, a 2, a 4. Well, it could go on forever. And what would happen if it goes

More information

Lab 4 Numerical simulation of a crane

Lab 4 Numerical simulation of a crane Lab 4 Numerical simulation of a crane Agenda Time 10 min Item Review agenda Introduce the crane problem 95 min Lab activity I ll try to give you a 5- minute warning before the end of the lab period to

More information

Jones Creek Case Study

Jones Creek Case Study Jones Creek Case Study Introduction In this case study we will examine the fictitious watershed of Jones Creek. This watershed has one confluence and can therefore be divided into three subbasins. The

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

AREN 2110: Thermodynamics

AREN 2110: Thermodynamics AREN 2110: Thermodynamics ITLL LAB #1: MEASUREMENT OF SPECIFIC HEAT IN A CALORIMETER Calorimetry is a basic technique for measuring thermodynamic quantities, especially those involving heat transfer: specific

More information

Significant figures. We estimated the last digit, It's uncertain

Significant figures. We estimated the last digit, It's uncertain 21 Significant figures SIGNIFICANT FIGURES are a way to indicate the amount of uncertainty in a measurement. The significant figures in a measurement are all of the CERTAIN DIGITS plus one and only one

More information

Arithmetic and Geometric Progressions

Arithmetic and Geometric Progressions GEOL 595 - Mathematical Tools in Geology Lab Assignment # 5 - Sept 30, 2008 (Due Oct 8) Name: Arithmetic and Geometric Progressions A. Arithmetic Progressions 1. We learned in class that a sequence of

More information

Experiment 13. Dilutions and Data Handling in a Spreadsheet rev 1/2013

Experiment 13. Dilutions and Data Handling in a Spreadsheet rev 1/2013 Absorbance Experiment 13 Dilutions and Data Handling in a Spreadsheet rev 1/2013 GOAL: This lab experiment will provide practice in making dilutions using pipets and introduce basic spreadsheet skills

More information

Multiple Choice. Chapter 2 Test Bank

Multiple Choice. Chapter 2 Test Bank Straightforward Statistics 1st Edition Bowen Test Bank Full Download: https://testbanklive.com/download/straightforward-statistics-1st-edition-bowen-test-bank/ Chapter 2 Test Bank Multiple Choice 1. Data

More information

Experiment: Oscillations of a Mass on a Spring

Experiment: Oscillations of a Mass on a Spring Physics NYC F17 Objective: Theory: Experiment: Oscillations of a Mass on a Spring A: to verify Hooke s law for a spring and measure its elasticity constant. B: to check the relationship between the period

More information

Multi-loop Circuits and Kirchoff's Rules

Multi-loop Circuits and Kirchoff's Rules 1 of 8 01/21/2013 12:50 PM Multi-loop Circuits and Kirchoff's Rules 7-13-99 Before talking about what a multi-loop circuit is, it is helpful to define two terms, junction and branch. A junction is a point

More information

MITOCW ocw-18_02-f07-lec25_220k

MITOCW ocw-18_02-f07-lec25_220k MITOCW ocw-18_02-f07-lec25_220k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

b) Connect the oscilloscope across the potentiometer that is on the breadboard. Your instructor will draw the circuit diagram on the board.

b) Connect the oscilloscope across the potentiometer that is on the breadboard. Your instructor will draw the circuit diagram on the board. Geiger Counter Experiments and The Statistics of Nuclear Decay Using a Geiger Mueller tube, there are a number of experiments we can do. In the classroom there are two different types of Geiger Counters:

More information

Data Processing - Non-periodic Data

Data Processing - Non-periodic Data Data Processing - Non-periodic Data N.G. Schultheiss translated and adapted by K. Schadenberg 1 Introduction This module is a continuation of Periodic data in which the downloading and importing of data

More information

Data and Error Analysis

Data and Error Analysis Data and Error Analysis Introduction In this lab you will learn a bit about taking data and error analysis. The physics of the experiment itself is not the essential point. (Indeed, we have not completed

More information

2. Graphing Practice. Warm Up

2. Graphing Practice. Warm Up 2. Graphing Practice In this worksheet you will practice graphing and use your graphs to interpret and analyze data. The first three questions are warm-up questions; complete this section before moving

More information

MITOCW watch?v=ko0vmalkgj8

MITOCW watch?v=ko0vmalkgj8 MITOCW watch?v=ko0vmalkgj8 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Gravity: How fast do objects fall? Student Advanced Version

Gravity: How fast do objects fall? Student Advanced Version Gravity: How fast do objects fall? Student Advanced Version Kinematics is the study of how things move their position, velocity, and acceleration. Acceleration is always due to some force acting on an

More information

Free Fall. v gt (Eq. 4) Goals and Introduction

Free Fall. v gt (Eq. 4) Goals and Introduction Free Fall Goals and Introduction When an object is subjected to only a gravitational force, the object is said to be in free fall. This is a special case of a constant-acceleration motion, and one that

More information

Richter Scale and Logarithms

Richter Scale and Logarithms activity 7.1 Richter Scale and Logarithms In this activity, you will investigate earthquake data and explore the Richter scale as a measure of the intensity of an earthquake. You will consider how numbers

More information

USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS).

USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS). USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS). Note to physics students: Even if this tutorial is not given as an assignment, you are responsible for knowing the material contained

More information

Physics 11: Friction is Fun! Lab Activity SELF ASSESSMENT Beginning Developing Accomplished Exemplary

Physics 11: Friction is Fun! Lab Activity SELF ASSESSMENT Beginning Developing Accomplished Exemplary Partner s name: Physics 11: Friction is Fun! Lab Activity SELF ASSESSMENT Beginning Developing Accomplished Exemplary Hypothesis o Outline a hypothesis o Identify some variables o Formulate a testable

More information

PHYSICS 212 LABORATORY MANUAL CALVIN COLLEGE

PHYSICS 212 LABORATORY MANUAL CALVIN COLLEGE PHYSICS 212 LABORATORY MANUAL CALVIN COLLEGE 2003 Physics 212 Calvin College Variables and Fair Tests (adapted from Physics 113 lab manual) Suppose I wanted to determine whether being in darkness would

More information

1 Overview of Simulink. 2 State-space equations

1 Overview of Simulink. 2 State-space equations Modelling and simulation of engineering systems Simulink Exercise 1 - translational mechanical systems Dr. M. Turner (mct6@sun.engg.le.ac.uk 1 Overview of Simulink Simulink is a package which runs in the

More information

Experiment IV. To find the velocity of waves on a string by measuring the wavelength and frequency of standing waves.

Experiment IV. To find the velocity of waves on a string by measuring the wavelength and frequency of standing waves. Experiment IV The Vibrating String I. Purpose: To find the velocity of waves on a string by measuring the wavelength and frequency of standing waves. II. References: Serway and Jewett, 6th Ed., Vol., Chap.

More information

MITOCW ocw f08-lec19_300k

MITOCW ocw f08-lec19_300k MITOCW ocw-5-111-f08-lec19_300k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Module 3 Study Guide. GCF Method: Notice that a polynomial like 2x 2 8 xy+9 y 2 can't be factored by this method.

Module 3 Study Guide. GCF Method: Notice that a polynomial like 2x 2 8 xy+9 y 2 can't be factored by this method. Module 3 Study Guide The second module covers the following sections of the textbook: 5.4-5.8 and 6.1-6.5. Most people would consider this the hardest module of the semester. Really, it boils down to your

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

PROFESSOR: WELCOME BACK TO THE LAST LECTURE OF THE SEMESTER. PLANNING TO DO TODAY WAS FINISH THE BOOK. FINISH SECTION 6.5

PROFESSOR: WELCOME BACK TO THE LAST LECTURE OF THE SEMESTER. PLANNING TO DO TODAY WAS FINISH THE BOOK. FINISH SECTION 6.5 1 MATH 16A LECTURE. DECEMBER 9, 2008. PROFESSOR: WELCOME BACK TO THE LAST LECTURE OF THE SEMESTER. I HOPE YOU ALL WILL MISS IT AS MUCH AS I DO. SO WHAT I WAS PLANNING TO DO TODAY WAS FINISH THE BOOK. FINISH

More information

Statistics 1. Edexcel Notes S1. Mathematical Model. A mathematical model is a simplification of a real world problem.

Statistics 1. Edexcel Notes S1. Mathematical Model. A mathematical model is a simplification of a real world problem. Statistics 1 Mathematical Model A mathematical model is a simplification of a real world problem. 1. A real world problem is observed. 2. A mathematical model is thought up. 3. The model is used to make

More information

Understanding 1D Motion

Understanding 1D Motion Understanding 1D Motion OBJECTIVE Analyze the motion of a student walking across the room. Predict, sketch, and test position vs. time kinematics graphs. Predict, sketch, and test velocity vs. time kinematics

More information

Determination of Density 1

Determination of Density 1 Introduction Determination of Density 1 Authors: B. D. Lamp, D. L. McCurdy, V. M. Pultz and J. M. McCormick* Last Update: February 1, 2013 Not so long ago a statistical data analysis of any data set larger

More information

MITOCW MITRES_18-007_Part5_lec3_300k.mp4

MITOCW MITRES_18-007_Part5_lec3_300k.mp4 MITOCW MITRES_18-007_Part5_lec3_300k.mp4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources

More information

MITOCW watch?v=0usje5vtiks

MITOCW watch?v=0usje5vtiks MITOCW watch?v=0usje5vtiks PROFESSOR: Mach-Zehnder-- interferometers. And we have a beam splitter. And the beam coming in, it splits into 2. A mirror-- another mirror. The beams are recombined into another

More information

(a) (i) Use StatCrunch to simulate 1000 random samples of size n = 10 from this population.

(a) (i) Use StatCrunch to simulate 1000 random samples of size n = 10 from this population. Chapter 8 Sampling Distribution Ch 8.1 Distribution of Sample Mean Objective A : Shape, Center, and Spread of the Distributions of A1. Sampling Distributions of Mean A1.1 Sampling Distribution of the Sample

More information