Example for CoinTosses CoinTosses[100, True] HTHTHHHHTHTHHTTTHHTTTTHTTHTHTTTTTTHTTTHTHHHTHHHTTHHTHTTHHT TTTHTTHTHTHTHTHHTHHTHTTTHHHHTTTHHTHTHTTTHT
|
|
|
- Gervais Washington
- 10 years ago
- Views:
Transcription
1 All LOCATION data refer to the following website where programs are stored. An index of the Mathematica programs below is shown at the end of this document. PROGRAM: CoinTosses CALLING SEQUENCE: CoinTosses[n, print PARAMETERS: n - an integer, print - a Boolean variable (True or False) - This program simulates n tosses of a fair coin, and prints the proportion of tosses that come up heads. If print = True, then the outcomes of the tosses (H/T) are also printed. Folder: Chapter 1 File: "CoinTosses.Chpt1.mat" Clear[CoinTosses CoinTosses[n_, print_ := Block[ {headcounter = 0,outputstring = ""}, For[i = 1, i <= n, i++, If[(Random[ <.5), headcounter++; If[print, outputstring = StringInsert[outputstring, "H", i, If[print, outputstring = StringInsert[outputstring, "T", i Print[outputstring Print[" " Print["The proportion of heads in ", n, " tosses is ", N[headcounter/n, 5 Example for CoinTosses CoinTosses[100, True HTHTHHHHTHTHHTTTHHTTTTHTTHTHTTTTTTHTTTHTHHHTHHHTTHHTHTTHHT TTTHTTHTHTHTHTHHTHHTHTTTHHHHTTTHHTHTHTTTHT The proportion of heads in 100 tosses is 0.46
2 PROGRAM: DeMere1 CALLING SEQUENCE: DeMere1[n, print PARAMETERS: n - an integer, print - a Boolean variable (True or False) - This program simulates 4 rolls of a die, and determines whether a six has appeared (a "success"). It repeats this experiment n times, and prints the number of trials that resulted in a success. It also prints the proportion of trials that resulted in a success. Finally, if print = True, then the rolls are printed out. Folder: Chapter 1 File: "DeMere1&2.Chpt1.mat" Clear[DeMere1 DeMere1[n_, print_ := Block[ {successcounter = 0, currentrollset = {} }, For[i = 1, i <= n, i++, currentrollset = {}; For[j = 1, j <= 4, j++, currentrollset = Append[currentrollset, Ceiling[6*Random[ If[print, Print[currentrollset If[Count[currentrollset, 6 > 0, successcounter++ Print["number of successes = ", successcounter Print["proportion of successes = ", N[successcounter/n, 5 Example for DeMere1 DeMere1[1000, False number of successes = 522 proportion of successes = 0.522
3 PROGRAM: DeMere2 CALLING SEQUENCE: DeMere2[n, m, print PARAMETERS: n, m - integers print - a Boolean variable (True or False) - This program simulates m rolls of two dice, and determines whether a double 6 has appeared (a "success"). It repeats this experiment n times, and prints the number of trials that resulted in a success. It also prints the proportion of trials that resulted in a success. Finally, if print = True, then the rolls are printed out. LOCAT ION: Folder: Chapter 1 File: "DeMere1&2.Chpt1.mat" Clear[DeMere2 DeMere2[n_, m_, print_ := Block[{successcounter = 0, currentrollset = {} }, For[i = 1, i <= n, i++, currentrollset = {}; For[j = 1, j <= m, j++, currentrollset = Append[currentrollset, {Ceiling[6*Random[, Ceiling[6*Random[ } If[print, Print[currentrollset If[Count[currentrollset, {6, 6} > 0, successcounter++ Print["number of successes = ", successcounter Print["proportion of successes = ", N[successcounter/n, 5 Example for DeMere2 DeMere2[1000, 24, False number of successes = 475 proportion of successes = 0.475
4 PROGRAM: RandomNumbers CALLING SEQUENCE: RandomNumbers[n PARAMETERS: n - an integer - This program generates and displays n random real numbers between 0 and 1. Folder: Chapter 1 File: "RandomNumbers.Chpt1.mat" Clear[RandomNumbers RandomNumbers[n_ := Do[Print[Random[, {n} Example for RandomNumbers RandomNumbers[ PROGRAM: SpikegraphWithDots CALLING SEQUENCE: SpikegraphWithDots[distributionlist, xmin, xmax, color, print PARAMETERS: distributionlist - a distribution list xmin, xmax - real numbers color - a list of 3 color-specification real numbers print - a Boolean variable (True or False) - This program displays a graph of the distribution of x (where x has the distribution given in distributionlist) by drawing a spike of height p(x) at each x, and topping that spike with a dot of color color. If print = True, this graph is displayed. Otherwise, the display is (for the time being) suppressed. (If the graph has been suppressed, to see it at a later time type "Show[%#, DisplayFunction -> $DisplayFunction", where # is the input number of the original call to SpikegraphWithDots.) The input distribution list is assumed to be in increasing order of the x-values. Important note: only values of x which fall in the user-defined interval [xmin, xmax will be included in the graph. If not all values of x are included, and print = True, a warning is displayed. If print = False, no such warning will be given, even if the graph is later displayed.
5 File: "Important Programs" Clear[SpikegraphWithDots SpikegraphWithDots[distributionlist_, xmin_, xmax_, color_, print_ := Block[{num = Length[distributionlist, j, k, linelist }, linelist = Table[Line[{distributionlist[[i, {distributionlist[[i[[1, 0}}, {i, 1, num} pointlist = Table[Point[distributionlist[[i, {i, 1, num} j = 1; While[distributionlist[[j[[1 < xmin, linelist = Drop[linelist, 1 pointlist = Drop[pointlist, 1 j++ k = num; While[distributionlist[[k[[1 > xmax, linelist = Drop[linelist, -1 pointlist = Drop[pointlist, -1 k-- finallist = Join[linelist, pointlist If[print, If[((distributionlist[[1[[1 < xmin) (distributionlist[[num[[1 > xmax)), Print["Note: some outcome values lie outside the user-defined interval." Show[Graphics[linelist, Graphics[{PointSize[.02, RGBColor[color[[1, color[[2, color[[3, pointlist}, PlotRange -> All, Frame -> True, Show[Graphics[linelist, Graphics[{PointSize[.02,
6 color[[3, RGBColor[color[[1, color[[2, pointlist}, DisplayFunction->Identity, PlotRange -> All, Frame -> True PROGRAM: SimulateDiscreteVariable CALLING SEQUENCE: SimulateDiscreteVariable[plist PARAMETERS: plist - a probability list - This program simulates an experiment which has outcomes x_1, x_2,..., x_(length[plist) with probabilities plist[[1, plist[[2,..., plist[[length[plist, respectively. The program returns i, where x_i is the outcome of the experiment. - i, where x_i is the outcome of the experiment File: "Important Programs" Clear[SimulateDiscreteVariable SimulateDiscreteVariable[plist_ := Block[{r, j = 1, subtotal = 0}, r = Random[ While[subtotal <= r, subtotal = subtotal + plist[[j j++ Return[j - 1 PROGRAM: GeneralSimulation CALLING SEQUENCE: GeneralSimulation[n, plist, m, print PARAMETERS: n, m integers, plist - a probability list print - a Boolean variable (True or False) - This program simulates a general experiment in which the outcomes 1, 2,..., n occur with probabilities p(1), p(2),..., p(n). These probabilities are entered as a list in plist. The experiment is repeated m times, and the observed frequencies of the outcomes are printed. In addition, spike graphs of the observed data frequencies and plist data frequencies are displayed on the same set of axes;
7 the observed data spikes are topped with blue dots, and the plist data spikes are topped with red. If print = True, the outcomes are printed. Finally, the program returns a list of the n observed frequencies. - Note: this program requires the programs "SimulateDiscreteVariable[plist" and "SpikegraphWithDots[distributionlist, xmin, xmax, color, print" be initialized. - a list of the n observed frequencies Folder: Chapter 1 File: "GeneralSimulation.Chpt1.mat" Clear[GeneralSimulation GeneralSimulation[n_, plist_, m_, print_ := Block[{x, observedfreqlist = Table[0, {j, 1, n}, j, subtotal, alist, blist }, For[i = 1, i <= m, i++, w = SimulateDiscreteVariable[plist observedfreqlist[[w++; If[print, Print[w Print[" " Print["Outcome p(k) p*(k)" Print[" " For[k = 1, k <= n, k++, Print[k, " ", plist[[k, " ", N[observedfreqlist[[k/m, 5 alist = Table[{i, N[observedfreqlist[[i/m, 5}, {i, 1, Length[observedfreqlist} blist = Table[{i, plist[[i}, {i, 1, Length[plist} g1 = SpikegraphWithDots[alist, 1, Length[alist, {0.170, 0.110, 1.000}, False g2 = SpikegraphWithDots[blist, 1, Length[blist, {1.000, 0.030, 0.049}, False Show[g1, g2, DisplayFunction -> $DisplayFunction Return[N[observedfreqlist/m, 5
8 Example for GeneralSimulation GeneralSimulation[7, {.2,.1,.05,.27,.11,.19,.08}, 1000, False Outcome p(k) p*(k) PROGRAM: MonteCarlo CALLING SEQUENCE: contecarlo[n, f, xmin, xmax, ymax PARAMETERS: n - an integer f - the name of a pre-defined function of one variable xmin, xmax, ymax - real numbers - This program estimates the area under the input function f[x and above the interval [xmin, xmax by choosing n random points in the rectangle above the interval [xmin, xmax and between the y-values 0 and ymax. The function f[x is
9 assumed to be non-negative on the interval [xmin, xmax, and is assumed to have a maximum value which does not exceed ymax. (Note: it is not necessary that the maximum value of f[x = ymax.) The program returns its area estimate, and also plots the random points and the function f[x on the interval [xmin, xmax. - Keep in mind that the function f[x should be defined before this program is called, and then the name of the function, namely f (or some other name, like Cos) should be given to this program. The expression for the function (such as x^2, for example) should not be given as a parameter. Folder: Chapter 2 File: "MonteCarlo.Chpt2.mat" Clear[montecarlo montecarlo[n_, f_, xmin_, xmax_, ymax_ := Block[{boxarea = ymax*(xmax - xmin), (* Because of a bug in the Mathematica function Random, we must first take numerical approximations to the input values xmin, xmax, and ymax. *) nymax = N[ymax, nxmax = N[xmax, nxmin = N[xmin, count = 0, randpoint, pointlist = {} }, For[i = 1, i <= n, i++, randpoint = {Random[Real, {nxmin, nxmax}, Random[Real, {0, nymax} }; pointlist = Append[pointlist, randpoint If[(randpoint[[2 <= f[randpoint[[1), count++ Print[(count/n)*ymax*(xmax - xmin)//n (* In the following command, the first two graphics calls are given the option DisplayFunction -> Identity so that they are not plotted on the screen. Then the Show command is given the two plots with the DisplayFunction option set back to the default value. This results in
10 only one graph being shown on the screen, rather than three.*) Show[{Plot[f[x, {x, xmin, xmax}, DisplayFunction -> Identity, ListPlot[pointlist, DisplayFunction -> Identity }, DisplayFunction -> $DisplayFunction, AspectRatio -> 1 Example for Montecarlo. Clear[f f[x_ := x^2 montecarlo[100, f, 0, 1, Index of above programs: CoinTosses --Generates a sequence of H s and T s and tells the percentage of H s DeMere1 generates sample fraction of wins for de Mere s first game DeMere2 --generates sample fraction of wins for de Mere s second game RandomNumbers generates a sample of random numbers from (0,1) SpikegraphWithDots --subroutine SimulateDiscreteVariable --subroutine GeneralSimulation --generates a sample from a specified discrete distribution requires initialization of subroutines SimulateDiscreteVariable and SpikegraphWithDots. Montecarlo estimates area under a curve inside a rectangle
4.1 4.2 Probability Distribution for Discrete Random Variables
4.1 4.2 Probability Distribution for Discrete Random Variables Key concepts: discrete random variable, probability distribution, expected value, variance, and standard deviation of a discrete random variable.
Chapter 4 Lecture Notes
Chapter 4 Lecture Notes Random Variables October 27, 2015 1 Section 4.1 Random Variables A random variable is typically a real-valued function defined on the sample space of some experiment. For instance,
AMS 5 CHANCE VARIABILITY
AMS 5 CHANCE VARIABILITY The Law of Averages When tossing a fair coin the chances of tails and heads are the same: 50% and 50%. So if the coin is tossed a large number of times, the number of heads and
Probability: The Study of Randomness Randomness and Probability Models. IPS Chapters 4 Sections 4.1 4.2
Probability: The Study of Randomness Randomness and Probability Models IPS Chapters 4 Sections 4.1 4.2 Chapter 4 Overview Key Concepts Random Experiment/Process Sample Space Events Probability Models Probability
Programming Your Calculator Casio fx-7400g PLUS
Programming Your Calculator Casio fx-7400g PLUS Barry Kissane Programming Your Calculator: Casio fx-7400g PLUS Published by Shriro Australia Pty Limited 72-74 Gibbes Street, Chatswood NSW 2067, Australia
MA 1125 Lecture 14 - Expected Values. Friday, February 28, 2014. Objectives: Introduce expected values.
MA 5 Lecture 4 - Expected Values Friday, February 2, 24. Objectives: Introduce expected values.. Means, Variances, and Standard Deviations of Probability Distributions Two classes ago, we computed the
Random Variables. Chapter 2. Random Variables 1
Random Variables Chapter 2 Random Variables 1 Roulette and Random Variables A Roulette wheel has 38 pockets. 18 of them are red and 18 are black; these are numbered from 1 to 36. The two remaining pockets
Random variables P(X = 3) = P(X = 3) = 1 8, P(X = 1) = P(X = 1) = 3 8.
Random variables Remark on Notations 1. When X is a number chosen uniformly from a data set, What I call P(X = k) is called Freq[k, X] in the courseware. 2. When X is a random variable, what I call F ()
Pre-Calculus Graphing Calculator Handbook
Pre-Calculus Graphing Calculator Handbook I. Graphing Functions A. Button for Functions This button is used to enter any function to be graphed. You can enter up to 10 different functions at a time. Use
Statistics and Random Variables. Math 425 Introduction to Probability Lecture 14. Finite valued Random Variables. Expectation defined
Expectation Statistics and Random Variables Math 425 Introduction to Probability Lecture 4 Kenneth Harris [email protected] Department of Mathematics University of Michigan February 9, 2009 When a large
36 Odds, Expected Value, and Conditional Probability
36 Odds, Expected Value, and Conditional Probability What s the difference between probabilities and odds? To answer this question, let s consider a game that involves rolling a die. If one gets the face
Probability and Statistics Vocabulary List (Definitions for Middle School Teachers)
Probability and Statistics Vocabulary List (Definitions for Middle School Teachers) B Bar graph a diagram representing the frequency distribution for nominal or discrete data. It consists of a sequence
Joint Exam 1/P Sample Exam 1
Joint Exam 1/P Sample Exam 1 Take this practice exam under strict exam conditions: Set a timer for 3 hours; Do not stop the timer for restroom breaks; Do not look at your notes. If you believe a question
In the Herb Business, Part III Factoring and Quadratic Equations
74 In the Herb Business, Part III Factoring and Quadratic Equations In the herbal medicine business, you and your partner sold 120 bottles of your best herbal medicine each week when you sold at your original
13.0 Central Limit Theorem
13.0 Central Limit Theorem Discuss Midterm/Answer Questions Box Models Expected Value and Standard Error Central Limit Theorem 1 13.1 Box Models A Box Model describes a process in terms of making repeated
Section 6.2 Definition of Probability
Section 6.2 Definition of Probability Probability is a measure of the likelihood that an event occurs. For example, if there is a 20% chance of rain tomorrow, that means that the probability that it will
Sums of Independent Random Variables
Chapter 7 Sums of Independent Random Variables 7.1 Sums of Discrete Random Variables In this chapter we turn to the important question of determining the distribution of a sum of independent random variables
Stat 20: Intro to Probability and Statistics
Stat 20: Intro to Probability and Statistics Lecture 16: More Box Models Tessa L. Childers-Day UC Berkeley 22 July 2014 By the end of this lecture... You will be able to: Determine what we expect the sum
Law of Large Numbers. Alexandra Barbato and Craig O Connell. Honors 391A Mathematical Gems Jenia Tevelev
Law of Large Numbers Alexandra Barbato and Craig O Connell Honors 391A Mathematical Gems Jenia Tevelev Jacob Bernoulli Life of Jacob Bernoulli Born into a family of important citizens in Basel, Switzerland
How Does My TI-84 Do That
How Does My TI-84 Do That A guide to using the TI-84 for statistics Austin Peay State University Clarksville, Tennessee How Does My TI-84 Do That A guide to using the TI-84 for statistics Table of Contents
Statistics and Probability
Statistics and Probability TABLE OF CONTENTS 1 Posing Questions and Gathering Data. 2 2 Representing Data. 7 3 Interpreting and Evaluating Data 13 4 Exploring Probability..17 5 Games of Chance 20 6 Ideas
The degree of a polynomial function is equal to the highest exponent found on the independent variables.
DETAILED SOLUTIONS AND CONCEPTS - POLYNOMIAL FUNCTIONS Prepared by Ingrid Stewart, Ph.D., College of Southern Nevada Please Send Questions and Comments to [email protected]. Thank you! PLEASE NOTE
Session 8 Probability
Key Terms for This Session Session 8 Probability Previously Introduced frequency New in This Session binomial experiment binomial probability model experimental probability mathematical probability outcome
In the situations that we will encounter, we may generally calculate the probability of an event
What does it mean for something to be random? An event is called random if the process which produces the outcome is sufficiently complicated that we are unable to predict the precise result and are instead
Concepts of Probability
Concepts of Probability Trial question: we are given a die. How can we determine the probability that any given throw results in a six? Try doing many tosses: Plot cumulative proportion of sixes Also look
Contemporary Mathematics Online Math 1030 Sample Exam I Chapters 12-14 No Time Limit No Scratch Paper Calculator Allowed: Scientific
Contemporary Mathematics Online Math 1030 Sample Exam I Chapters 12-14 No Time Limit No Scratch Paper Calculator Allowed: Scientific Name: The point value of each problem is in the left-hand margin. You
Getting to know your TI-83
Calculator Activity Intro Getting to know your TI-83 Press ON to begin using calculator.to stop, press 2 nd ON. To darken the screen, press 2 nd alternately. To lighten the screen, press nd 2 alternately.
Algebra 2 C Chapter 12 Probability and Statistics
Algebra 2 C Chapter 12 Probability and Statistics Section 3 Probability fraction Probability is the ratio that measures the chances of the event occurring For example a coin toss only has 2 equally likely
The normal approximation to the binomial
The normal approximation to the binomial The binomial probability function is not useful for calculating probabilities when the number of trials n is large, as it involves multiplying a potentially very
Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200
CHAPTER 1 Note 1A Reentry Calculator Notes for the TI-89, TI-92 Plus, and Voyage 200 If you want to do further calculation on a result you ve just found, and that result is the first number in the expression
Lesson 3 Using the Sine Function to Model Periodic Graphs
Lesson 3 Using the Sine Function to Model Periodic Graphs Objectives After completing this lesson you should 1. Know that the sine function is one of a family of functions which is used to model periodic
MATH 140 Lab 4: Probability and the Standard Normal Distribution
MATH 140 Lab 4: Probability and the Standard Normal Distribution Problem 1. Flipping a Coin Problem In this problem, we want to simualte the process of flipping a fair coin 1000 times. Note that the outcomes
Math 58. Rumbos Fall 2008 1. Solutions to Review Problems for Exam 2
Math 58. Rumbos Fall 2008 1 Solutions to Review Problems for Exam 2 1. For each of the following scenarios, determine whether the binomial distribution is the appropriate distribution for the random variable
Simple Programming in MATLAB. Plotting a graph using MATLAB involves three steps:
Simple Programming in MATLAB Plotting Graphs: We will plot the graph of the function y = f(x) = e 1.5x sin(8πx), 0 x 1 Plotting a graph using MATLAB involves three steps: Create points 0 = x 1 < x 2
Estimating the Average Value of a Function
Estimating the Average Value of a Function Problem: Determine the average value of the function f(x) over the interval [a, b]. Strategy: Choose sample points a = x 0 < x 1 < x 2 < < x n 1 < x n = b and
How To Find The Sample Space Of A Random Experiment In R (Programming)
Probability 4.1 Sample Spaces For a random experiment E, the set of all possible outcomes of E is called the sample space and is denoted by the letter S. For the coin-toss experiment, S would be the results
What is the Probability of Pigging Out
What is the Probability of Pigging Out Mary Richardson Susan Haller Grand Valley State University St. Cloud State University [email protected] [email protected] Published: April 2012 Overview of
Mathematical goals. Starting points. Materials required. Time needed
Level S2 of challenge: B/C S2 Mathematical goals Starting points Materials required Time needed Evaluating probability statements To help learners to: discuss and clarify some common misconceptions about
Stat405. Simulation. Hadley Wickham. Thursday, September 20, 12
Stat405 Simulation Hadley Wickham 1. For loops 2. Hypothesis testing 3. Simulation For loops # Common pattern: create object for output, # then fill with results cuts
Data Visualization. Christopher Simpkins [email protected]
Data Visualization Christopher Simpkins [email protected] Data Visualization Data visualization is an activity in the exploratory data analysis process in which we try to figure out what story
Important Probability Distributions OPRE 6301
Important Probability Distributions OPRE 6301 Important Distributions... Certain probability distributions occur with such regularity in real-life applications that they have been given their own names.
2+2 Just type and press enter and the answer comes up ans = 4
Demonstration Red text = commands entered in the command window Black text = Matlab responses Blue text = comments 2+2 Just type and press enter and the answer comes up 4 sin(4)^2.5728 The elementary functions
Guide for Texas Instruments TI-83, TI-83 Plus, or TI-84 Plus Graphing Calculator
Guide for Texas Instruments TI-83, TI-83 Plus, or TI-84 Plus Graphing Calculator This Guide is designed to offer step-by-step instruction for using your TI-83, TI-83 Plus, or TI-84 Plus graphing calculator
Section 6-5 Sample Spaces and Probability
492 6 SEQUENCES, SERIES, AND PROBABILITY 52. How many committees of 4 people are possible from a group of 9 people if (A) There are no restrictions? (B) Both Juan and Mary must be on the committee? (C)
Variable: characteristic that varies from one individual to another in the population
Goals: Recognize variables as: Qualitative or Quantitative Discrete Continuous Study Ch. 2.1, # 1 13 : Prof. G. Battaly, Westchester Community College, NY Study Ch. 2.1, # 1 13 Variable: characteristic
Basic Probability. Probability: The part of Mathematics devoted to quantify uncertainty
AMS 5 PROBABILITY Basic Probability Probability: The part of Mathematics devoted to quantify uncertainty Frequency Theory Bayesian Theory Game: Playing Backgammon. The chance of getting (6,6) is 1/36.
STAT 35A HW2 Solutions
STAT 35A HW2 Solutions http://www.stat.ucla.edu/~dinov/courses_students.dir/09/spring/stat35.dir 1. A computer consulting firm presently has bids out on three projects. Let A i = { awarded project i },
APPLYING PRE-CALCULUS/CALCULUS SHARP EL-9600. Graphing Calculator DAVID P. LAWRENCE
APPLYING PRE-CALCULUS/CALCULUS SHARP U S I N G T H E EL-9600 Graphing Calculator DAVID P. LAWRENCE Applying PRE-CALCULUS/CALCULUS using the SHARP EL-9600 GRAPHING CALCULATOR David P. Lawrence Southwestern
Remarks on the Concept of Probability
5. Probability A. Introduction B. Basic Concepts C. Permutations and Combinations D. Poisson Distribution E. Multinomial Distribution F. Hypergeometric Distribution G. Base Rates H. Exercises Probability
Lab 11. Simulations. The Concept
Lab 11 Simulations In this lab you ll learn how to create simulations to provide approximate answers to probability questions. We ll make use of a particular kind of structure, called a box model, that
Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay
Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 17 Shannon-Fano-Elias Coding and Introduction to Arithmetic Coding
Math Tools Cell Phone Plans
NATIONAL PARTNERSHIP FOR QUALITY AFTERSCHOOL LEARNING www.sedl.org/afterschool/toolkits Math Tools Cell Phone Plans..............................................................................................
ST 371 (IV): Discrete Random Variables
ST 371 (IV): Discrete Random Variables 1 Random Variables A random variable (rv) is a function that is defined on the sample space of the experiment and that assigns a numerical variable to each possible
MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.
Ch. 4 Discrete Probability Distributions 4.1 Probability Distributions 1 Decide if a Random Variable is Discrete or Continuous 1) State whether the variable is discrete or continuous. The number of cups
Chapter 6. 1. What is the probability that a card chosen from an ordinary deck of 52 cards is an ace? Ans: 4/52.
Chapter 6 1. What is the probability that a card chosen from an ordinary deck of 52 cards is an ace? 4/52. 2. What is the probability that a randomly selected integer chosen from the first 100 positive
Diagrams and Graphs of Statistical Data
Diagrams and Graphs of Statistical Data One of the most effective and interesting alternative way in which a statistical data may be presented is through diagrams and graphs. There are several ways in
Unit 19: Probability Models
Unit 19: Probability Models Summary of Video Probability is the language of uncertainty. Using statistics, we can better predict the outcomes of random phenomena over the long term from the very complex,
Statistics Chapter 2
Statistics Chapter 2 Frequency Tables A frequency table organizes quantitative data. partitions data into classes (intervals). shows how many data values are in each class. Test Score Number of Students
Definition: A vector is a directed line segment that has and. Each vector has an initial point and a terminal point.
6.1 Vectors in the Plane PreCalculus 6.1 VECTORS IN THE PLANE Learning Targets: 1. Find the component form and the magnitude of a vector.. Perform addition and scalar multiplication of two vectors. 3.
The Normal Approximation to Probability Histograms. Dice: Throw a single die twice. The Probability Histogram: Area = Probability. Where are we going?
The Normal Approximation to Probability Histograms Where are we going? Probability histograms The normal approximation to binomial histograms The normal approximation to probability histograms of sums
http://school-maths.com Gerrit Stols
For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It
7 CONTINUOUS PROBABILITY DISTRIBUTIONS
7 CONTINUOUS PROBABILITY DISTRIBUTIONS Chapter 7 Continuous Probability Distributions Objectives After studying this chapter you should understand the use of continuous probability distributions and the
RUTHERFORD HIGH SCHOOL Rutherford, New Jersey COURSE OUTLINE STATISTICS AND PROBABILITY
RUTHERFORD HIGH SCHOOL Rutherford, New Jersey COURSE OUTLINE STATISTICS AND PROBABILITY I. INTRODUCTION According to the Common Core Standards (2010), Decisions or predictions are often based on data numbers
Probability and statistical hypothesis testing. Holger Diessel [email protected]
Probability and statistical hypothesis testing Holger Diessel [email protected] Probability Two reasons why probability is important for the analysis of linguistic data: Joint and conditional
Ch. 13.3: More about Probability
Ch. 13.3: More about Probability Complementary Probabilities Given any event, E, of some sample space, U, of a random experiment, we can always talk about the complement, E, of that event: this is the
Probability. Sample space: all the possible outcomes of a probability experiment, i.e., the population of outcomes
Probability Basic Concepts: Probability experiment: process that leads to welldefined results, called outcomes Outcome: result of a single trial of a probability experiment (a datum) Sample space: all
COMMON CORE STATE STANDARDS FOR
COMMON CORE STATE STANDARDS FOR Mathematics (CCSSM) High School Statistics and Probability Mathematics High School Statistics and Probability Decisions or predictions are often based on data numbers in
Introductory Handbook for the TI-89 Titanium
Introductory Handbook for the TI-89 Titanium Note: This handbook will, for the most part, work for the standard TI-89 as well. The color-coding used on the TI-89 differs from the color-coding used on the
The sample space for a pair of die rolls is the set. The sample space for a random number between 0 and 1 is the interval [0, 1].
Probability Theory Probability Spaces and Events Consider a random experiment with several possible outcomes. For example, we might roll a pair of dice, flip a coin three times, or choose a random real
Contemporary Mathematics- MAT 130. Probability. a) What is the probability of obtaining a number less than 4?
Contemporary Mathematics- MAT 30 Solve the following problems:. A fair die is tossed. What is the probability of obtaining a number less than 4? What is the probability of obtaining a number less than
Probability, statistics and football Franka Miriam Bru ckler Paris, 2015.
Probability, statistics and football Franka Miriam Bru ckler Paris, 2015 Please read this before starting! Although each activity can be performed by one person only, it is suggested that you work in groups
Introduction to the Graphing Calculator
Unit 0 Introduction to the Graphing Calculator Intermediate Algebra Update 2/06/06 Unit 0 Activity 1: Introduction to Computation on a Graphing Calculator Why: As technology becomes integrated into all
arxiv:1112.0829v1 [math.pr] 5 Dec 2011
How Not to Win a Million Dollars: A Counterexample to a Conjecture of L. Breiman Thomas P. Hayes arxiv:1112.0829v1 [math.pr] 5 Dec 2011 Abstract Consider a gambling game in which we are allowed to repeatedly
Decimals and Percentages
Decimals and Percentages Specimen Worksheets for Selected Aspects Paul Harling b recognise the number relationship between coordinates in the first quadrant of related points Key Stage 2 (AT2) on a line
Normal distribution. ) 2 /2σ. 2π σ
Normal distribution The normal distribution is the most widely known and used of all distributions. Because the normal distribution approximates many natural phenomena so well, it has developed into a
Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit?
ECS20 Discrete Mathematics Quarter: Spring 2007 Instructor: John Steinberger Assistant: Sophie Engle (prepared by Sophie Engle) Homework 8 Hints Due Wednesday June 6 th 2007 Section 6.1 #16 What is the
The mathematical branch of probability has its
ACTIVITIES for students Matthew A. Carlton and Mary V. Mortlock Teaching Probability and Statistics through Game Shows The mathematical branch of probability has its origins in games and gambling. And
Example: Find the expected value of the random variable X. X 2 4 6 7 P(X) 0.3 0.2 0.1 0.4
MATH 110 Test Three Outline of Test Material EXPECTED VALUE (8.5) Super easy ones (when the PDF is already given to you as a table and all you need to do is multiply down the columns and add across) Example:
TEACHING ADULTS TO REASON STATISTICALLY
TEACHING ADULTS TO REASON STATISTICALLY USING THE LEARNING PROGRESSIONS T H E N AT U R E O F L E A R N I N G Mā te mōhio ka ora: mā te ora ka mōhio Through learning there is life: through life there is
Visualization of missing values using the R-package VIM
Institut f. Statistik u. Wahrscheinlichkeitstheorie 040 Wien, Wiedner Hauptstr. 8-0/07 AUSTRIA http://www.statistik.tuwien.ac.at Visualization of missing values using the R-package VIM M. Templ and P.
Common Core Unit Summary Grades 6 to 8
Common Core Unit Summary Grades 6 to 8 Grade 8: Unit 1: Congruence and Similarity- 8G1-8G5 rotations reflections and translations,( RRT=congruence) understand congruence of 2 d figures after RRT Dilations
Notes on Continuous Random Variables
Notes on Continuous Random Variables Continuous random variables are random quantities that are measured on a continuous scale. They can usually take on any value over some interval, which distinguishes
Chapter 5. Discrete Probability Distributions
Chapter 5. Discrete Probability Distributions Chapter Problem: Did Mendel s result from plant hybridization experiments contradicts his theory? 1. Mendel s theory says that when there are two inheritable
Tutorial for Tracker and Supporting Software By David Chandler
Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save
Solutions to Homework 6 Statistics 302 Professor Larget
s to Homework 6 Statistics 302 Professor Larget Textbook Exercises 5.29 (Graded for Completeness) What Proportion Have College Degrees? According to the US Census Bureau, about 27.5% of US adults over
Thursday, November 13: 6.1 Discrete Random Variables
Thursday, November 13: 6.1 Discrete Random Variables Read 347 350 What is a random variable? Give some examples. What is a probability distribution? What is a discrete random variable? Give some examples.
VISUALIZATION OF DENSITY FUNCTIONS WITH GEOGEBRA
VISUALIZATION OF DENSITY FUNCTIONS WITH GEOGEBRA Csilla Csendes University of Miskolc, Hungary Department of Applied Mathematics ICAM 2010 Probability density functions A random variable X has density
V. RANDOM VARIABLES, PROBABILITY DISTRIBUTIONS, EXPECTED VALUE
V. RANDOM VARIABLES, PROBABILITY DISTRIBUTIONS, EXPETED VALUE A game of chance featured at an amusement park is played as follows: You pay $ to play. A penny and a nickel are flipped. You win $ if either
Probability Using Dice
Using Dice One Page Overview By Robert B. Brown, The Ohio State University Topics: Levels:, Statistics Grades 5 8 Problem: What are the probabilities of rolling various sums with two dice? How can you
Unit 7 Quadratic Relations of the Form y = ax 2 + bx + c
Unit 7 Quadratic Relations of the Form y = ax 2 + bx + c Lesson Outline BIG PICTURE Students will: manipulate algebraic expressions, as needed to understand quadratic relations; identify characteristics
0 Introduction to Data Analysis Using an Excel Spreadsheet
Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do
In addition to looking for applications that can be profitably examined algebraically,
The mathematics of stopping your car Eric Wood National Institute of Education, Singapore In addition to looking for applications that can be profitably examined algebraically, numerically
E3: PROBABILITY AND STATISTICS lecture notes
E3: PROBABILITY AND STATISTICS lecture notes 2 Contents 1 PROBABILITY THEORY 7 1.1 Experiments and random events............................ 7 1.2 Certain event. Impossible event............................
6 Scalar, Stochastic, Discrete Dynamic Systems
47 6 Scalar, Stochastic, Discrete Dynamic Systems Consider modeling a population of sand-hill cranes in year n by the first-order, deterministic recurrence equation y(n + 1) = Ry(n) where R = 1 + r = 1
R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol
R Graphics Cookbook Winston Chang Beijing Cambridge Farnham Koln Sebastopol O'REILLY Tokyo Table of Contents Preface ix 1. R Basics 1 1.1. Installing a Package 1 1.2. Loading a Package 2 1.3. Loading a
Hoover High School Math League. Counting and Probability
Hoover High School Math League Counting and Probability Problems. At a sandwich shop there are 2 kinds of bread, 5 kinds of cold cuts, 3 kinds of cheese, and 2 kinds of dressing. How many different sandwiches
University of California, Los Angeles Department of Statistics. Random variables
University of California, Los Angeles Department of Statistics Statistics Instructor: Nicolas Christou Random variables Discrete random variables. Continuous random variables. Discrete random variables.
AP Stats - Probability Review
AP Stats - Probability Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. I toss a penny and observe whether it lands heads up or tails up. Suppose
