Questions
Your math professor receives several student emails each day. The probability model shows the number of...

Your math professor receives several student emails each day. The probability model shows the number of emails your professor receives from students in a given day.

# student emails 0 1 2 3 4 5
Probability 0.10 0.10 0.20 0.20 0.30 0.10
  1. How many emails should your professor expect to receive daily? Round your result to the nearest hundredth.
  2. What is the standard deviation of the number of emails your professor should expect to receive? Round to the nearest hundredth.
  3. If it takes your professor an average of 7 minutes to reply to each email s/he receives, how many should your professor expect to spend responding to student emails in a given day?
  4. Your English professor expects the same mean number of emails with the same standard deviation. What is the mean and standard deviation of the difference in the number of emails the professors will receive.

Mean:

Standard Deviation:

In: Math

(a) If you roll a single die and count the number of dots on top, what...

(a) If you roll a single die and count the number of dots on top, what is the sample space of all possible outcomes? Are the outcomes equally likely? (b) Assign probabilities to the outcomes of the sample space of part (a). Do the probabilities add up to 1? Should they add up to 1? Explain. (c) What is the probability of getting a number less than 5 on a single throw? (d) What is the probability of getting 5 or 6 on a single throw?

In: Statistics and Probability

Answer the question "What is the probability that someone you know will die from COVID-19 this...

Answer the question "What is the probability that someone you know will die from COVID-19 this year?" and give your opinion.


Hint: You take for example the region (Tripoli, Beyrouth...) where you live in lebanon , the number of confirmed cases in this region and the population. N represents the total number of cases infected in the region, and p is the probability of death in Lebanon. You calculate the P(X=1).
Please answer me this question again completely.


In: Electrical Engineering

(a) The expected number of typographical errors on any page of a certain magazine is 0.2....

(a) The expected number of typographical errors on any page of a certain magazine is 0.2. What
is the probability that a certain page you read contains a total of 2 or more typographical
errors? Hint: Assume that errors occur independently of each other, and the probability for
an error is small.

(b) Let N be a random number of fair coins, where N has the Poisson distribution with parameter 2. You toss each coin once. Let X be the total number of heads. Show that X P1, that is, X has the Poisson distribution with parameter λ=1.

(c) Consider a roulette wheel consisting of 38 numbers 1 through 36, 0, and 00. Smith always bets
that the outcome will be any one of the numbers 1 through 12
(1) What is the probability that Smith’s first win will occur on his fourth round?
(2) If we learn that Smith has lost all of his first four rounds, what is the probability that his
first win will occur on his seventh round?


(d) Products produced by a machine has a 4% defective rate.
(1) What is the probability that the first defective occurs in the sixth item inspected?
(2) What is the probability that the first defective occurs somewhere in the first seven in-
spections?


Pease be as much detailed as you can. Its a project question and carries alot of points. Thanks for your time and effort.

In: Statistics and Probability

Write a java program that perform the following: 1. Ask a user ti enter 10 student...

