Question

In: Economics

Consider the firm from Lecture Note 1 (LN1). Suppose firm j’s output is given by yj...

Consider the firm from Lecture Note 1 (LN1). Suppose firm j’s output is given by yj = n 1−α j , where 0 < α < 1 (α is a parameter). Unlike in LN1, suppose the firm must pay a fixed cost b < α if it wants to operate. That is, the firm’s profits are given by π (nj ) = 0 , if nj = 0 and π (nj ) = n 1−α j − wnj − b , if nj > 0 where w is the wage.

(a) Under what condition on w (in terms of the parameters α and b) would firm j be willing to hire a positive number of workers (i.e., choose nj > 0)? Let w¯ denote the level of w for which this condition is just met, and n¯ the amount of labour the would the firm hire if w = ¯w and the firm chose to operate. Solve for n¯ in terms of α and b. (HINT: Assuming the firm does operate, what’s the optimal level of n? When is this better than choosing n = 0?)

(b) Explain intuitively the reason for the condition on w you found in part (a). In what direction does w¯ change if the fixed cost b increases? Explain your answer.

(c) Give a mathematical statement of firm j’s labour demand function nj as a function of the wage w.

(d) Give a mathematical statement of average labour demand n (as a function of w) across all firm’s. For any cases where an individual firm would be indifferent between operating and not operating, assume that a fraction of them choose to operate and the remainder don’t, where any such fraction between 0 and 1 (inclusive) is a possible outcome. Draw a diagram showing this (average) labour demand curve.

(e) Assume there is no government or public goods, i.e., g = τ = 0, and that the household’s utility function is U (c, l) = log (c + φl) where φ > 0 is a parameter. The household maximizes this utility function subject to the budget constraint c = w (1 − l) + π and the NNCs c ≥ 0 and 0 ≤ l ≤ 1. Find the household’s optimal choice of its labour supply NS = 1 − l given the wage w. Draw a diagram showing this labour supply curve. Will this labor supply curve shift if π changes? (HINT: Depending on the value of w, one or more of the NNCs could bind, or the household might be indifferent between multiple bundles that are equally optimal. You may find it helpful to calculate the MRS, and then think about what this says about the shape of the household’s indifference curves.)

(f) An equilibrium in the labour market is a combination of n ∗ , w∗ such that n (w ∗ ) = NS (w ∗ ) = n ∗ , where n (w) is the (average) labour demand function you found in part (c), and NS (w) is the labour supply function you found in part (d). We say the equilibrium is unique if there is only one such combination of n ∗ , w∗ . We say there are multiple equilibria if there are multiple such combinations. We say there are no equilibria if there are no such combinations. Based on your answers from (c) and (d), for each of the four following possible cases, draw a labour market supply-and-demand diagram illustrating it. Be sure to point out where any equilibria are located (either in the diagram, or in words). i. A case where there are multiple equilibria, all having n ∗ = 0. ii. A case where the equilibrium is unique and has n ∗ = 1. iii. A case where the equilibrium is unique and has 0 < n < 1. iv. A case where there are multiple equilibria, and at least one has n ∗ > 0

Solutions

Expert Solution

a) A firm would hire a positive number of workers only when > or equal 0 i.e (1-wj)nj -(aj+b)> or 0 i.e nj> or equal (aj+b)/(1-wj)

so,nj> or equal 0, aj+b >0 and 1-wj>0 i.e wj<1 and aj+b> or = 1-wj i.e (aj+b-1) > or = -wj , wj>or = (1-aj-b)

w- = 1-aj-b (n- =1 which is greater than zero)

b) A firm would hire a positive number of workers only when > or equal 0 and at n=1 since =0 (firm would just be breaking even ) .If fixed cost b rises then w- falls.

c) A firm would hire a positive number of workers only when > or equal 0 i.e (1-wj)nj -(aj+b)>or equal 0 i.e nj> or equal to

(aj+b)/(1-wj)

d) In a scenario where firm is indifferent between operating and not operating

p be the fraction of firms who decide to operate and 1-p be the fraction of firms deciding not to operate while breaking even

If a firm decides to operate then he would hire

nj=aj+b/(1-wj) where 1-aj+bj <wj<1

but if the firm decides not to operate then nj=0

So,total labor demand function would be = p*aj+b/(1-wj) where 1-aj-bj <wj<1

We were unable to transcribe this image

We were unable to transcribe this image

We were unable to transcribe this image

We were unable to transcribe this image

1-aj-bj Threshold of positive Labor Demand

We were unable to transcribe this image

We were unable to transcribe this image

We were unable to transcribe this image

We were unable to transcribe this image

1-aj-bj Threshold of positive Labor Demand


Related Solutions

Suppose firm j’s output is given by yj = n1-a, where 0 < a < 1...
Suppose firm j’s output is given by yj = n1-a, where 0 < a < 1 ('a' is a parameter). Suppose the firm must pay a fixed cost b < a if it wants to operate. That is, the firm’s profits are given by: Pi(nj) = 0, if  nj = 0 and Pi(nj) = nj1-a - wnj - b, if nj > 0. Where w is wage   a. Under what condition on w (in terms of the parameters a and b)...
1. Consider a firm with the following production function: Q = KL1/2 (a) Consider an output...
1. Consider a firm with the following production function: Q = KL1/2 (a) Consider an output level of Q = 100. Find the expression of the isoquant for this output level. (b) Find the marginal product of labor, MPL. Is it increasing, decreasing, or constant in the units of labor, L, that the firm uses? (c) Find the marginal product of capital, MPK. Is it increasing, decreasing, or constant in the units of capital, K, that the firm uses? (d)...
1. Assuming the typical sacrifice ratio given in lecture, consider an economy where inflation is 8...
1. Assuming the typical sacrifice ratio given in lecture, consider an economy where inflation is 8 percent and the government wants it to be 5% instead. This economy must sacrifice _____ percent of one year’s GDP to do so. (Carefully follow all numeric directions. Enter your answer "as a percent, but without the percentage sign." In other words, if the economy must sacrifice 99 percent of one year's GDP, enter only 99 in the blank.) 2. Use the information from...
1. Implement the recursive factorial function given below (from the lecture notes on recursion). Develop a...
1. Implement the recursive factorial function given below (from the lecture notes on recursion). Develop a main program that allows the user to enter any integer (positive) integer value, and displays the factorial of that value. The program should allow the user to either keep entering another value, or quit the program. public static int factorial(int n) { if (n == 0 || n == 1) return (1); else return (n * factorial(n-1)); } 2. Determine the largest value for...
Consider the “index calculation” problem we have studied in the class (see lecture note), where we...
Consider the “index calculation” problem we have studied in the class (see lecture note), where we have a relation of 8,000,000 tuples. Again, make the following assumptions: the size of disk block (also called disk page): it is usually 4K or 8K bytes, to make our calculation easier, we will use 4000 bytes as a block size the size of the search key value: say we index the relation by using an attribute that is part of the primary key,...
Suppose the firm moves from a high-wage to a low-wage country but its level of output...
Suppose the firm moves from a high-wage to a low-wage country but its level of output remains constant at 200 units per day. How will its total employment change?
In Java, Modify “Producer and Consumer Problem” from lecture note so that it can use all...
In Java, Modify “Producer and Consumer Problem” from lecture note so that it can use all buffer space, not “buffer_size – 1” as in the lecture note. This program should work as follows: 1. The user will run the program and will enter two numbers on the command line. Those numbers will be used for buffer size and counter limit. 2. The main program will then create two separate threads, producer and consumer thread. 3. Producer thread generates a random...
1. Suppose a perfectly competitive firm in the short-run is currently producing an output level of...
1. Suppose a perfectly competitive firm in the short-run is currently producing an output level of 50,000 units, charging a price per unit of $4. The firm incurs variable costs of $280,000 in producing this level of output.  It also has fixed costs of $60,000.   a) Calculate the economic profit (or loss) from the firm producing and selling these 50,000 units of output. b)  Calculate the economic profit (or loss) from the firm shutting down and producing zero units.   c)  Given the correct...
Assembly language - please post with output Question: Using the AddTwo program from class lecture as...
Assembly language - please post with output Question: Using the AddTwo program from class lecture as a reference, write a program that calculates the following expression, using registers: A = (A + B) - (C + D). Assign integer values to the EAX, EBX, ECX, and EDX registers.
Consider a project of the Pearson Company (as in an example from Lecture 3 slides). The...
Consider a project of the Pearson Company (as in an example from Lecture 3 slides). The timing and size of the incremental after-tax cash flows for an equity-financed project are: Year 0 1 2 3 4                              CF -1,000 325 250 375 500 The firm is financing the project with $600 debt which carries 8% interest rate. The firm currently has no leverage, faces 40% tax rate and has 10% cost of capital. Value the project using flow to Equity...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT