Customers arrive to the checkout counter of a convenience store
according to a Poisson process at...
Customers arrive to the checkout counter of a convenience store
according to a Poisson process at a rate of two per minute. Find
the mean, variance, and the probability density function of the
waiting time between the opening of the counter and the following
events:
A) What is the probability that the third customer arrives
within 6 minutes? You can use a computer if you’d like but you need
to write down the integral with all of the numbers plugged...
You are interested in finding out the mean number of customers
entering a 24-hour convenience store...
You are interested in finding out the mean number of customers
entering a 24-hour convenience store every 10-minutes. You suspect
this can be modeled by the Poisson distribution with a a mean of
λ=4.84 customers. You are to randomly pick n=74 10-minute time
frames, and observe the number of customers who enter the
convenience store in each. After which, you are to average the 74
counts you have. That is, compute the value of X (a) What can you
expect...
Poisson Distribution: p(x,
λ) = λx exp(-λ)
/x! , x = 0, 1, 2, …..
Find the moment generating function Mx(t)...
Poisson Distribution: p(x,
λ) = λx exp(-λ)
/x! , x = 0, 1, 2, …..
Find the moment generating function Mx(t)
Find E(X) using the moment generating function
2. If X1 , X2 ,
X3 are independent and have means 4, 9, and
3, and variencesn3, 7, and 5. Given that Y =
2X1 - 3X2 +
4X3. find the
mean of Y
variance of Y.
3. A safety engineer claims that 2 in 12 automobile accidents
are due to driver fatigue. Using the formula for Binomial
Distribution find the...
CREATE TABLE Customers
(Customer# NUMBER(4),
LastName VARCHAR2(10) NOT NULL,
FirstName VARCHAR2(10) NOT NULL,
Address VARCHAR2(20),
City...
CREATE TABLE Customers
(Customer# NUMBER(4),
LastName VARCHAR2(10) NOT NULL,
FirstName VARCHAR2(10) NOT NULL,
Address VARCHAR2(20),
City VARCHAR2(12),
State VARCHAR2(2),
Zip VARCHAR2(5),
Referred NUMBER(4),
Region CHAR(2),
Email VARCHAR2(30),
CONSTRAINT customers_customer#_pk PRIMARY KEY(customer#),
CONSTRAINT customers_region_ck
CHECK (region IN ('N', 'NW', 'NE', 'S', 'SE', 'SW', 'W', 'E'))
);
CREATE TABLE Orders
(Order# NUMBER(4),
Customer# NUMBER(4),
OrderDate DATE NOT NULL,
ShipDate DATE,
ShipStreet VARCHAR2(18),
ShipCity VARCHAR2(15),
ShipState VARCHAR2(2),
ShipZip VARCHAR2(5),
ShipCost NUMBER(4,2),
CONSTRAINT orders_order#_pk PRIMARY KEY(order#),
CONSTRAINT orders_customer#_fk FOREIGN KEY (customer#)
REFERENCES customers(customer#));
In...
a. Define the class bankAccount to store a bank customer’s
account
number and balance. Suppose that...
a. Define the class bankAccount to store a bank customer’s
account
number and balance. Suppose that account number is of type int,
and
balance is of type double. Your class should, at least, provide
the
following operations: set the account number, retrieve the
account
number, retrieve the balance, deposit and withdraw money, and
print
account information. Add appropriate constructors.
b. Every bank offers a checking account. Derive the class
checkingAccount from the class bankAccount (designed in part
(a)). This class...
Accounting Services, Inc. has two customers. Customer X
generates $600,000 in income after direct fixed costs...
Accounting Services, Inc. has two customers. Customer X
generates $600,000 in income after direct fixed costs are deducted,
and Customer Z generates $580,000 in income after direct fixed
costs are deducted. Allocated fixed costs total $1,000,000 and are
assigned 40 percent to Customer X and 60 percent to Customer Z.
Total allocated fixed costs remain the same regardless of how these
costs are assigned to customers.
What is the amount of allocated fixed costs to be
assigned to Customer Z?...
1. Willow Brook National Bank operates a drive-up teller window
that allows customers to complete bank...
1. Willow Brook National Bank operates a drive-up teller window
that allows customers to complete bank transactions without getting
out of their cars. On weekday mornings, arrivals to the drive-up
teller window occur at random, with an arrival rate of 6 customers
per hour or 0.1 customers per minute. Also assume that the service
times for the drive-up teller follow an exponential probability
distribution with a service rate of 54 customers per hour, or 0.9
customers per minute. Determine the...