Write a java program that perform the following:
1. Ask a user ti enter 10 student test score on a test (100 point test and save the score in an array
2. Iterate through the array to find the average and highest of these score, print them out
3 Count how many student score below average and print them out
4 . Instructor decide to curve the student score using square root curving method( take the square root of the raw score for each student and multiilied it with 10) Print out the score after curving and calculate the new averagr.

Sample out
Enter score: 90
Enter score: 70
(Enterscore 10 times)
Average: 74.80
Highest score 95
Number of student scored below average: 4
Score after curving: 94.9, 83.7,..., 90
New average: 85.60

In: Computer Science

In C++, Mrs. Jones wishes to computerize her grading system. She gives 5 tests but only...

  1. In C++, Mrs. Jones wishes to computerize her grading system. She gives 5 tests but only counts the 4 highest scores. Input the 5 test scores and output the average of the highest four. And using the following grading scale, 90-100 A, 80-89 B, 70-79 C, 60-69 D, and below 60 F, output the student’s letter grade. After creating this code, Modify the above to calculate the grade for all students in the class. The first input value will be the number of students in the class. You will then need to use a loop to input the students’ names as well as their 5 grades. Inside the loop (after calculating the average for the student) you will need to add each student’s average to a sum variable because at the end, you will need to print out the class average as well as each students’ names and letter grades.

In: Computer Science

Write program for the exercise 11(Sales Analysis) as explained at the end of the chapter. 11....

Write program for the exercise 11(Sales Analysis) as explained at the end of the chapter.

11. sales Analysis The file SalesData.txt, in this chapter’s source code folder, contains the dollar amount of sales that a retail store made each day for a number of weeks. Each line in the file contains seven numbers, which are the sales numbers for one week. The numbers are separated by a comma. The following line is an example from the file: 2541.36,2965.88,1965.32,1845.23,7021.11,9652.74,1469.36 Write a program that opens the file and processes its contents. The program should display the following:

• The total sales for each week

• The average daily sales for each week

• The total sales for all of the weeks

• The average weekly sales

• The week number that had the highest amount of sales

• The week number that had the lowest amount of sales

Other Requirements:

The program file name must be: SalesAnalysisDemo.java

The data file that your program opens must be named as: SalesData.txt

Sample Data File attached here  SalesData.txt

1245.67,1490.07,1679.87,2371.46,1783.92,1461.99,2059.77
2541.36,2965.88,1965.32,1845.23,7021.11,9652.74,1469.36
2513.45,1963.22,1568.35,1966.35,1893.25,1025.36,1128.36
1867.24,3124.20,1301.09,1489.27,1822.45,2111.89,1425.56
3296.54,9147.88,1801.45,0866.77,2001.21,0096.24,1156.83
2513.45,1963.22,1568.35,1966.35,1893.25,1025.36,1128.36

Test Case:

Weekly sales from week 1 is $12092.75
Average for week 1 is $1727.54
Weekly sales from week 2 is $27461.00
Average for week 2 is $3923.00
Weekly sales from week 3 is $12058.34
Average for week 3 is $1722.62
Weekly sales from week 4 is $13141.70
Average for week 4 is $1877.39
Weekly sales from week 5 is $18366.92
Average for week 5 is $2623.85
Weekly sales from week 6 is $12058.34
Average for week 6 is $1722.62
Total sale of all weeks = 95179.05
Average weekly sales = 15863.17
The week number with the highest amount of sales is: 2
The week number with the lowest amount of sales is: 3

In: Computer Science

continuous random variable and uniform distribution please follow the comment. A random number generator spits out...

continuous random variable and uniform distribution

please follow the comment. A random number generator spits out a random real number in the range [1,4]

assume each number is equally likely being out.

what is the probability that the model output an irrational number?

the answer is 1, but i don't understand

In: Statistics and Probability

Approximately 45% of Baby Boomers—those born between 1946 and 1964—are still in the workforce (www.pewresearch.org, May...

Approximately 45% of Baby Boomers—those born between 1946 and 1964—are still in the workforce (www.pewresearch.org, May 11, 2015). Six Baby Boomers are selected at random.

a.What is the probability that exactly one of the Baby Boomers is still in the workforce?

b.What is the probability that at least five of the Baby Boomers are still in the workforce?

c.What is the probability that less than two of the Baby Boomers are still in the workforce?

Page 184

d.What is the probability that more than the expected number of the Baby Boomers are still in the workforce?

what is the standard deviation?

a.

1.485

b.

2.7

c.

1.643

d.

1.218

what is the mean?

a.

3.3

b.

2.7

c.

6

d.

1.485

Which one is the parameter of a binomial distribution? Choose all applied.

a.

mean of the process

b.

population size

c.

probability of sucess

d.

sample size

Which one is the characteristics of Bernoulli process? Choose all applied.

a.

There are only two outcomes, success or failure.

b.

Probability of success remains the same from trial to trial.

c.

Probability of success is based on size.

d.

The number of successes within a specified time or space interval equals any

integer.

Which one is the binomial process? Choose all applied.

a.

Checking how many accidents per day in a town.

b.

Tossing a coin 10 times and see the number of heads showed up.

c.

Survey 100 students to see how many of them has the student loans.

d.

Checking 200 pencils to see how many of them are defected.

In: Statistics and Probability

Research the many causes of chronic renal failure. What is the connection between the causative agent...

Research the many causes of chronic renal failure. What is the connection between the causative agent and damage to the kidney be specific. discuss the current treatments, Including their advantages and disadvantage for instance dialysis removes waste products from the body. does ir also remove substances that are needed? if so, which ones and how are these issues dealt with medically?

In: Nursing