1

I'm attempting to work on an econ problem, but I'm having trouble understanding the notation that the production functions are given in to even begin to attempt to solve the problem.

This is what is given (I've changed the numbers/variables a bit, I'm just looking to understand the process, not for someone to do my homework)

f = min[t, 1.05k] k = min[m, 2f]

t = m = 10

You are then prompted to graph the functions and find the non-zero equilibrium.

Does this just mean take the minimum of the two values?

Thanks for any help you can provide!

  • A Little more context would be helpful. Do $f,k, t$ and $m$ have a meaning ? Is something said about the type of the production function. What are the input factors here ? – callculus42 Oct 01 '15 at 18:24

3 Answers3

2

You simply take the minimum of the two values.

Laars Helenius
  • 7,965
  • 1
  • 23
  • 35
1

The other comments are exactly right. $min(x,y) = x$ if and only if $x \leq y$ and $=y$ otherwise.

To obtain a decent answer to your problem, you should provide some context to the question.

When the production function is expressed with the $min$-operator, it usually reflects perfectly complementaty production inputs.

As an example: To produce 1 car, you need 1 car body (denoted by $b$) and 4 wheels (denoted by $w$). Hence the production function is $output = \min (b,\frac{w}{4})$. That way 2 car bodys and 8 or 9 wheels produce 2 cars - and also 2 car bodys and 100 wheels only produce 2 cars, because you need both.

Bayesian
  • 326
0

The "min" function gives you the minimum of two values. For example, min(3,4) = 3, and min(6,-9) = -9.

Deusovi
  • 2,792
  • 1
  • 20
  • 23