Questions
Alicia is a busy university student who spends her days in university attending classes or studying....

Alicia is a busy university student who spends her days in university attending classes or studying. In addition to her three meals, she packs two snacks to take with her to school. However, she doesn't always consume both snacks. Let X be the number of snacks she consumes per day. The distribution of X is as follows: x 0 1 2 P(X=x) 0.05 0.35 0.60 Assume the number of snacks per day is independent from day to day. A.[5] Find the sampling distribution of the average of snacks for two randomly selected days. B.[6] Find the expected value and variance for both X and �%. C.[3] Suppose that 36 days were selected at random. What is the sampling distribution of the sample mean based on n = 36? Why? D.[3] Suppose that 36 days were selected at random. What is the probability that the average number of snacks that Alicia consumed is at most 2.5 snacks per day, during the selected 36 days.

In: Statistics and Probability

1. Determine if the following describes a binomial experiment. If not, give a reason why not:...

1. Determine if the following describes a binomial experiment. If not, give a reason why not:

Five cards are randomly selected with replacement from a standard deck of playing cards, and the number of aces is recorded.

2. Determine if the following describes a binomial experiment. If not, give a reason why not:

Two cards are randomly selected without replacement from a standard deck of playing cards, and the number of kings (K) is recorded.

3. Determine if the following describes a binomial experiment. If not, give a reason why not:
Toss a 6-sided die until a "2" is observed.

4. Determine if a Poisson experiment is described, and select the best answer:

Suppose we knew that the average number of typos in our statistics text was 0.08 per page. The author knows that he is much more likely to make a typo on a page that has many mathematical symbols or formulas compared to pages that contain only plain text. He would like to know the probability that a randomly selected page that contains only text will contain no typos.

In: Statistics and Probability

(c) Sur Power & Utility company is considering to replace the existing high power ammonia compressor...

(c) Sur Power & Utility company is considering to replace the existing high power ammonia compressor with a new one. Maintenance records show the relative frequency of the compressor for 300 week period is given in Table Q5(c)-1.
(i) Use Monte Carlo Simulation, the probability distributions and the random numbers given in Table Q5(c)-2, to simulate the breakdowns which occur in the next 25 week lifespan.
Calculate the average number of breakdowns. Decide which blower will have the better reliability if the new blower is expected to have an average one(1) breakdown per week.

Table Q5(c)-1
Number of Breakdowns Number of Weeks
0 96
1 75
2 63
3 42
4 24
Table Q5(c)-2
77 71 64 74 43
54 35 79 51 87
82 16 45 66 99
81 64 15 67 51
91 37 45 59 33

In: Statistics and Probability

1. Scores on an endurance test for cardiac patients are normally distributed with a mean of...

1. Scores on an endurance test for cardiac patients are normally distributed with a mean of 182 and a standard deviation of 24. What is the probability that a patient has a score above 170?

0.1915

0.3085

0.4505

0.6915

2.

The number of interviews received within a month by TSU business graduates is normally distributed with a mean of 8 interviews and a standard deviation of 2 interviews. 75% of all graduates receive more that how many interviews?

7.45

8.31

6.65

5.87

3. The number of interviews received within a month by TSU business graduates is normally distributed with a mean of 8 interviews and a standard deviation of 2 interviews. 15% of all graduates receive no more than how many interviews?

6.47

5.93

7.84

8.31

4. The number of interviews received within a month by TSU business graduates is normally distributed with a mean of 8 interviews and a standard deviation of 2 interviews. 45% of all graduates receive more than how many interviews?

10.11

11.92

8.25

9.43

In: Statistics and Probability

Assuming a random variable X is distributed with a mean of the second digit of your...

Assuming a random variable X is distributed with a mean of the second digit of your student number, a variance of the last digit of your student number divided by 10 ( if the last digit is zero, use 9).

  1. If you take 64 independent samples from X, what is the probability that the sample means is greater than 5?
  2. The sample mean that you get from the previous sample is 3.5; please construct a 95% confidence interval based on the previous assumption.  
  3. Interpret the confidence interval that you constructed.
  4. Based on your sample results that the sample mean is 3.5, assuming you do not know the true populations mean, test the hypothesis that the population mean of X equals to the third digit of your student number. Do you reject or nor reject your hypothesis?
  5. Do you think you might have made mistake in your conclusion in step D? Why?
  6. If you increase your sample size to 100, would the conclusion in step D change? Why and why not?

