Editing
Corporate Finance
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'NPV' (The Golden Rule of Investment):''' <syntaxhighlight lang="python"> def calculate_npv(initial_investment, cash_flows, discount_rate): """ Shows if an investment creates value. """ npv = -initial_investment for t, cash_flow in enumerate(cash_flows, start=1): # Discount each year's cash back to Year 0 npv += cash_flow / ((1 + discount_rate) ** t) return npv # Invest $1,000. Get $400 for 3 years. Interest rate is 10%. investment = 1000 future_cash = [400, 400, 400] rate = 0.10 result = calculate_npv(investment, future_cash, rate) print(f"Project NPV: ${result:.2f}") # If NPV > 0, the project creates wealth! </syntaxhighlight> ; Corporate Landmarks : '''The Modigliani-Miller Theorem''' β The famous (and controversial) proof that in a "perfect" world, it doesn't matter if a company uses debt or equityβthe value stays the same. : '''The 1929 Crash''' β Showing what happens when corporate debt levels become unsustainable. : '''Leveraged Buyouts (LBOs)''' β When a company is bought using a massive amount of borrowed money, using the company's own assets as collateral. : '''Share Buybacks''' β When a company uses its extra cash to buy its own stock, reducing the supply and (usually) increasing the price. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information