Difference between revisions of "CostCapmm"

Line 1: Line 1:
 +
[[Category:Financial library functions]]
 
[[Category:Doc Status C]] <!-- For Lumina use, do not change -->
 
[[Category:Doc Status C]] <!-- For Lumina use, do not change -->
  
===Function Costcapmm(rAllEq, nTx, dvr)===
+
==Function Costcapmm(rAllEq, nTx, dvr)==
 
Calculates Modigliani and Miller's formula for adjusting the weighted average cost of capital for financial leverage.  Modigliani and Miller's formula works for any project that is expected to:
 
Calculates Modigliani and Miller's formula for adjusting the weighted average cost of capital for financial leverage.  Modigliani and Miller's formula works for any project that is expected to:
 
#generate a level, perpetual cash-flow and
 
#generate a level, perpetual cash-flow and
 
#support fixed permanent debt
 
#support fixed permanent debt
  
;Example
+
[[Syntax]]:
costcapmm(0.2,0.35,0.4) &rarr; 0.172
+
:[[CostCapmm]](rAllEq, nTx, dvr: Numeric)
  
;Expects: '''rAllEq''', '''nTx''', '''dvr''' all to be numeric
+
Parameters:
 +
;«rAllEq»: the cost of capital under all-equity financing
 +
;«nTx»: the net tax saving per dollar of interest paid. This is difficult to pin down in practice and is usually taken as the corporate tax rate
 +
;«dvr»: is the debt-to-value ratio
  
;Parameters: '''rAllEq''' is the cost of capital under all-equity financing;<br>'''nTx''' is the net tax saving per dollar of interest paid. This is difficult to pin down in practice and is usually taken as the corporate tax rate;<br>'''dvr''' is the debt-to-value ratio
+
Function definition:  
 +
:<code>rAllEq*(1 - (nTx*dvr))</code>
  
;Function definition: rAllEq * (1 - (nTx * dvr))
+
==Library==
 +
[[Financial library functions]]
  
;[[Syntax]]: Costcapmm(rAllEq, nTx, dvr : Numeric)
+
==Example==
 +
:<code>CostCapmm(0.2,0. 35, 0.4) &rarr; 0.172</code>
  
;Library: [[Financial library functions]]
+
==See Also==
 
+
* [[CostCapme]]
;More Examples and Tips:  ''None yet.''
+
*[[Capm]]
 +
* [[Financial library functions]]
 +
* [[Financial functions]]

Revision as of 02:08, 2 February 2016


Function Costcapmm(rAllEq, nTx, dvr)

Calculates Modigliani and Miller's formula for adjusting the weighted average cost of capital for financial leverage. Modigliani and Miller's formula works for any project that is expected to:

  1. generate a level, perpetual cash-flow and
  2. support fixed permanent debt

Syntax:

CostCapmm(rAllEq, nTx, dvr: Numeric)

Parameters:

«rAllEq»
the cost of capital under all-equity financing
«nTx»
the net tax saving per dollar of interest paid. This is difficult to pin down in practice and is usually taken as the corporate tax rate
«dvr»
is the debt-to-value ratio

Function definition:

rAllEq*(1 - (nTx*dvr))

Library

Financial library functions

Example

CostCapmm(0.2,0. 35, 0.4) → 0.172

See Also

Comments


You are not allowed to post comments.