In: Statistics and Probability

For drivers aged 20-24 there is a 34% chance of having a car accident in a...

For drivers aged 20-24 there is a 34% chance of having a car accident in a one year period (based on data from the National Safety Council).
(a) Based on this data, in a group of 11 randomly selected drivers aged 20-24, find the probability that at least 2 of them will have a car accident in the next year.
(b) In a group of 260 drivers aged 20-24, find the mean number of drivers who will have a car accident in the next year.
(c) In a group of 260 drivers aged 20-24, find the standard deviation of the number of drivers who will have a car accident in the next year.
(d) Suppose that a group of 260 drivers aged 20-24 are randomly selected, and 106 of them have had a car accident in the last year. Is this a significantly high number that would perhaps suggest that the given percentage of drivers aged 20-24 that have a car accident in a one year period (i.e., 34%) is not correct?

In: Math

To write a Generic Collection class for Stack<E>, using the generic Node<E> from Lab 5, and...

To write a Generic Collection class for Stack<E>, using the generic Node<E> from Lab 5, and test it using a stack of Car, Integer, and String

Stack<E>

For Programming Lab 6, you are to write your own Generic Collection for a Stack that will use your Node<E> from Lab 5

UML for Stack<E>

Stack<E>

- top : Node<E>
- numElements : int

+ Stack( )
+ push( element : E ) : void
+ pop( ) : E
+ size( ) : int

Here is an additional description of what your stack should contain/how it should perform:

private fields:

- top which points to a Node<E>
- numElements an int

a no-arg Constructor:

- sets top to null
- numElements to 0

push(receives element of type E)

- adds a new node to top of stack
- adds 1 to numElements

pop( ) returns a value of type E

- removes node from top of stack
- decrements numElements by 1

- <<unless the stack is empty-throw EmptyStack exception (provided in Canvas)>>

size( ) returns an int

returns value of numElements

Stack<E> (Stack.java):

Item

Comment with name (2 points)

Comment each method / constructor in javadoc format (8 points)

2 private Fields created as requested
-top:Node<E> and – numElements as int (5 points)

No-arg Constructor
initializes top and numElements to 0 (5 points)

push() method

adds element of type E to stack and increases numElements (15 points)

pop() method
removes item from top of stack, decrements numElements, returns value of type E
or throws EmptyStack exception if stack was empty (15 points)

size() method
returns numElements (5 points)

following the naming guidelines for Classes and identifiers (8 points)

proper indenting (methods indented inside class, statements indented inside method, conditionally executed code indented) (8 points)

organization of your Class( instance variables up top / Constructor / setters/getters ) (8 points)

Lab must compile and run in order to receive any credit

In: Computer Science

Assuming monthly compounding, what is the highest rate you can afford on a 60-month APR loan?

You want to borrow $36,000 from your local bank to buy a new sailboat. You can afford to make monthly payments of $750, but no more. Assuming monthly compounding, what is the highest rate you can afford on a 60-month APR loan?

Group of answer choices

  • 8.90 percent

  • 8.95 percent

  • 9.00 percent

  • 9.15 percent

  • 9.20 percent

In: Finance

Which of the following policies purchased at age 35 would provide the highest cash value at age 65?

Which of the following policies purchased at age 35 would provide the highest cash value at age 65?


whole life policy.

paid up at 65 life policy.

term insurance to age 65.

paid up at age 70 whole life policy.

In: Finance

Question 1 Historically, the highest priority in environmental health was controlling: Infectious diseases Air pollution Population...

Question 1

Historically, the highest priority in environmental health was controlling:

Infectious diseases

Air pollution

Population growth

Energy waste

Question 2

Which of the following is not as a consequence of global warming?

Rising sea level

Increased agricultural productivity worldwide

Worsening health effects

Increased storm frequency and intensity

All of the above are likely results of global warming

Question 3

Environmental public health issues are often related to human use of naturally occurring resources—renewable and nonrenewable.

True
False

Question 4

Fluoridation has not been among the most highly touted public health interventions.

True
False

Question 5

Courts have upheld the authority of governments to fluoridate water systems when challenged by community members who oppose fluoridation.

True
False

In: Nursing