Write an Arduino code that does the following.
Generate 50 random numbers between the numbers 100 and 300. Pick a
number at random out of these 50 random variables.
a. Determine the probability of the chosen number being greater
than 200. This may
be achieved by counting the numbers that are greater than 200 and
dividing the count by 50.
Make sure you,
i.Formulate the appropriate if-conditions to check for a number being greater than 200
ii. Use a for-loop to apply the if-condition for all
50 numbers.
b.Determine the probability of the chosen number being
greater than or equal to 150
and less than 250?
c.Display the output using the serial monitor of
Arduino.
In: Computer Science
Assume the geometric distribution applies. Use the given probability of success p to find the indicated probability.
FindP(5) when p=0.60
P(5)=
(Round to five decimal places as needed.)
2.
Given that x has a Poisson distribution with μ=5, what is the probability that x=5?
P(5)≈
3.
Find the indicated probabilities using the geometric distribution, the Poisson distribution, or the binomial distribution. Then determine if the events are unusual. If convenient, use the appropriate probability table or technology to find the probabilities.
Assume the probability that you will make a sale on any given telephone call is 0.23
Find the probability that you (a) make your first sale on the fifth call, (b) make your sale on the first, second, or third call, and (c) do not make a sale on the first three calls.
4.
Find the indicated probabilities using the geometric distribution, the Poisson distribution, or the binomial distribution. Then determine if the events are unusual. If convenient, use the appropriate probability table or technology to find the probabilities.
The mean number of births per minute in a country in a recent year was about
five. Find the probability that the number of births in any given minute is (a) exactly
six, (b) at least six and (c) more than six.
In: Statistics and Probability
Write a c++ program for the Sales Department to keep track of the monthly sales of its salespersons. The program shall perform the following tasks:
Sample output:
How many salespersons you want to enter? :2
Enter details of employee
--------------------------
Enter employee No. :10
Enter employee name:Amy Ho
Enter employee phone No. :3134735678
Enter employee office location :Detroit
Enter monthly sales amount : $100000
Enter details of employee
--------------------------
Enter employee No. :20
Enter employee name:Brady Anderson
Enter employee phone No. :5156789876
Enter employee office location :Chicago
Enter monthly sales amount : $95876
The highest monthly sales is : $100000
Congratulations, Amy Ho! You are the top salesperson this month.
The lowest monthly sales is : $95876
Ramp Up, Brady Anderson. Your sales is the lowest this month.
In: Computer Science
Write a code in Python jupytoer note book:
|
|
|
|
|
|
In: Computer Science
It is believed that a health-care law has encouraged
approximately 89% of the youth in a country to obtain insurance.
Suppose this is true, and let X equal the number of youth with
private health insurance in a random sample of n = 50
[1] Find the probability mass function of X
[2] What is the probability that X is equal
[3] What is the probability that X is at most 30
In: Statistics and Probability
Suppose approximately 75% of all marketing personnel are
extroverts, whereas about 65% of all computer programmers are
introverts. (For each answer, enter a number. Round your answers to
three decimal places.)
(b)
In a group of 4 computer programmers, what is the probability that none are introverts?
What is the probability that 2 or more are introverts?
What is the probability that all are introverts?
In: Statistics and Probability
United Airlines' flights from Boston to Seattle are on time 60%
of the time. Suppose 10 flights are randomly selected, and the
number on-time flights is recorded. Find the following probilities.
(Round your answer to 4 decimal places.)
The probability that at least 3 flights are on time.
The probability that at most 4 flights are on time.
The probability that exactly 6 flights are on time.
In: Statistics and Probability
Probability Mass Functions, Random Variables
Find a table of the Binomial random variable (include a picture of the table in your submission) and obtain the probability that in 20 independent trials, each of which has probability of success equal to 0.1, the number of successes is less than or equal to 3.
Repeat the problem using instead of a Binomial a Poisson with suitable parameter lambda.
In: Statistics and Probability
Let X be the number of students who attend counseling at a certain time of day. Suppose that the probability mass function is as follows p (0) = .15, p (1) = .20, p (2) = .30, p (3) = .25, and p (4) = .10. Determine:
a) Is this a valid probability mass function? Why?
b) Obtain the cumulative probability function
c) What is the probability that at least two students come to counseling
d) What is the probability that, from one to three students, inclusive, they will come to counseling e) Obtain the average and standard deviation of the probability function. Interpret your results.
In: Statistics and Probability
Suppose small aircraft arrive at a certain airport according to a Poisson process with rate α = 8 per hour, so that the number of arrivals during a time period of t hours is a Poisson rv with parameter μ=8t. (Round your answers to three decimal places.)
(a) What is the probability that exactly 7 small aircraft arrive during a 1-hour period?
What is the probability that at least 7 small aircraft arrive during a 1-hour period?
What is the probability that at least 10 small aircraft arrive during a 1-hour period?
(b) What is the expected value and standard deviation of the number of small aircraft that arrive during a 90-min period?
expected value = _______
stsandard deviation = _______
(c) What is the probability that at least 27 small aircraft arrive during a 2.5-hour period?
What is the probability that at most 14 small aircraft arrive during a 2.5-hour period?
In: Math