Today,we learn about the cash flow.

Cash flow summary:

1.The cash flow identity:(现金恒等式)

cash flow from assets = cash flow ro creditors (bondholders) +cash flow to stockholders (owners)

What it reflect is the fact that a firm generates cash through its various activities, and that cash either is used to pay creditors or else is paid out to the owner of the firm.

2.Cash flow from assets:(源自资产的现金流)involves three components

cash flow from assets = operating cash flow - net capital spending - change in net working capital(NWC)

where,

经营性现金流operating cash flow = earning before interest and taxes(EBIT) + depreciation -taxes

Operating cash flow refers to the cash flow that results from the firm's day-to-day activities of producing and selling.Expenses associated with the firm's financing of its assets are not included since they are not operating expenses.Operating cash flow is an important number because it tells us,on a very basic level,whether or not a firm's cash inflows from its business operation are sufficient to cover its everyday cash outflows.For this reason,a negative operating cash flow is often a sign of trouble.

To calculate operating cash flow(OCF),we want to calculate revenues minus costs,but wo don't want to include depreciation since it's not a cash outflow,and wo don't want to include interest because it's a financing expense.We do want to include taxes,because taxes are,unfortunately, paid in cash.

资本性支出net capital spending = ending net fixed assets - beginning net fixed assets + depreciation

Net capital spending is just money spent on fixed assets less money received from the sale of fixed assets.

净营运资本的变化change in NWC = ending NWC - beginning NWC(nwc = current assets - current liabilities)

3.cash flow to creditors (bondholders)流向债权人的现金流

cash flow to creditors = interest paid(给) - net new borrowing(收)

4.cash flow to stockholders (owners)流向股东的现金流

cash flow to stockholders = dividends paid(给) - net new equity raised(收)

Cash flow的更多相关文章

  1. 财务报表 > 现金流表的直接法,间接法,Cash Flow from Operating Activites

    经营活动现金流量 Cash Flow from Operating Activites 是指企业投资活动和筹资活动以外的所有的交易和事项产生的现金流量.它是企业现金的主要来源. 1. 直接法经营活动现 ...

  2. The finnacial statements,taxes and cash flow

    This chapter-2 we learn about the the financial statements(财务报表),taxes and cash flow.We must pay par ...

  3. NetSuite Chinese Finance Reports

    NetSuite has a strong report customization application. The standard finance reports has a different ...

  4. 【转】How to hire——创业公司应该如何招人

    How to hire After startups raise money, their next biggest problem becomes hiring.  It turns out it’ ...

  5. Software Engineering: 3. Project planning

    recourse: "Software Engineering", Ian Sommerville Keywords for this chapter: planning sche ...

  6. business knowledge

    Finance knowledge Trading---At the core of our business model is Trading, which involves the buying ...

  7. investopedia level 2

    Mispricing can be explained by the sum of the two components: true mispricing and estimation errorVe ...

  8. fr

    8.3 credit sales(bad debt , ar) method1:direct write off method2:allowance method for bad debt allow ...

  9. PMP考试--成本管理中常用的概念

    如果你对项目管理.系统架构有兴趣,请加微信订阅号"softjg",加入这个PM.架构师的大家庭 净现值(NPV)   Net Present Value 在项目计算期内,按行业基准 ...

随机推荐

  1. 华为OJ-合唱队

    华为OJ-初级题-合唱队 思路与分析 本题可以用DP的方法,分别从正向和逆向的两个方向求,该数组即186 186 150 200 160 130 197 200的上升对大序列.正向为[1, 1, 1, ...

  2. Js/Ajax中发送HttpPost请求调用WebService

    1) WebService中的方法 [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(Confo ...

  3. [leetcode]_Pascal's Triangle II

    题目:Pascal三角的变形,要求只用O(K)的额外空间. 思路:由于Pascal三角中,tri[n][i] = tri[n - 1][i] + tri[n-1][i-1],(通常情况下) 如果已经获 ...

  4. silverlight水印

    1.自定义类 using System; using System.Net; using System.Windows; using System.Windows.Controls; using Sy ...

  5. asp.net读取excel文件多种方法

    asp.net读取excel文件的三种方法示例,包括采用OleDB读取Excel文件.引用的com组件读取Excel文件.用文件流读取.   方法一:采用OleDB读取Excel文件 把Excel文件 ...

  6. PHP错误处理

    错误的分类: 1.语法错误     2.运行时错误 3.逻辑错误 调试方法:1.注释法 2.输出法 error_reporting(E_ALL & ~E_NOTICE & ~E_WAR ...

  7. [terry笔记]Oracle会话追踪(一):SQL_TRACE&EVENT 10046

      SQL_TRACE/10046 事件是 Oracle 提供的用于进行 SQL 跟踪的手段,在日常的数据库问题诊断和解决中是非常常用的方法.但其生成的trace文件需要tkprof工具生成一个可供人 ...

  8. Python 有哪些优点?为何要学Python?

      1. 支持OOP编程 从根本上讲Python仍是一种面向对象的语言,支持多态.继承等高级概念,在Python里使用OOP十分容易 没有C++.Java那样复杂,但不必做Python下OOp高手,够 ...

  9. System V共享内存区

    要点 shell查看命令:ipcs -m 主要函数 #include <sys/shm.h> //oflag=IPC_CREAT|IPC_EXCL|0644组合 //创建一个内存共享区 i ...

  10. 动态切换采用 CSplitterWnd 静态划分的视图布局(MFC)

    标题读起来有些拗口,具体是什么情况,我们来看: 一.问题的提出 一个采用MFC开发的软件,其窗体视图采用CSplitterWnd三分,效果如下图所示: 图1 软件的默认视图布局 该MFC开发的软件功能 ...