Question

The weights of New Zealand hamsters are normally distributed with mean 63.5 g and standard deviation...

The weights of New Zealand hamsters are normally distributed with mean 63.5 g and standard deviation 12.2 g.

a. What is the probability a randomly selected New Zealand hamster weighs more than 74g? Copy-and-paste the R command and its return into your assignment.

b. 35% of all New Zealand hamsters weigh less than x grams. What is the number x? Copy-and-paste the R command and its return into your assignment.

c. If there are 1000 weights in this population, how many of them do you expect will be 78 g or greater? Use R to find the expected number. You will need more than one R command. Copy-and-paste the R commands and their returns into your assignment.

d. Find two symmetric values a and b such that P(a < X < b) = 0.99. symmetric values are equally distant from the mean. You will need more than one R command. Copy-andpaste the R commands and their returns into your assignment.

Homework Answers

Answer #1

Solution:

Weights are normally distributed.

Mean = 63.5

SD = 12.2

Part a

We have to find P(X>74)

P(X>74) = 1 – P(X<74)

Required R commands are given as below:

> Req.prob = 1 - pnorm(74,63.5,12.2)

> Req.prob

[1] 0.1947138

Answer: 0.1947

Part b

Here, we have to find x such that P(X<x) = 0.35

Required R commands are given as below:

> x = qnorm(0.35,63.5, 12.2)

> x

[1] 58.79909

Answer: 58.7991

Part c

Required R commands are given as below:

> prob. = 1 - pnorm(78,63.5,12.2)

> n = 1000

> exp.number = n*prob.

> exp.number

[1] 117.3134

Answer: 117.3134

Part d

Required R commands are given as below:

> p1 = (1 - 0.99)/2

> p2 = 0.99+p1

> a = qnorm(p1,63.5,12.2)

> b = qnorm(p2,63.5,12.2)

> a

[1] 32.07488

> b

[1] 94.92512

a = 32.07488

b = 94.92512

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
6. Assume that the weights of coins are normally distributed with a mean of 5.67 g...
6. Assume that the weights of coins are normally distributed with a mean of 5.67 g and a standard deviation 0.070 g. A vending machine will only accept coins weighing between 5.48 g and 5.82 g. What percentage of legal quarters will be rejected by the machine? Give your answer in the percentage format (using % symbol), rounded to two decimal places. 7. Assume that values of variable x are normally distributed, with the mean μ = 16.2 and the...
a chocolate truffle machine makes truffles with normally distributed weights with mean 22.2 and standard deviation...
a chocolate truffle machine makes truffles with normally distributed weights with mean 22.2 and standard deviation 3.0. a. if you take a random truffle produced by the machine, find the probability it weighs more than 24 b. the company makes small gift boxes that contain 4 truffles. if you are given one of these boxes, what is the probability that the total weight of the truffles is more than 96? c. suppose some adjustments are made to the machine so...
Data sets for the question below Data Set G: Assume the population values are normally distributed....
Data sets for the question below Data Set G: Assume the population values are normally distributed. Random variable: x = weight of border collie in pounds sample size = 25 34.1 40.8 36.0 34.9 35.6 43.4 35.4 29.3 33.3 37.8 35.8 37.4 39.0 38.6 33.9 36.5 37.2 37.6 37.3 37.7 34.9 33.2 36.2 33.5 36.9 Use Excel (or similar software) to create the tables. Then copy the items and paste them into a Word document. The tables should be formatted...
Suppose that the return of stock A is normally distributed with mean 4% and standard deviation...
Suppose that the return of stock A is normally distributed with mean 4% and standard deviation 5%, the return of stock B is normally distributed with mean 8% and standard deviation 10%, and the covariance between the returns of stock A and stock B is −30(%)2 . Now you have an endowment of 1 dollar, and you decide to invest w dollar in stock A and 1 − w dollar in stock B. Let rp be the overall return of...
1. A particular fruit's weights are normally distributed, with a mean of 601 grams and a...
1. A particular fruit's weights are normally distributed, with a mean of 601 grams and a standard deviation of 24 grams. If you pick one fruit at random, what is the probability that it will weigh between 562 grams and 610 grams. 2.  A particular fruit's weights are normally distributed, with a mean of 784 grams and a standard deviation of 9 grams. The heaviest 7% of fruits weigh more than how many grams? Give your answer to the nearest gram....
In this lab, you will write a program that creates a binary search tree based on...
In this lab, you will write a program that creates a binary search tree based on user input. Then, the user will indicate what order to print the values in. **Please write in C code** Start with the bst.h and bst.c base code provided to you. You will need to modify the source and header file to complete this lab. bst.h: #ifndef BST_H #define BST_H typedef struct BSTNode { int value; struct BSTNode* left; struct BSTNode* right; } BSTNode; BSTNode*...
For a C program hangman game: Create the function int setup_game [int setup_game ( Game *g,...
For a C program hangman game: Create the function int setup_game [int setup_game ( Game *g, char wordlist[][MAX_WORD_LENGTH], int numwords)] for a C program hangman game. (The existing code for other functions and the program is below, along with what the function needs to do) What int setup_game needs to do setup_game() does exactly what the name suggests. It sets up a new game of hangman. This means that it picks a random word from the supplied wordlist array and...
1. Vim commands: a. How do you auto indent your program? b. Explain what the following...
1. Vim commands: a. How do you auto indent your program? b. Explain what the following commands do: dd, y3, p, :set cindent (1 pt) VIM exercises These exercises on the computer need to be repeated by each student in the pair. This is to ensure that both students understand how to get around in Linux!!! For this part of the lab, you will create a .vimrc file that will help you develop your C++ programs using VIM. First, we...
Homework Draw class diagrams for your HW4 - the Tetris Game shown below: Part 1: UML...
Homework Draw class diagrams for your HW4 - the Tetris Game shown below: Part 1: UML As a review, Here are some links to some explanations of UML diagrams if you need them. • https://courses.cs.washington.edu/courses/cse403/11sp/lectures/lecture08-uml1.pdf (Links to an external site.) • http://creately.com/blog/diagrams/class-diagram-relationships/ (Links to an external site.) • http://www.cs.bsu.edu/homepages/pvg/misc/uml/ (Links to an external site.) However you ended up creating the UML from HW4, your class diagram probably had some or all of these features: • Class variables: names, types, and...
#Linked Lists and Classes #C++ Hi, please use singly linked list method to do this question....
#Linked Lists and Classes #C++ Hi, please use singly linked list method to do this question. Thank you! Here’s the contents of a file called example.cpp: // example.cpp #include "LinkedList.h" #include <iostream> #include <string> using namespace std; int main() { cout << "Please enter some words (ctrl-d to stop):\n"; LinkedList lst; int count = 0; string s; while (cin >> s) { count++; lst.add(remove_non_letters(s)); } // while cout << "\n" << count << " total words read in\n"; cout <<...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT