Microsoft Word - Simulation Project 2.docx Simulation Project 2 The Game pitching pennies. How you play: Any number of players line up a fixed distance away from a wall. The players each take a coin...

1 answer below »
Five parts simulation problem. Build a simulation using R. YOU MUST CONDUCT AT LEAST ONE Chi-Square Goodness of Fit Test AND ONE Kolmogorov-Smirnov Goodness of Fit Test. Write a paragraph describing how you complete each part along with your work. See the Toss Data for Part 1.
Lecture materiels: https://drive.google.com/drive/u/1/folders/1sKLewph21BON_n8N7xPnHm3UMTeuKxhY


Microsoft Word - Simulation Project 2.docx Simulation Project 2 The Game pitching pennies. How you play: Any number of players line up a fixed distance away from a wall. The players each take a coin of common denomination and take turns tossing them towards the wall. The objective is to throw the coins such that they land as close to the wall as possible without hitting it. Rolling is forbidden. I want you to play this game standing 15 feet from a wall with flooring that is NOT carpet. Play the game at least 40 times, each time measuring (and recording) the distance from the wall to your coin’s final resting place. Measure to the nearest 16th of an inch. Any attempt that hits the wall is a foul and does not count; reattempt the toss. Only collect the data on your play. You are to turn in a word document responding to Parts 1 – 5 of this assignment. You need to provide a paragraph describing how you completed each part along with your work (I explain what I expect to see for each part). Part 1: Record your data. Provide a table and histogram of your recorded data. Part 2: Hypothesize and fit a distribution to your data. If you try 3 tests and you always reject, use the distribution with the lowest P-Value. YOU MUST CONDUCT AT LEAST ONE Chi-Square Goodness of Fit Test AND ONE Kolmogorov-Smirnov Goodness of Fit Test. You can use your data to determine your parameters. For example, I’m not very good at this game and out of 40 attempts, my penny fell an average of 5.25 inches from the wall. My best was 3 and my worst was 10 inches. My standard deviation was 1.16 inches. Now I can conduct my goodness of fit test. Feel free to use technology. Provide your null and alternative hypothesis, parameters, and p-value (or Test Statistic and Critical Value) for all hypothesis tests performed and which distribution is your champion. Part 3: Build a simulation that can simulate your play 100 times (replications). It should output distance from the wall with continuous accuracy. You can use Excel, or R. Provide your model and your results. Part 4: Compare your simulation to your original data. Do you feel you have modeled this phenomenon well? Provide a paragraph explaining. Part 5: Expand your simulation to a weapon’s accuracy. Use your simulation – not the original data you created from your game. Assume any attempt outside of 3 inches is automatically not lethal. However, any attempt within 3 inches has a 65% chance of being lethal. Run this model 100 times and determine the lethality rate. How many shots would you recommend we use to feel confident we kill a target? Provide your new model and a paragraph with a graphic summarizing your results. Sheet1 ThrowsDistance Inches 11.25 25.5 34.0625 43.25 55.0625 60.5 74.25 815.125 90.25 102.5 112.0625 124.0625 133.125 141.5 151.25 163.5 178.5 181.25 199.25 206.0625 216.5 228.25 2312.125 2418.5 255.25 268 270.125 283.0625 295.125 306 3112.25 3218.25 338.5 346.0625 358.125 366.25 373.35 385.5 398.5 402.125
Answered 3 days AfterJul 04, 2021

Answer To: Microsoft Word - Simulation Project 2.docx Simulation Project 2 The Game pitching pennies. How you...

Subhanbasha answered on Jul 06 2021
146 Votes
# Calling libraries
library('readxl')
library('dplyr')
# Reading data from excel
Toss_data <- re
ad_excel("toss-data.xlsx")
# table of the recorded data
Table_data <- data.frame(table(Toss_data$`Distance Inches`))
# Saving the data in file location
write.csv(Table_data,"Test.csv")
# Histogram for the data
hist(Toss_data$`Distance...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here