Write three (3) functions that will assist you in solving probability problems dealing with normal distributions: ( )

Size: px
Start display at page:

Download "Write three (3) functions that will assist you in solving probability problems dealing with normal distributions: ( )"

Transcription

1 EGR 140 Lab 9: Statistics II Topics to be covered : Probability Distributions Correlation Practice : The average life of a certain battery is 36 months with a standard deviation of 6 months. Assuming a normal distribution, what is the probability that these batteries should be expected to last from 27 to 41 months? EDU>> normcdf140(41,36,6)-normcdf140(27,36,6) Write three (3) functions that will assist you in solving probability problems dealing with normal distributions: ( ) - problt (a, µ, σ ) % will output P X < a - probgt (a, µ, σ ) % will output P( X > a ) - probinbetween (a, b, µ, σ ) % will output P a < X < b ( ) The average life of a certain battery is 36 months with a standard deviation of 6 months. Assuming a normal distribution, what is the probability that these batteries should be expected to last from 27 to 41 months? EDU>> probinbetween(27,41,36,6)

2 A radar unit is used to measure speeds of cars on a motorway. The speeds are normally distributed with a mean of 90 km/hr and a standard deviation of 10 km/hr. What is the probability that a car picked at random is travelling at more than 100 km/hr? EDU>> probgt(100,90,10) For a certain type of computers, the length of time bewteen charges of the battery is normally distributed with a mean of 50 hours and a standard deviation of 15 hours. What is the probability that the length of time will be between 50 and 70 hours? EDU>> probinbetween(50,70,50,15) Lab Exercises : Answer the previous problem using simulation. EDU>> probinbetweensim(50,70,50,15, ) (Poisson) The New York Times reports that large meteorites strike our atmosphere with the intensity of atomic bombs an average of eight times a year. What is the probability of no such meteorite striking in one year? Of 5 strikes in 1 year? Of eight strikes in one year? EDU>> poisscdf140(0,8) e-04 EDU>> poisscdf140(5,8)- poisscdf140(4,8) EDU>> poisscdf140(8,8)- poisscdf140(7,8)

3 It is given that the lifetime of a mechanical assembly in a vibration test is exponentially distributed with a mean of λ = 400 hours. Let X denote the time to fail. Find the probability that an assembly fails in less than 100 hrs. EDU>> expcdf140(100,400) Investgate the correlation between temperature and the heat capacity of gaseous propane Temperature (K) (kj/kg-mol-k) EDU>> x=[ ]; EDU>> y=[ ]; EDU>> corr140(x,y)

4 Assignment : You are to submit a clean hard copy of the solutions to the following problems. 1. (12 points) In the manufacture of certain light bulbs, it is found that 2% are defective. Assuming a normal distribution for defectives in lots of 1,000 of these bulbs, what is the probability that 15 will be defective if σ = 3? 2. (12 points) The greater the sulfur content of coal, the less desirable it is as a heating fuel. Given that the variability among assays for sulfur in coal from a certain mine is σ = 6 lb per ton, and that they follow a normal distribution, answer the following: a) Mines that assay 80 lb of sulfur per ton are considered worthless for heating fuel. How likely is it that a mine with a mean sulfur content of µ = 62 lb per ton will be placed in the worthless category? b) Some cities will not permit the sale coal; within city limits if its assay for sulfur is as great as 34 lb per ton. How likely is it that coal with µ = 40 lb per ton will be allowed to be sold within city limits? 3. (12 points) The probability that a cathode ray tube manufactured by a machine is defective is 0.4. If a sample of sixty tubes is inspected, find the probability that a) exactly half the tubes will be defective. b) over one half the tubes will be defective 4. (12 points) (Binomial) An inspection procedure at a manufacturing plant involves picking three items at random and then accepting the whole lot if at least two of the three items are in perfect condition. If in reality 90% of the whole lot are perfect, what is the probability that the lot will be accepted? If 75% of the whole are perfect? If 60% are perfect? 5. (12 points) (Exponential) The number of miles that a particular car can run before its battery wears out is exponentially distributed with an average of 10,000 miles. The owner of the car needs to take a 5000-mile trip. What is the probability that he will be able to complete the trip without having to replace the car battery?

5 6. (14 points) Answer questions 4 and 5 using simulated data and compare the results. 7. (14 points) An engineer at an aluminum castings plant assesses the relationship between the hydrogen content and the porosity of aluminum alloy castings, and the hydrogen content and the strength of the castings. The engineer collects a random sample of 14 castings and measures the following properties of each casting: hydrogen content, porosity, and strength. Hydrogen Porosity Strength

6 8. (14 points) Here are the classic 1910 observations of Rutherford, Geiger, and Bateman for the number of alpha particles emitted by a film of polonium, as observed over intervals of one-eighth of a minute (7.5 seconds). The lefthand column gives the number of particles observed in one such time unit, and the righthand column gives the number of units in which such an observation was made: From this table, calculate the rate of occurrence of some event, r, and for that rate, using the Poisson formula, calculate the Expected (E) number of instances of each value. Then compare Rutherford's Actual (A) values, and tell us what you think about the nature of the process behind Rutherford's data. of units in which such an observation was made: # observed in one unit # of such units or more 0

