- Suppose we measure the quality of watches as the deviation
from the time at noon after one month without adjustments.
Watches which show a deviation of more than 3 minutes have
to be discarded at a cost of $10.
We have to choose between two ways to produce watches.
Watches produced by process A give after one month an average
time of 12:01 with a standard deviation of 1 minute, while
watches produced by process B show 12:00 on average, but with
a standard deviation of 2 minutes. Which process is best?
- Set up the quality loss function.
- Use the expected loss
to choose which process is best.
+--------+
| /20 |
+--------+
- Suppose we are interested in organizing a marathon.
The performance of the top runners (their average
time and standard deviation to complete the marathon)
is known.
- As marathon organizers, how would we estimate
the probability of breaking the world record at our event?
Assume our budget allows to pay five top athletes.
- Describe the computational procedures we would apply,
using pseudo code.
+--------+
| /20 |
+--------+
- Consider a credit card with a balance of $1,000,
at an annual interest rate of 20%.
Suppose we can afford a monthly payment of $50,
how long will it take to clear the balance on
the credit card?
- Set up the recursion relation for the balance B(n)
at month n.
- Solve the recursion for B(n).
- Determine for which n, B(n) = 0.
+--------+
| /20 |
+--------+
- Show that the Discrete Fourier Transform (DFT) turns convolutions
into coordinate-wise products.
- Using * for convolution and xx for the DFT of x,
write the property
x * y -> xx . yy
down for frames of four elements.
- Show the property holds for frames of four elements.
+--------+
| /20 |
+--------+
- A manufacturer produces two types of products, say A and B.
A sells at $5 per unit, while B sells at $7 per unit.
We have to decide how many units of each product to produce,
with the aim of maximizing the profit, subject to the following
constraints.
We are obliged to produce at least 20 units of A and to offer
at least 10 units of B. Our storage capacity is limited to
250 units. We have only 600 man hours available, one unit of A
requires two man hours, while one unit of B takes three man hours.
- Set up the linear programming model for this problem.
- Graph the feasibility region.
- From the graph, compute the optimal solution.
+--------+
| /20 |
+--------+
- The evolution of the population (size in millions) in the U.S.
is listed in the table:
year || 1950 | 1960 | 1970 | 1980 | 1990
------++------+------+------+------+------
size || 151 | 179 | 203 | 226 | 249
We use P(t) = exp(a t + b) to model the size of
the population (in millions) at year t.
- Set up the system of linear equations we need to solve
in order to find a and b.
- Explain how to solve this overconstrained linear system,
but do not solve it.
+--------+
| /20 |
+--------+
- company considers investing one million dollars for
equipment with an expected life span of 12 years.
Use 5% in continuous interest compounding.
- Suppose the equipment will save the company
each year one hundred thousand dollars.
Is this investment worth doing?
- Compute the break even annual savings, i.e.:
how large should the annual savings be in order
to gain from this investment?
+--------+
| /20 |
+--------+
- Consider the demand function D(p) = 8 + 20/p^2.
- Compute the elasticity of this demand function.
- Explain what this means for the price the producer
will charge for the product.
+--------+
| /20 |
+--------+