Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Example 1: A marketing company finds that 15% of people respond to the flyers that they mail out. a) Compute the probability that exactly 3

Example 1:

A marketing company finds that 15% of people respond to the flyers that they mail out.

a) Compute the probability that exactly 3 people P(X=3) of out a sample of 20 respond to the flyers they receive.

i) Compute this value by hand showing all work on the worksheet provided.

ii) Use "R" to compute this value using the following code;

dbinom(3, 20, .15)

b) Compute the probability thatno more than3 people out of a sample of 20 respond to the flyers they receive.

ii) Compute this value by hand showing all work on the worksheet provided.

ii) Use "R" to compute this value using the following code:

pbinom(3, 20, .15)

c) Compute the probability thatat least3 people out of a sample of 20 respond to the flyers they receive.

i) Compute this value by hand showing all work on the worksheet provided.

ii) Use "R" to compute this value using the following code:

pbinom(2, 20, .15, lower.tail = FALSE)NOTE:You could also use1-pbinom(2, 20, .15)

Questions:

e) In part 'c', what does the command "lower.tail=FALSE" do?

f) Explain why the code chunk was not pbinom(3, 20, .15, lower.tail=FALSE) for P(x

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Intermediate Algebra

Authors: Marvin L Bittinger

11th Edition

0321968395, 9780321968395

More Books

Students also viewed these Mathematics questions

Question

Identify and control your anxieties

Answered: 1 week ago

Question

Understanding and Addressing Anxiety

Answered: 1 week ago