2014 SM4 Revision Questions Distributions

2014 SM4 Revision Questions Distributions 2014 SM4 Revision Questions Distributions Normal Q1. Professor Halen has 184 students in his college mathematics class. The scores on the semester exam are normally distributed with a mean of 72.3 and

More information

Poisson population distribution X P(

Poisson population distribution X P( Chapter 8 Poisson population distribution P( ) ~ 8.1 Definition of a Poisson distribution, ~ P( ) If the random variable has a Poisson population distribution, i.e., P( ) probability function is given

More information

Discrete Distributions: Poisson Distribution 1

Discrete Distributions: Poisson Distribution 1 Discrete Distributions: Poisson Distribution 1 November 6, 2017 1 HMS, 2017, v1.1 Chapter References Diez: Chapter 3.3, 3.4 (not 3.4.2), 3.5.2 Navidi, Chapter 4.1, 4.2, 4.3 Chapter References 2 Poisson

More information

You are about to start an exciting series of lessons on physical science. God s Design for the Physical World

You are about to start an exciting series of lessons on physical science. God s Design for the Physical World Table of of Contents Unit 1 - Forms of Energy Lesson 1 Forms of Energy 8 Lesson 2 Mechanical Energy 12 Lesson 3 Chemical Energy 16 Lesson 4 Nuclear Energy 18 Lesson 5 Nuclear Weapons 21 Special Feature

More information

CS 1538: Introduction to Simulation Homework 1

CS 1538: Introduction to Simulation Homework 1 CS 1538: Introduction to Simulation Homework 1 1. A fair six-sided die is rolled three times. Let X be a random variable that represents the number of unique outcomes in the three tosses. For example,

More information

Lesson 5: Measuring Variability for Symmetrical Distributions

Lesson 5: Measuring Variability for Symmetrical Distributions 1. : Measuring Variability for Symmetrical Distributions Student Outcomes Students calculate the standard deviation for a set of data. Students interpret the standard deviation as a typical distance from

More information

(Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3)

(Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3) 3 Probability Distributions (Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3) Probability Distribution Functions Probability distribution function (pdf): Function for mapping random variables to real numbers. Discrete

More information

Name of the Student: Problems on Discrete & Continuous R.Vs

Name of the Student: Problems on Discrete & Continuous R.Vs SUBJECT NAME : Probability & Random Processes SUBJECT CODE : MA645 MATERIAL NAME : Additional Problems MATERIAL CODE : JM08AM004 REGULATION : R03 UPDATED ON : March 05 (Scan the above QR code for the direct

More information

DISTRIBUTIONAL APPROXIMATIONS

DISTRIBUTIONAL APPROXIMATIONS DISTRIBUTIONAL APPROXIMATIONS BINOMIAL TO POISSON Question 1 (**) The discrete random variable X has probability distribution X ~ B( 125,0.02). Use a distributional approximation, to find P( 2 X 6)

More information

MAE Probability and Statistical Methods for Engineers - Spring 2016 Final Exam, June 8

MAE Probability and Statistical Methods for Engineers - Spring 2016 Final Exam, June 8 MAE 18 - Probability and Statistical Methods for Engineers - Spring 16 Final Exam, June 8 Instructions (i) One (two-sided) cheat sheet, book tables, and a calculator with no communication capabilities

More information

Sample Problems for the Final Exam

Sample Problems for the Final Exam Sample Problems for the Final Exam 1. Hydraulic landing assemblies coming from an aircraft rework facility are each inspected for defects. Historical records indicate that 8% have defects in shafts only,

More information

Student Outcomes. Classwork. Example 1 (6 minutes)

Student Outcomes. Classwork. Example 1 (6 minutes) Student Outcomes Students know the definition of constant rate in varied contexts as expressed using two variables where one is representing a time interval. Students graph points on a coordinate plane

More information

Physics 25 Exam #4 December 2, 2008 Dr. Alward Page 1

Physics 25 Exam #4 December 2, 2008 Dr. Alward Page 1 1. Light with a wavelength of 589 nm in a vacuum strikes the surface of an unknown liquid at an angle of 31.2 with respect to the normal to the surface. If the light travels at a speed of 1.97 10 8 m/s

More information

Nuclear Nuclear chemistry & radioactivity

Nuclear Nuclear chemistry & radioactivity Nuclear Nuclear chemistry & radioactivity Chemistry normally is concerned with interaction of atoms and depends on the properties of electrons and only the charge and mass of the nucleus (location of protons

More information

Hypothesis testing Mixed exercise 4

Hypothesis testing Mixed exercise 4 Hypothesis testing Mixed exercise 4 1 a Let the random variable X denote the number of vehicles passing the point in a 1-minute period. 39 Use the Poisson distribution model X Po, i.e. X Po(.5).5 e.5 P(

More information

A) Questions on Estimation

A) Questions on Estimation A) Questions on Estimation 1 The following table shows the data about the number of seeds germinating out of 10 on damp filter paper which has Poisson distribution. Determine Estimate of λ. Number of seeds

More information

Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last

Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last one, which is a success. In other words, you keep repeating

More information

Name: Period: Date: Applications of Nuclear Chemistry Activity

Name: Period: Date: Applications of Nuclear Chemistry Activity Name: Period: Date: Applications of Nuclear Chemistry Activity Station 1: Chemical vs. Nuclear Reactions Directions: Pick up the Station 1 Cards and figure out which cards apply to chemical reactions and

More information

Algebra Midyear Test What to Know

Algebra Midyear Test What to Know Algebra Midyear Test What to Know All topics and problems are for BOTH Algebra 8 and Algebra 8R students unless otherwise noted. Thinking with Mathematical Models Make a table and a graph to represent

More information

CHAPTER 93 SIGNIFICANCE TESTING

CHAPTER 93 SIGNIFICANCE TESTING CHAPTER 93 SIGNIFICANCE TESTING EXERCISE 342 Page 981 1. Random samples of 1000 rings are drawn from the output of a machine periodically for inspection purposes. A defect rate of 5% is acceptable to the

More information

Fission and Chain Reactions

Fission and Chain Reactions The Harnessed Atom Lesson Five Fission and Chain Reactions What you need to know about Fission and Chain Reactions: Fission Chain reaction Uranium fuel Mining Milling Enrichment Fuel fabrication 2 Nuclear

More information

Electricity Test Review

Electricity Test Review Electricity Test Review Definitions; Series Circuit, Parallel Circuit, Equivalent Resistance, Fuse, Circuit Breaker, kilowatt hour, load, short circuit, dry cell, wet cell, fuel cells, solar cells, fossil

More information

Section 3: Nuclear Radiation Today

Section 3: Nuclear Radiation Today : Nuclear Radiation Today Preview Key Ideas Bellringer Where is Radiation? Beneficial Uses of Nuclear Radiation Risks of Nuclear Radiation Nuclear Power Key Ideas Where are we exposed to radiation? What

More information

STA 584 Supplementary Examples (not to be graded) Fall, 2003

STA 584 Supplementary Examples (not to be graded) Fall, 2003 Page 1 of 8 Central Michigan University Department of Mathematics STA 584 Supplementary Examples (not to be graded) Fall, 003 1. (a) If A and B are independent events, P(A) =.40 and P(B) =.70, find (i)

More information

CHAPTER 10 RELIABILITY

CHAPTER 10 RELIABILITY CHAPTER 10 RELIABILITY Failure rates Reliability Constant failure rate and exponential distribution System Reliability Components in series Components in parallel Combination system 1 Failure Rate Curve

More information

Name of the Student: Problems on Discrete & Continuous R.Vs

Name of the Student: Problems on Discrete & Continuous R.Vs Engineering Mathematics 03 SUBJECT NAME : Probability & Random Process SUBJECT CODE : MA 6 MATERIAL NAME : Problem Material MATERIAL CODE : JM08AM008 (Scan the above QR code for the direct download of

More information

(Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3)

(Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3) 3 Probability Distributions (Ch 3.4.1, 3.4.2, 4.1, 4.2, 4.3) Probability Distribution Functions Probability distribution function (pdf): Function for mapping random variables to real numbers. Discrete

More information

1Factor binomials that. 2Use the difference. Then. Why? Now. New Vocabulary dif ference of two squares

1Factor binomials that. 2Use the difference. Then. Why? Now. New Vocabulary dif ference of two squares Then You factored trinomials into two binomials. (Lesson 8-3, 8-) New Vocabulary dif ference of two squares Now Quadratic Equations: Differences of Squares 1Factor binomials that are the difference of

More information

If two different people are randomly selected from the 991 subjects, find the probability that they are both women. Round to four decimal places.

If two different people are randomly selected from the 991 subjects, find the probability that they are both women. Round to four decimal places. Math 227 Name 5 pts*20=100pts 1) A bin contains 67 light bulbs of which 8 are defective. If 3 light bulbs are randomly selected from the bin with replacement, find the probability that all the bulbs selected

More information

Radioactivity. General Physics II PHYS 111. King Saud University College of Applied Studies and Community Service Department of Natural Sciences

Radioactivity. General Physics II PHYS 111. King Saud University College of Applied Studies and Community Service Department of Natural Sciences King Saud University College of Applied Studies and Community Service Department of Natural Sciences Radioactivity General Physics II PHYS 111 Nouf Alkathran nalkathran@ksu.edu.sa Outline Radioactive Decay

More information

Looking at Cosmic Muons to verify Einstein's Special Relativity

Looking at Cosmic Muons to verify Einstein's Special Relativity Looking at Cosmic Muons to verify Einstein's Special Relativity Kunnawalkam Raghav Cornell College, PHY 312 Prof. Derin Sherman Abstract In this paper we will be building a modified Geiger counter to detect

More information

Unit 22: Sampling Distributions

Unit 22: Sampling Distributions Unit 22: Sampling Distributions Summary of Video If we know an entire population, then we can compute population parameters such as the population mean or standard deviation. However, we generally don

More information

Radioactivity. General Physics II PHYS 111. King Saud University College of Applied Studies and Community Service Department of Natural Sciences

Radioactivity. General Physics II PHYS 111. King Saud University College of Applied Studies and Community Service Department of Natural Sciences King Saud University College of Applied Studies and Community Service Department of Natural Sciences Radioactivity General Physics II PHYS 111 Nouf Alkathran nalkathran@ksu.edu.sa Outline Radioactive Decay

More information

Math 1314 Lesson 19: Numerical Integration

Math 1314 Lesson 19: Numerical Integration Math 1314 Lesson 19: Numerical Integration For more complicated functions, we will use GeoGebra to find the definite integral. These will include functions that involve the exponential function, logarithms,

More information

Distance = Rate x Time Middle grades

Distance = Rate x Time Middle grades Distance = Rate x Time Middle grades Lesson Summary Students practice using the equation distance = rate x time using trajectory data from the Apollo 11 lunar landing mission. Prior Knowledge & Skills

More information

( ) P A B : Probability of A given B. Probability that A happens

( ) P A B : Probability of A given B. Probability that A happens A B A or B One or the other or both occurs At least one of A or B occurs Probability Review A B A and B Both A and B occur ( ) P A B : Probability of A given B. Probability that A happens given that B

More information

1 1 m. 3.2 m 1 cm. 1 m. 1 1 cm. 1 1 = 320 cm. 1 1 m

1 1 m. 3.2 m 1 cm. 1 m. 1 1 cm. 1 1 = 320 cm. 1 1 m Activity 1-5 Unit Conversions The factor-label method was developed to keep track of units in multi-step conversion problems. In the method, equalities (i.e., conversion factors) are set up in fraction

More information

Probability and Statistics for Engineers

Probability and Statistics for Engineers Probability and Statistics for Engineers Chapter 4 Probability Distributions Ruochen Liu Ruochenliu@xidian.edu.cn Institute of Intelligent Information Processing, Xidian University Outline Random variables

More information

37.3. The Poisson Distribution. Introduction. Prerequisites. Learning Outcomes

37.3. The Poisson Distribution. Introduction. Prerequisites. Learning Outcomes The Poisson Distribution 37.3 Introduction In this Section we introduce a probability model which can be used when the outcome of an experiment is a random variable taking on positive integer values and

More information

Lesson 11: Classwork. Example 1 S.41

Lesson 11: Classwork. Example 1 S.41 Classwork Example 1 Pauline mows a lawn at a constant rate. Suppose she mows a 35-square-foot lawn in 2.5 minutes. What area, in square feet, can she mow in 1 minutes? tt minutes? tt (time in minutes)

More information

Chapter 9. Radioactivity, Radon, and Nuclear Energy. READ THE CHAPTER CAREFULLY ON RADON

Chapter 9. Radioactivity, Radon, and Nuclear Energy. READ THE CHAPTER CAREFULLY ON RADON Chapter 9. Radioactivity, Radon, and Nuclear Energy. READ THE CHAPTER CAREFULLY ON RADON CHEM 3320 Dr. Houston Brown - 2016 Radioactivity Emission of subatomic particles or high-energy electromagnetic

More information

2. Prove that x must be always lie between the smallest and largest data values.

2. Prove that x must be always lie between the smallest and largest data values. Homework 11 12.5 1. A laterally insulated bar of length 10cm and constant cross-sectional area 1cm 2, of density 10.6gm/cm 3, thermal conductivity 1.04cal/(cm sec C), and specific heat 0.056 cal/(gm C)(this

More information

Lecture 7. Outline. ASTR 111 Section 002. Discuss Quiz 5 Light. Light travels through empty space at a speed of 300,000 km/s

Lecture 7. Outline. ASTR 111 Section 002. Discuss Quiz 5 Light. Light travels through empty space at a speed of 300,000 km/s Lecture 7 ASTR 111 Section 002 Outline Discuss Quiz 5 Light Suggested reading: Chapter 5.1-5.2 and 5.6-5.8 of textbook Light travels through empty space at a speed of 300,000 km/s In 1676, Danish astronomer

More information

Known probability distributions

Known probability distributions Known probability distributions Engineers frequently wor with data that can be modeled as one of several nown probability distributions. Being able to model the data allows us to: model real systems design

More information

Let s suppose that the manufacturer of a popular washing powder announced a change in how it packages its product.

Let s suppose that the manufacturer of a popular washing powder announced a change in how it packages its product. Show Me: Rate of Change M8049 Let s suppose that the manufacturer of a popular washing powder announced a change in how it packages its product. The original amount of washing powder in a pack was eighty

More information

The detector and counter are used in an experiment to show that a radioactive source gives out alpha and beta radiation only.

The detector and counter are used in an experiment to show that a radioactive source gives out alpha and beta radiation only. ATOMS AND NUCLEAR RADIATION PART II Q1. The detector and counter are used in an experiment to show that a radioactive source gives out alpha and beta radiation only. Two different types of absorber are

More information

Enrichment. Letter Frequency Letter Frequency Letter Frequency a j s b k t c l u d 11 m v e n 17 w f o x g p y h 9 q z i r 20

Enrichment. Letter Frequency Letter Frequency Letter Frequency a j s b k t c l u d 11 m v e n 17 w f o x g p y h 9 q z i r 20 2-1 Linguistic Statistics Linguistics is the study of human speech. The activity on this page shows the type of data collection and analysis that might be done by a linguist who is researching the structure

More information

Determine the line of best fit for this data. Write an equation to represent the line of best fit.

Determine the line of best fit for this data. Write an equation to represent the line of best fit. Integrated Math I, Subpart 3 Calculator Allowed TN0030684 21 Samatha owns a local ice cream stand. She recorded the high temperatures, in degrees Fahrenheit, and her ice cream sales, in dollars, for eight

More information

Chapter 12: Inference about One Population

Chapter 12: Inference about One Population Chapter 1: Inference about One Population 1.1 Introduction In this chapter, we presented the statistical inference methods used when the problem objective is to describe a single population. Sections 1.

More information

Created by T. Madas POISSON DISTRIBUTION. Created by T. Madas

Created by T. Madas POISSON DISTRIBUTION. Created by T. Madas POISSON DISTRIBUTION STANDARD CALCULATIONS Question 1 Accidents occur on a certain stretch of motorway at the rate of three per month. Find the probability that on a given month there will be a) no accidents.

More information

Business Statistics. Chapter 6 Review of Normal Probability Distribution QMIS 220. Dr. Mohammad Zainal

Business Statistics. Chapter 6 Review of Normal Probability Distribution QMIS 220. Dr. Mohammad Zainal Department of Quantitative Methods & Information Systems Business Statistics Chapter 6 Review of Normal Probability Distribution QMIS 220 Dr. Mohammad Zainal Chapter Goals After completing this chapter,

More information

3.1 Exercises. Amount saved A (dollars) Section 3.1 Linear Models 233

3.1 Exercises. Amount saved A (dollars) Section 3.1 Linear Models 233 Section 3.1 Linear Models 233 3.1 Exercises 1. Jodiah is saving his money to buy a Playstation 3 gaming system. He estimates that he will need $950 to buy the unit itself, accessories, and a few games.

More information

STAT 430/510 Probability Lecture 12: Central Limit Theorem and Exponential Distribution

STAT 430/510 Probability Lecture 12: Central Limit Theorem and Exponential Distribution STAT 430/510 Probability Lecture 12: Central Limit Theorem and Exponential Distribution Pengyuan (Penelope) Wang June 15, 2011 Review Discussed Uniform Distribution and Normal Distribution Normal Approximation

More information

SCIENCE HIGHER LEVEL

SCIENCE HIGHER LEVEL J.37 PRE-JUNIOR CERTIFICATE EXAMINATION, 2014 SCIENCE HIGHER LEVEL TIME: 2 HOURS INSTRUCTIONS 1. Write your name, school s name and teacher s name in the boxes provided on this page. 2. Answer all questions.

More information

Alpha decay usually occurs in heavy nuclei such as uranium or plutonium, and therefore is a major part of the radioactive fallout from a nuclear

Alpha decay usually occurs in heavy nuclei such as uranium or plutonium, and therefore is a major part of the radioactive fallout from a nuclear Radioactive Decay Radioactivity is the spontaneous disintegration of atomic nuclei. This phenomenon was first reported in 1896 by the French physicist Henri Becquerel. Marie Curie and her husband Pierre

More information

Statistical quality control (SQC)

Statistical quality control (SQC) Statistical quality control (SQC) The application of statistical techniques to measure and evaluate the quality of a product, service, or process. Two basic categories: I. Statistical process control (SPC):

More information

Nuclear Energy. Nuclear Structure and Radioactivity

Nuclear Energy. Nuclear Structure and Radioactivity Nuclear Energy Nuclear Structure and Radioactivity I. Review - Periodic Table A. Atomic Number: The number of protons in the nucleus of an atom B. Atomic Mass: The sum of the mass of protons, neutrons

More information

Revision exercises (Chapters 1 to 6)

Revision exercises (Chapters 1 to 6) 197 Revision exercises (Chapters 1 to 6) 1 A car sales company offers buyers a choice, with respect to a particular model, of four colours, three engines and two kinds of transmission. a How many distinguishable

More information

2.810 Homework # 1 Revised Sept 6, 2013

2.810 Homework # 1 Revised Sept 6, 2013 1.1: Understanding Engineering Drawings/Process Plans a) Please explain the feature control frames in the engineering drawing for the connecting link, Fig. 1.1 (attached at back). b) Sketch (hand sketch

More information

Ch Radioactivity. Henry Becquerel, using U-238, discovered the radioactive nature of elements in 1896.

Ch Radioactivity. Henry Becquerel, using U-238, discovered the radioactive nature of elements in 1896. Ch. 10 - Radioactivity Henry Becquerel, using U-238, discovered the radioactive nature of elements in 1896. Radioactivity the process in which an unstable atomic nucleus emits charged particles and energy

More information

Analyzing Radiation. Pre-Lab Exercise Type of Radiation Alpha Particle Beta Particle Gamma Ray. Mass (amu) 4 1/2000 0

Analyzing Radiation. Pre-Lab Exercise Type of Radiation Alpha Particle Beta Particle Gamma Ray. Mass (amu) 4 1/2000 0 Analyzing Radiation Introduction Radiation has always been a natural part of our environment. Radiation on earth comes from many natural sources; the origin of all types of naturally occurring radiation

More information

THE UNITED REPUBLIC OF TANZANIA NATIONAL EXAMINATIONS COUNCIL CERTIFICATE OF SECONDARY EDUCATION EXAMINATION

THE UNITED REPUBLIC OF TANZANIA NATIONAL EXAMINATIONS COUNCIL CERTIFICATE OF SECONDARY EDUCATION EXAMINATION THE UNITED REPUBLIC OF TANZANIA NATIONAL EXAMINATIONS COUNCIL CERTIFICATE OF SECONDARY EDUCATION EXAMINATION 031/1 PHYSICS 1 (For Both School and Private Candidates) TIME: 3 Hours Thursday 16 th October

More information

Light. An Introduction

Light. An Introduction Light An Introduction What is light? Light is a form of energy it can make things move What other form of energy have we dealt with? Heat is also a form of energy Quite often light energy and heat energy

More information

Spectrometers. Materials: Easy Spectrometer. Old CD Razor Index card Cardboard tube at least 10 inches long

Spectrometers. Materials: Easy Spectrometer. Old CD Razor Index card Cardboard tube at least 10 inches long Spectrometers Overview: Spectrometers (spectroscopes) are used in chemistry and astronomy to measure light. In astronomy, we can find out about distant stars without ever traveling to them, because we

More information

Chapter 21 Nuclear Chemistry

Chapter 21 Nuclear Chemistry Free Study Guide for Cracolice Peters Introductory Chemistry: An Active Learning Approach Second Edition www.brookscole.com/chemistry Chapter 21 Nuclear Chemistry Chapter 21 Assignment A: Natural Radioactivity:

More information

ECE-580-DOE : Statistical Process Control and Design of Experiments Steve Brainerd 27 Distributions:

ECE-580-DOE : Statistical Process Control and Design of Experiments Steve Brainerd 27 Distributions: Distributions ECE-580-DOE : Statistical Process Control and Design of Experiments Steve Brainerd 27 Distributions: 1/29/03 Other Distributions Steve Brainerd 1 Distributions ECE-580-DOE : Statistical Process

More information

DISCRETE VARIABLE PROBLEMS ONLY

DISCRETE VARIABLE PROBLEMS ONLY DISCRETE VARIABLE PROBLEMS ONLY. A biased die with four faces is used in a game. A player pays 0 counters to roll the die. The table below shows the possible scores on the die, the probability of each

More information

1. A machine produces packets of sugar. The weights in grams of thirty packets chosen at random are shown below.

1. A machine produces packets of sugar. The weights in grams of thirty packets chosen at random are shown below. No Gdc 1. A machine produces packets of sugar. The weights in grams of thirty packets chosen at random are shown below. Weight (g) 9.6 9.7 9.8 9.9 30.0 30.1 30. 30.3 Frequency 3 4 5 7 5 3 1 Find unbiased

More information

Algebra 1-2 Flexbook Q1 Solutions Chapter 2

Algebra 1-2 Flexbook Q1 Solutions Chapter 2 Chapter 2: Linear Functions Algebra 1-2 Flexbook Q1 Solutions Chapter 2 2.1 Write a Function in Slope-Intercept Form 1. f( 3) = 3; f(0) = 3; f(5) = 13 2. f( 9) = 4; f(0) = 10; f(9) = 16 3. f(x) = 5x 3

More information

PHYSICS ORDINARY LEVEL MONDAY, 17 JUNE MORNING 9.30 TO AN ROINN OIDEACHAIS AGUS EOLAÍOCHTA LEAVING CERTIFICATE EXAMINATION, 2002

PHYSICS ORDINARY LEVEL MONDAY, 17 JUNE MORNING 9.30 TO AN ROINN OIDEACHAIS AGUS EOLAÍOCHTA LEAVING CERTIFICATE EXAMINATION, 2002 M 35 AN ROINN OIDEACHAIS AGUS EOLAÍOCHTA LEAVING CERTIFICATE EXAMINATION, 2002 PHYSICS ORDINARY LEVEL MONDAY, 17 JUNE MORNING 9.30 TO 12.30 Answer three questions from section A and five questions from

More information

Chapter 38. The End of Classical Physics

Chapter 38. The End of Classical Physics Chapter 38. The End of Classical Physics Studies of the light emitted by gas discharge tubes helped bring classical physics to an end. Chapter Goal: To understand how scientists discovered the properties

More information

Estimation of reliability parameters from Experimental data (Parte 2) Prof. Enrico Zio

Estimation of reliability parameters from Experimental data (Parte 2) Prof. Enrico Zio Estimation of reliability parameters from Experimental data (Parte 2) This lecture Life test (t 1,t 2,...,t n ) Estimate θ of f T t θ For example: λ of f T (t)= λe - λt Classical approach (frequentist

More information

Poisson distributions Mixed exercise 2

Poisson distributions Mixed exercise 2 Poisson distributions Mixed exercise 2 1 a Let X be the number of accidents in a one-month period. Assume a Poisson distribution. So X ~Po(0.7) P(X =0)=e 0.7 =0.4966 (4 d.p.) b Let Y be the number of accidents

More information

Radioactivity One of the pieces of evidence for the fact that atoms are made of smaller particles came from the work of Marie Curie

Radioactivity One of the pieces of evidence for the fact that atoms are made of smaller particles came from the work of Marie Curie 1 Nuclear Chemistry Radioactivity 2 One of the pieces of evidence for the fact that atoms are made of smaller particles came from the work of Marie Curie (1876-1934). She discovered radioactivity or radioactive

More information

MATH 3200 PROBABILITY AND STATISTICS M3200FL081.1

MATH 3200 PROBABILITY AND STATISTICS M3200FL081.1 MATH 3200 PROBABILITY AND STATISTICS M3200FL081.1 This examination has twenty problems, of which the first seventeen are modifications of the recommended homework problems. The remaining three problems

More information

Energy, Work, and Simple Machines

Energy, Work, and Simple Machines CHAPTER 3 Energy, Work, and Simple Machines Types of Energy What do you think? Read the two statements below and decide whether you agree or disagree with them. Place an A in the Before column if you agree

More information

MCS Introduction to Probability and Statistics FIRST MIDTERM

MCS Introduction to Probability and Statistics FIRST MIDTERM Department of Mathematics and Computer Sciences 1-11 Spring Semester MCS 4 - Introduction to Probability and Statistics FIRST MIDTERM 1 The following data represents the grades of a group of students:

More information

MATLAB Workbook CME106. Introduction to Probability and Statistics for Engineers. First Edition. Vadim Khayms

MATLAB Workbook CME106. Introduction to Probability and Statistics for Engineers. First Edition. Vadim Khayms MATLAB Workbook CME106 Introduction to Probability and Statistics for Engineers First Edition Vadim Khayms Table of Contents 1. Random Number Generation 2. Probability Distributions 3. Parameter Estimation

More information

NUCLEAR PHYSICS: solutions to higher level questions

NUCLEAR PHYSICS: solutions to higher level questions NUCLEAR PHYSICS: solutions to higher level questions 2015 Question 12 (d) (i) What is meant by the term radioactive? (Spontaneous) disintegration of a nucleus with the emission of radiation (ii) Name a

More information

Scientific Notation. exploration. 1. Complete the table of values for the powers of ten M8N1.j. 110 Holt Mathematics

Scientific Notation. exploration. 1. Complete the table of values for the powers of ten M8N1.j. 110 Holt Mathematics exploration Georgia Performance Standards M8N1.j 1. Complete the table of values for the powers of ten. Exponent 6 10 6 5 10 5 4 10 4 Power 3 10 3 2 10 2 1 1 0 2 1 0.01 10 10 1 10 1 1 1 0 1 1 0.1 10 0

More information

4. The mass of a proton is approximately equal to the mass of A an alpha particle C a positron. B a beta particle D a neutron

4. The mass of a proton is approximately equal to the mass of A an alpha particle C a positron. B a beta particle D a neutron 1. Which particles have approximately the same mass? A an electron and an alpha particle B an electron and a proton C a neutron and an alpha particle D a neutron and a proton 2. Which phrase describes

More information

Based on the work you have completed in S1 to S3, complete Prior Learning 3.1.

Based on the work you have completed in S1 to S3, complete Prior Learning 3.1. 3.2: Metals In this chapter you will learn about the structure of pure metals, alloys and how they react with other substances. You will develop skills in the correct use of the SQA data booklet to create

More information

Calculus. Applications of Differentiations (IV)

Calculus. Applications of Differentiations (IV) Calculus Applications of Differentiations (IV) Outline 1 Rates of Change In Economics And The Sciences Applications of Derivative In Economics Applications of Derivative in the Sciences 2 Related Rate

More information

Math 151. Rumbos Fall Solutions to Review Problems for Final Exam

Math 151. Rumbos Fall Solutions to Review Problems for Final Exam Math 5. Rumbos Fall 7 Solutions to Review Problems for Final Exam. Three cards are in a bag. One card is red on both sides. Another card is white on both sides. The third card is red on one side and white

More information

METEO 431: Atmospheric Thermodynamics

METEO 431: Atmospheric Thermodynamics METEO 431: Atmospheric Thermodynamics Example Test #1 (100 points) INSTRUCTIONS: Please write as legibly as you can and make sure your thoughts are organized. What I am looking for is your understanding

More information

Chapter 1: Whole Numbers

Chapter 1: Whole Numbers Chapter 1: Whole Numbers Prep Test 1. 8. 1 3 6 7 8 9 1 3. a and D; b and E; c and A; d and B; e and F; f and C.. Fifty Go Figure On the first trip, the two children row over. The second trip, one child

More information

PHYS 3650L - Modern Physics Laboratory

PHYS 3650L - Modern Physics Laboratory PHYS 3650L - Modern Physics Laboratory Laboratory Advanced Sheet Photon Attenuation 1. Objectives. The objectives of this laboratory exercise are: a. To measure the mass attenuation coefficient at a gamma

More information

Final Exam for MAT2377 Probability and Statistics for Engineers. Professor : M. Zarepour & G. Lamothe. Name :

Final Exam for MAT2377 Probability and Statistics for Engineers. Professor : M. Zarepour & G. Lamothe. Name : Final Exam for MAT2377 Probability and Statistics for Engineers. Time : 3 hours Professor : M. Zarepour & G. Lamothe Name : Student Number : Calculators are permitted. It is an open book exam. There are

More information

Random Variables Example:

Random Variables Example: Random Variables Example: We roll a fair die 6 times. Suppose we are interested in the number of 5 s in the 6 rolls. Let X = number of 5 s. Then X could be 0, 1, 2, 3, 4, 5, 6. X = 0 corresponds to the

More information

Nuclear Chemistry. Chapter 24

Nuclear Chemistry. Chapter 24 Nuclear Chemistry Chapter 24 Radioactivity Radioisotopes are isotopes that have an unstable nucleus. They emit radiation to attain more stable atomic configurations in a process called radioactive decay.

More information

VISUAL PHYSICS ONLINE EARLY MODELS OF THE ATOM

VISUAL PHYSICS ONLINE EARLY MODELS OF THE ATOM VISUAL PHYSICS ONLINE EARLY MODELS OF THE ATOM The atom was believed to be smallest building block of matter and an indivisible unit, until the late 19 th century. There was no direct evidence that atoms

More information

Carbon Dating. Principles of Radiometric Dating. 03 nuclear decay and the standard model June 05, 2013

Carbon Dating. Principles of Radiometric Dating. 03 nuclear decay and the standard model June 05, 2013 Principles of Radiometric Dating http://facstaff.gpc.edu/~pgore/geology/geo102/radio.htm Naturally occurring radioactive materials break down into other materials at known rates. This is known as radioactive

More information

JUST THE MATHS UNIT NUMBER PROBABILITY 7 (The Poisson distribution) A.J.Hobson

JUST THE MATHS UNIT NUMBER PROBABILITY 7 (The Poisson distribution) A.J.Hobson JUST THE MATHS UNIT NUMBER 19.7 PROBABILITY 7 (The Poisson distribution) by A.J.Hobson 19.7.1 The theory 19.7.2 Exercises 19.7.3 Answers to exercises UNIT 19.7 - PROBABILITY 7 THE POISSON DISTRIBUTION

More information

41.2. Tests Concerning a Single Sample. Introduction. Prerequisites. Learning Outcomes

41.2. Tests Concerning a Single Sample. Introduction. Prerequisites. Learning Outcomes Tests Concerning a Single Sample 41.2 Introduction This Section introduces you to the basic ideas of hypothesis testing in a non-mathematical way by using a problem solving approach to highlight the concepts

More information

3.1 Exercises. Amount saved A (dollars) Section 3.1 Linear Models 233

3.1 Exercises. Amount saved A (dollars) Section 3.1 Linear Models 233 Section 3.1 Linear Models 233 3.1 Exercises 1. Jodiah is saving his money to buy a Playstation 3 gaming system. He estimates that he will need $950 to buy the unit itself, accessories, and a few games.

More information

Energy Background Energy Forms and Transformations Integrated Science 4 Honors Name: Per:

Energy Background Energy Forms and Transformations Integrated Science 4 Honors Name: Per: Energy Background Energy Forms and Transformations Integrated Science 4 Honors Name: Per: Humans use energy for a variety of purposes, some that are necessary and some that are not. To address the questions

More information

VARIATION 3.7. section. Direct Variation Finding the Constant Inverse Variation Joint Variation

VARIATION 3.7. section. Direct Variation Finding the Constant Inverse Variation Joint Variation 19 (3-56) Chapter 3 Linear Equations in Two Variables and Their Graphs Height (feet) a) Find h(35) to the nearest tenth of an inch. 19.1 feet b) Who gains more height from an increase of 1 ft/sec in velocity:

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission

Coimisiún na Scrúduithe Stáit State Examinations Commission Coimisiún na Scrúduithe Stáit State Examinations Commission 2009. M33 LEAVING CERTIFICATE EXAMINATION, 2009 CHEMISTRY - ORDINARY LEVEL TUESDAY, 16 JUNE AFTERNOON 2.00 TO 5.00 400 MARKS Answer eight questions

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

Section 5.6 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the

Section 5.6 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the Section 5.6 from Basic Mathematics Review by Oka Kurniawan was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website. It is used under a Creative Commons

More information