Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 1 1 pts Part I. Relative Frequency Suppose a random experiment is repeated many times, for example, a fair coin is ipped 1000 times.

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed
Question 1 1 pts Part I. Relative Frequency Suppose a random experiment is repeated many times, for example, a fair coin is ipped 1000 times. The outcome from a single ip of the coin is either Heads or Tails. If we repeat the experiment, the number of times each outcome is observed, i.e., the number of Heads and the number of Tails, is called the frequency of that outcome. The relative frequency of an outcome is the proportion of times that outcome is observed. For example, the relative frequency of Heads is the frequency of heads divided by the total number of ips (this was the fraction that we computed in class in the quarter flipping experiment last Thursday). By the Law of Large Numbers, as the number of repetitions of an experiment increases, the relative frequency of each outcome approaches the probability of that outcome. In this lab you will use computer simulation to nd the relative frequency of an outcome and to show how, as the number of repetitions of the experiment increases, the relative frequency stabilizes to a number between 0 and 1. Since we have already demonstrated coin ips. let's look at a scenario of rolling a die and our outcome of interest [event of interest) is rolling a 6. In order to do this in RStudio, we need to specify the sample space and the probability associated with each outcome. Question #1 What is the sample space, S, of rolling a regular 6-sided die? Note: In your solution separate each number with a comma. [1, 2, 3, 4, 5, 6} O {(1,1),{1,2},...,{6,5),{6,6}} O [1. 2} O {2.3.4,5,6,7,8.9.10,11,12} Question 16 1 pts Part III. Random Variables and Probability Distributions In Part l we looked at the scenario of rolling a fair six-sided die. Let X be the random variable representing outcome of rolling that die. Question #16 Is the random variable discrete or continuous? Question 17 0 pts Question #17 Fill in the table to obtain the Probability Distribution: Specifically provide the values that X can take on and the corresponding probabilities. X =x P(X =x) Upload Choose a FileQuestion 18 1.5 pts Question #13 Compute the Expected Value of X. Note: Round your answer to one decimal place. Question 19 1.5 pts Question #19 Compute the standard deviation of X. Note: Round your answer to two decimals. Question 20 1 pts Question #20 What is the probability of rolling a value higher than 1 but less than 4? Note: Provide you answer in unreduced fraction. Question 2 Question #2 What is the probability [in fraction form) associated with each outcome? 1/6,1/6,1l6.1f6,1f6,1/6 Question 3 1.5 pts In RSudio, specify your sample space in a vector and create a corresponding vector of the associated probabilities: > S = c(1, 2, 3, 4, 5, 6) > Prob = c(1/6, 1/6, 1/6, 1/6, 1/6, 1/6) Now, let's simulate rolling the die 10 times by randomly sampling a value of the sample space with probability specified in our probability vector: > Roll.10 = sample(x = S, size = 10, prob = Prob, replace = TRUE) ##note that by setting replace equal to TRUE, this replaces the value we just sampled, thus making each experiment repetition INDEPENDENT. > Roll.10 Question #3 How would you calculate the relative frequency of the number 6 in your "Roll.10" vector? O Count the number of 6's and divide by 10 O Count the number of 6's and divide by the sum of the 10 rolls O Add the number of 6's together and divide by the sum of the 10 rolls O No answer text provided.Question 4 Question #4 What proportion of the number of 6 would you expect? Question 5 0 pts We want to observe the law of large numbers taking effect by increasing the number of times we \"roll the die\". Redo your simulation for each of the following number of rolls (note this just requires you to change the size in the previous RStudio code}: 10, 100, 1000, 10000, 100000. To make your life easy, let's use the countU function to give us the total number of 6's in each simulation {unless you want to count the number of 6's by hand...which I would not recommend}. This function is in a special library that we have to install and load. Enter the following commands in RStudio: > installpackagesl'plyr') > librarytplyr} > counthollJO) #should pop- up a frequency table in RStudio giving you directly the number of 6's out of 10 rolls. Question #5 Fill in table below with your results: You may simply list your proportions in the order of the rows in your answer. Upload Choosea File l Question 6 1.5 pts Question #6 As the number of rolls increases from 10 to 100000, describe what happens to the relative frequency of the occurrence of observing a 6. O Converges to 1/6 O Diverges from 1/6 O Nothing changes Question 7 1 pts Question #7 If you were to look at someone else's simulation, would you expect the results for 10 flips to be about the same as yours? O No because there is more variation in a smaller number of flips O Yes because there is less variation in a smaller number of flips Yes because there is a pattern in the short runQuestion #8 If you were to look at someone else's simulation, would you expect the results for 100,000 flips to be about the same as yours? O Yes because variation is smaller for a larger number of flips O No because variation is larger for a larger number of flips O No answer text provided. Question 9 1 pts Part II. Probability Consider the following table for all of Part II: Probability. Suppose a random sample of 100 college students were asked what their favorite burger chain is. The following results were obtained: Burger Mcdonald's In-N-Out Other King Male 10 12 24 9 Female 24 8 6 Question #9 If one person is randomly selected from this sample, what is the probability that they prefer In-N-Out? Note: Provide your answer in fraction. 31/100Question 10 1 p- Question #10 Given that one person selected from this sample prefers lnNOut, what is the probability that they are female? Note: Provide your answer in fraction. 7/45 Question 11 1 p': Question #11 If one person is randomly selected, what is the probability that they are female AND prefer ln-N-Out? Note: Provide your answer in fraction. 7/100 Question 12 1 p- Question #12 If one person is randomly selected, what is the probability that they are female OR prefer InNOut? Note: Provide answer in fraction. 69f 100 Question 13 Question #13 If one person is randomly selected, what is the probability that they prefer In-N-Out given that they are female? Note: Provide answer in fraction. 7/31 Question 14 1 Question #14 Do you get the same number for Question #10 and Question #13? Why or why not? O No because you are conditioning on different events O Yes they equate to the same value O Yes the probability is not affected by what you condition Question 15 1 Question #15 Are the events "prefers In-N-Out" and "is female" independent? Why? O No, because P(prefers In-N-Out | is female) is not the same as P(prefers In-N-Out) O Yes, because P(prefers In-N-Out and is female) = P(prefers In-N-Out)*P(is female) O Yes, because gender and burger preference have nothing to do with one another

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Labor and Employment Law Text and Cases

Authors: David Twomey

15th edition

1133188281, 978-1133711841, 1133711847, 978-1285247632, 978-1133188285

Students also viewed these Mathematics questions

Question

What are pro forma financial statements?

Answered: 1 week ago