Question

In: Math

* Make sure you turn in your code (take a screen shot of your code in...

* Make sure you turn in your code (take a screen shot of your code in R)and answers. Conduct the hypothesis
and solve questions by using R.
2) A random sample of 12 graduates of a secretarial school averaged 73.2 words per minute
with a standard deviation of 7.9 words per minute on a typing test. What can we conclude,
at the .05 level, regarding the claim that secretaries at this school average less than 75
words per minute on the typing test? (You may treat the number of words that a secretary
types in one minute as being normally distributed.)

Solutions

Expert Solution

Given,

Our hypothesis is,

(Left tail test)

Test statistics:

In R,

Lets create a function to calculate test statistics:

ttest<-function(xbar,mu,s,n){

a<-xbar-mu

b<-s/sqrt(n)

statistics<-a/b

return(statistics)

}

ttest(xbar=73.2,mu=75,s=7.9,n=12) ### this will give

absolute value of t is 0.789289

Degree of freedom = n-1 = 12-1 = 11

(Given)

Critical t value at 0.05 significance level for 11 degree of freedom for one tail test is calculated in R as:

qt(1-0.05,11)

1.795885

Since, , is fail to reject

Conclusion: Therefore, we conclude that there is not enough evidence to support the claim that secretaries at the school average less than 75 words per minute on the typing test.


Related Solutions

Please show that the code is working at the end(screen shot of the final result +...
Please show that the code is working at the end(screen shot of the final result + classes and interfaces) and use interfaces. Your program should read from the standard input a sequence of integer values, with each value separated by a space. Your task is to: Build a binary search tree using these values in the order they are entered. Print 3 traversals: pre-, in-, and post-order. Allow the user to insert/delete a value. Once a new tree is generated,...
Python(please take a screen shot!): 1. hamming distance: write a function distance that take two bits...
Python(please take a screen shot!): 1. hamming distance: write a function distance that take two bits strings, you can assume each strings only contains 0's and 1's. (Note: the two strings might have the same length or not!) for example: hamming('010001001111', '01010100') should return 5(1 bit changed plus 4 bits "lost" from the end). 2. write a main function that ask user for two file names, open files and read the 1st line of each, and compares them using Hamming...
Please take this c++ code and make it into java code. /* RecursionPuzzleSolver * ------------ *...
Please take this c++ code and make it into java code. /* RecursionPuzzleSolver * ------------ * This program takes a puzzle board and returns true if the * board is solvable and false otherwise * * Example: board 3 6 4 1 3 4 2 5 3 0 * The goal is to reach the 0. You can move the number of spaces of your * current position in either the positive / negative direction * Solution for this game...
create a VHDL program for the Truth Table below. Please make sure to create your code...
create a VHDL program for the Truth Table below. Please make sure to create your code for the simplified circuit. A B C Z 0 0 0 0 0 0 1 1 0 1 0 1 0 1 1 0 1 0 0 1 1 0 1 1 1 1 0 1 1 1 1 0
Write code for a game of picking match sticks. You must make sure that the computer...
Write code for a game of picking match sticks. You must make sure that the computer always wins. The game is as follows There are 26 matchsticks initially. The computer will ask the user to pick anywhere between 1 and 4 matchsticks. The player (whether the user or the computer) who has to pick up the last matchstick (or matchsticks) is the loser. You will have to use a combination of branching and looping commands with appropriate prompts and the...
convert this code to Python and make sure you use chained map and filter as well....
convert this code to Python and make sure you use chained map and filter as well. https://book.pythontips.com/en/latest/map_filter.html CODE BELOW IS IN JAVASCRIPT let people = [ {name: "Amy", pounds_weight: 152, inches_height: 63}, {name: "Joe", pounds_weight: 120, inches_height: 64}, {name: "Tom", pounds_weight: 210, inches_height: 78}, {name: "Jim", pounds_weight: 180, inches_height: 68}, {name: "Jen", pounds_weight: 120, inches_height: 62}, {name: "Ann", pounds_weight: 252, inches_height: 63}, {name: "Ben", pounds_weight: 240, inches_height: 72}, ]; //functions to convert pounds to kg and inches to meters let...
(a) You decided to turn a neutron into a proton. Making sure that the charge is...
(a) You decided to turn a neutron into a proton. Making sure that the charge is conserved, you wrote down n → p + e-. When you actually did the experiment, an antineutrino came out in addition, making the actual interaction n → p + e -+ ¯ν. Among what needs to be conserved, what was not conserved in the interaction without the antineutrino? (b) You managed to capture the emitted electron inside of a one-dimensional infinite potential well with...
WRITE CODE IN JAVA it is now your turn to create a program of your choosing....
WRITE CODE IN JAVA it is now your turn to create a program of your choosing. If you are not sure where to begin, think of a task that you repeat often in your major that would benefit from a program. For example, chemistry unit conversions, finding the area for geometric shapes, etc. You can also create an interactive story that changes based on the user input/decisions. The possibilities are endless. The program must include instructions for the user. Be...
Do the following using R. You must also turn in a copy of your R code....
Do the following using R. You must also turn in a copy of your R code. (10) What is the probability a beta (1, 8) random variable is less than 0.13? (11) What is the probability a beta (3, 9) random variable is greater than .4? (12) What is the probability a beta (18,4.4) random variable is between 0.6 and 0.7? (13) At what value of x is the probability that a beta (4, 7) random varable is less than...
Make sure to include comments that explain all your steps (starts with #) Make sure to...
Make sure to include comments that explain all your steps (starts with #) Make sure to include comments that explain all your steps (starts with #) Write a program that prompts the user for a string (a sentence, a word list, single words etc.), counts the number of times each word appears and outputs the total word count and unique word count in a sorted order from high to low. The program should: Display a message stating its goal Prompt...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT