Question

In: Finance

use Excel : The Mann company belongs to a risk class for which the appropriate discount...

use Excel : The Mann company belongs to a risk class for which the appropriate discount rate is 10%. The company currently has 260,000 outstanding shares selling at $107 each. The firm is contemplating the declaration of a $4 dividend at the end of the fiscal year that just began. Assume there are no taxes on dividends. Answer the following questions based on the Miller and Modigliani model, which is discussed in the text.

A. What will be the price of the stock on the ex-dividend date if the dividend is declared?

B. What will be the price of the stock at the end of the year if the dividend is not declared?

C. If the company makes $3.8 million of new investments at the beginning of the period, earns net income of $1.75 million, and pays the dividend at the end of the year, how many shares of new stock must the firm issue to meet its funding needs?

D. Is it realistic to use the MM model in the real world to value stock? Why or why not?

Solutions

Expert Solution

A. What will be the price of the stock on the ex-dividend date if the dividend is declared?

According to the MM approach, the dividend policy of a firm has not effect on the share price but rather the investment policy decides the firm value. The firm could retain the earnings or distribute them in the form on dividends. The investors are satisfied with the firm’s retained earnings, as long as the return on equity capital is more than the equity capitalization rate or the required rate of return on equity. If the returns are less than this discount rate, then the investors would rather have dividends than retained earnings.

Having this in mind, we can say that the total value of the share is simple addition of the dividend value and the intrinsic value. When the dividend is paid out (ex-dividend), the share price of the firm will decrease by an amount equal to the dividend. The ex-dividend share price= 107-4= $103

B. What will be the price of the stock at the end of the year if the dividend is not declared?

If the dividend is not declared and paid out, the share price will remain stable at $107 per share. The MM approach, the dividend policy of a firm has not effect on the share price.

C. If the company makes $3.8 million of new investments at the beginning of the period, earns net income of $1.75 million, and pays the dividend at the end of the year, how many shares of new stock must the firm issue to meet its funding needs?

The required return to the investors is 10%. The return could be in form of capital (value) appreciation or dividend payout, the investors, are neutral, according to the MM model. The calculation for additional funding is as follows-

net income     1,750,000.00
less dividend payout     1,040,000.00 =260000*4
after dividend capital        710,000.00 =1750000-1040000
Equity capital 26,780,000.00 =260000*103 (ex-dividend price)
Current return on capital 2.65% =(1750000-1040000)/(260000*103)

Additional capital raised through equity will increase the funds available (numerator) as well the invested capital (denominator). Assume the additional number of shares to be raised after dividend is declared is x. We have a required rate of return 10% which can be achieved as follows-

91750000+x*103)/ ((260000+x)*103)= 10%
Solving for x, we get
x= 10,000
total available funds     2,785,150.00 =1750000+10000*103
total available capital 27,815,150.00 =(260000+10000)*103
Return on capital 10.01% =2780000/27810000

Hence, 10,000 new shares need to be raised at the ex-dividend price of $103 per share.

D. Is it realistic to use the MM model in the real world to value stock? Why or why not?

MM approach ha assumptions, which are unrealistic. Hence, we do not recommend using this model in the real life. Some of the criticism for this model is as follows-

It assumes that a perfect capital market exists, which implies no taxes, no flotation cost, and the transaction cost. These are not observed in the real life situations. Flotation cost, brokerage, commissions etc. need to be considered while using this model in real life.

The tax rates on dividends (income portion) is different from that on value appreciation (capital gains) for most of the investors. Mostly, the income is taxed at a higher rate than the capital gains. Also, dividend is sometimes taxed at two levels- company level and individual investor level. Hence, in real life, most of the investors prefer value appreciations than dividend payout.

MM model assumes that futures profits can be reliably estimated. This is unrealistic assumption. Since the future cash flows and profits are uncertain, the investors prefer current income (dividends) than future growth (capital appreciation).

The MM model can be adjusted to accommodate the implication of quantitative factors (taxes, costs etc.). However, the individual investor preferences for current vs. future income are diverse and cannot be reliably quantified in a simplistic model such as the one proposed MM model. Hence, we cannot use this model in real life as effectively.


Related Solutions

The Mann Company belongs to a risk class for which the appropriate discount rate is 10...
The Mann Company belongs to a risk class for which the appropriate discount rate is 10 percent. The company currently has 240,000 outstanding shares selling at $150 each. The firm is contemplating the declaration of a $4 dividend at the end of the fiscal year that just began. Assume there are no taxes on dividends. Answer the following questions based on the Miller and Modigliani model, which is discussed in the text.    a. What will be the price of...
ABC Ltd. belongs to a risk class for which the appropriate capitalization rate is 10%. It...
ABC Ltd. belongs to a risk class for which the appropriate capitalization rate is 10%. It currently has outstanding 5,000 shares selling at TZS.100 each. The firm is contemplating the declaration of dividend of TZS .6 per share at the end of the current financial year. The company expects to have net income of TZS.50,000 and has a proposal for making new investments of TZS.100,000. Show that under the MM hypothesis, the payment of dividend does not affect the value...
1)levothyroxine belong to which class 2) promethazine belongs to which class 3) Amiodarone belongs to which...
1)levothyroxine belong to which class 2) promethazine belongs to which class 3) Amiodarone belongs to which class
What are the purposes of determining to which social class a person or occupation belongs? How...
What are the purposes of determining to which social class a person or occupation belongs? How does class background, or current class position influence individual actions?
- Class DiscountPolicy is an abstract class with a method called computeDiscount, which returns the discount...
- Class DiscountPolicy is an abstract class with a method called computeDiscount, which returns the discount for the purchase of items. DiscountPolicy knows the name of the item and its cost as well as the number of items being purchased. - Class BulkDiscount, derived from DiscountPolicy, has two fields, minimum and percentage. computeDiscount method will return the discount based on the percentage applied, if the quantity of items purchased is more than minimum. For example: if minimum is 3 and...
Question 6 You purchase a machine for $200,000 which belongs in a 30% CCA class. What...
Question 6 You purchase a machine for $200,000 which belongs in a 30% CCA class. What is the present value of the CCA tax shield on the machine if it is sold at the end of the fifth year for $24,000, your tax rate is 34%, and the appropriate discount rate is 10%? Select one or more: a. $66,623 b. $40,143 c. $86,994 d. $45,227 e. $46,202 Question 7 A financial lease is usually a shorter-term lease in which the...
Create a method on the Iterator class called forEach, which appropriate behavior. This method should use...
Create a method on the Iterator class called forEach, which appropriate behavior. This method should use next(), and should not use this._array.forEach! Take note of what should happen if you call forEach twice on the same Iterator instance. The estimated output is commented below In javascript please class Iterator { constructor(arr){ this[Symbol.iterator] = () => this this._array = arr this.index = 0 } next(){ const done = this.index >= this._array.length const value = this._array[this.index++] return {done, value} } //YOUR WORK...
Which of the following equations is correct? A. Discount rate = Risk-free rate – Risk premium...
Which of the following equations is correct? A. Discount rate = Risk-free rate – Risk premium B. Discount rate = Risk-free rate ? Risk premium C. Discount rate = Risk-free rate ÷ Risk premium D. Discount rate = Risk-free rate + Risk premium
You have been asked to estimate the appropriate discount rate to use in the evaluation of...
You have been asked to estimate the appropriate discount rate to use in the evaluation of a new line of business. You have determined the market value of the firm’s target capital structure as follows: Source of Capital Market Value Bonds 350,000 Preferred Stock 200,000 Common Stock 450,000 To finance the new project, the company will sell: 12-year bonds with a $1,000 par value paying 8% per year (paid semiannually) at the market price of $980. Preferred stock paying a...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT