Fatskills
Practice. Master. Repeat.
Study Guide: **Business Management 101 - Valuation Basics: A Practical Guide**
Source: https://www.fatskills.com/management-101/chapter/valuation-basics-a-practical-guide

**Business Management 101 - Valuation Basics: A Practical Guide**

By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.

⏱️ ~7 min read

Valuation Basics: A Practical Guide


What Is This?

Valuation determines the economic worth of an asset, company, or investment. You use it to make buy/sell decisions, secure funding, negotiate mergers, or assess financial health.

Why It Matters

  • Investors use valuation to avoid overpaying for stocks, startups, or real estate.
  • Founders rely on it to raise capital, set equity stakes, or sell their business.
  • Corporations apply it for M&A, budgeting, and strategic planning.
  • Lenders assess collateral value before approving loans.
  • Regulators require fair valuation for taxes, compliance, and audits.

Poor valuation leads to bad deals, lost money, or legal trouble.


Core Concepts


1. Intrinsic vs. Market Value

  • Intrinsic value = What an asset is actually worth (based on fundamentals like cash flow, growth, risk).
  • Market value = What someone is willing to pay (driven by supply, demand, sentiment).
  • Key insight: The goal of valuation is to estimate intrinsic value—market price may be wrong.

2. Discounted Cash Flow (DCF)

  • Idea: Money today is worth more than money tomorrow (time value of money).
  • How it works: Project future cash flows, then discount them to present value using a discount rate (e.g., cost of capital).
  • Formula: Present Value = Future Cash Flow / (1 + Discount Rate)^Time
  • When to use: Best for assets with predictable cash flows (e.g., mature businesses, bonds).

3. Multiples (Relative Valuation)

  • Idea: Compare a company to similar ones using ratios like:
  • P/E (Price-to-Earnings): Stock price ÷ Earnings per share.
  • EV/EBITDA: Enterprise Value ÷ Earnings Before Interest, Taxes, Depreciation, Amortization.
  • P/S (Price-to-Sales): Market cap ÷ Revenue.
  • When to use: Quick benchmarking (e.g., "Is this startup overvalued compared to peers?").
  • Limitation: Assumes the market prices peers correctly.

4. Cost Approach (Asset-Based Valuation)

  • Idea: Value = Replacement cost of assets minus liabilities.
  • When to use: For asset-heavy businesses (e.g., real estate, manufacturing) or liquidation scenarios.
  • Example: A factory’s value = Land + Equipment – Debt.

5. Risk and the Discount Rate

  • Higher risk → Higher discount rate → Lower present value.
  • Common discount rates:
  • Risk-free rate (e.g., 10-year Treasury yield) + risk premium (e.g., 5–10% for startups).
  • WACC (Weighted Average Cost of Capital): Blends debt and equity costs.
  • Rule of thumb: Startups use 20–30% discount rates; mature companies use 8–12%.


How It Works: Step-by-Step Valuation


1. Choose a Method

Method Best For Pros Cons
DCF Mature businesses, predictable CF Fundamental, flexible Sensitive to assumptions
Multiples Quick comparisons, public markets Simple, market-based Relies on peer accuracy
Cost Approach Asset-heavy or distressed firms Objective (tangible assets) Ignores intangibles (brand, IP)

2. Gather Data

  • Financials: Revenue, expenses, profit margins, growth rates.
  • Market data: Comparable company multiples, industry benchmarks.
  • Macro trends: Interest rates, inflation, regulatory risks.

3. Build a Model (Example: DCF)

Step 1: Project free cash flows (FCF) for 5–10 years.
- FCF = Net Income + Depreciation – CapEx – Change in Working Capital.

Step 2: Estimate terminal value (value beyond projection period).
- Perpetuity method: Terminal Value = FCF_final_year × (1 + g) / (r – g) - g = long-term growth rate (e.g., 2–3% for mature companies).
- r = discount rate.

Step 3: Discount all cash flows to present value.
- Use Excel or Python to sum: ```python import numpy_financial as npf

cash_flows = [-100, 50, 60, 70, 80, 1000] # Includes terminal value discount_rate = 0.10 npv = npf.npv(discount_rate, cash_flows) print(f"NPV: ${npv:.2f}") ```

Step 4: Adjust for debt, cash, and non-operating assets.
- Enterprise Value (EV) = NPV of FCF.
- Equity Value = EV – Debt + Cash.

4. Stress-Test Assumptions

  • Sensitivity analysis: Vary growth rates, discount rates, and margins to see impact.
  • Scenario analysis: Model best-case, base-case, and worst-case outcomes.

5. Compare to Market

  • If your DCF value > market price → Potential buying opportunity.
  • If DCF value < market price → Overvalued or missing a key factor (e.g., growth).


Hands-On / Getting Started


Prerequisites

  • Knowledge: Basic finance (P&L, balance sheet, cash flow), Excel/Google Sheets.
  • Tools: Excel, Python (numpy_financial, pandas), or valuation software (e.g., ValuAdder, Togai).

Minimal Example: Valuing a Lemonade Stand

Step 1: Project cash flows (Year 1–3).
| Year | Revenue | Expenses | FCF | |------|---------|----------|------| | 1 | $10,000 | $6,000 | $4,000 | | 2 | $12,000 | $7,000 | $5,000 | | 3 | $15,000 | $8,000 | $7,000 |

Step 2: Estimate terminal value (assume 3% growth, 10% discount rate).
- Terminal Value = $7,000 × (1.03) / (0.10 – 0.03) = $103,000

Step 3: Discount all cash flows.
- Year 1: $4,000 / (1.10)^1 = $3,636 - Year 2: $5,000 / (1.10)^2 = $4,132 - Year 3: ($7,000 + $103,000) / (1.10)^3 = $85,124 - Total NPV = $3,636 + $4,132 + $85,124 = $92,892

Step 4: Adjust for debt/cash.
- Assume $2,000 debt, $1,000 cash.
- Equity Value = $92,892 – $2,000 + $1,000 = $91,892

Expected Outcome: The lemonade stand is worth ~$92K to an investor.


Common Pitfalls & Mistakes


1. Overestimating Growth

  • Mistake: Assuming 20% annual growth forever (most companies plateau).
  • Fix: Use industry benchmarks (e.g., 5–10% for mature firms).

2. Ignoring Working Capital

  • Mistake: Forgetting to subtract changes in working capital (e.g., inventory, receivables) from FCF.
  • Fix: FCF = Net Income + Depreciation – CapEx – ΔWorking Capital.

3. Using the Wrong Discount Rate

  • Mistake: Applying a 5% rate to a risky startup (should be 20–30%).
  • Fix: Match the rate to the asset’s risk (use WACC for companies, CAPM for stocks).

4. Cherry-Picking Comparables

  • Mistake: Comparing a SaaS startup to a retail giant.
  • Fix: Use companies with similar size, growth, and margins.

5. Double-Counting Risk

  • Mistake: Adding a risk premium to both the discount rate and cash flow projections.
  • Fix: Adjust either the rate or the cash flows, not both.


Best Practices


1. Start with a Range, Not a Single Number

  • Valuation is an estimate. Provide a low, base, and high case (e.g., $80K–$120K).

2. Backtest Your Model

  • Compare past valuations to actual outcomes (e.g., "Did my 2020 DCF for Tesla match its 2023 price?").

3. Use Multiple Methods

  • Cross-check DCF with multiples and cost approach to spot inconsistencies.

4. Document Assumptions

  • List all inputs (growth rate, discount rate, terminal value) so others can challenge them.

5. Update Regularly

  • Revalue assets quarterly or when major events occur (e.g., new funding, market crash).


Tools & Frameworks

Tool/Framework Use Case Pros Cons
Excel/Google Sheets Quick DCF, multiples Free, flexible Error-prone, manual updates
Python (numpy_financial, pandas) Automated DCF, sensitivity analysis Scalable, reproducible Requires coding skills
ValuAdder Small business valuation User-friendly, templates Paid, limited customization
Bloomberg Terminal Public company multiples Real-time data, global coverage Expensive ($24K/year)
Damodaran’s Data (free) Industry benchmarks, risk premiums Free, academic rigor Requires Excel knowledge


Real-World Use Cases


1. Startup Funding (Pre-Money Valuation)

  • Context: A founder raises $1M for 20% equity.
  • Valuation: Implies a $5M post-money valuation ($1M / 20% = $5M).
  • Method: Often uses multiples (e.g., "SaaS startups trade at 10× ARR") or DCF for revenue-generating firms.

2. Mergers & Acquisitions (M&A)

  • Context: Company A buys Company B for $50M.
  • Valuation: Uses DCF (for synergies) + multiples (for market comparison).
  • Key question: "Does the acquisition create value (NPV > 0)?"

3. Real Estate Investment

  • Context: Buying a rental property.
  • Valuation: DCF (rental income) + cost approach (land + building value).
  • Example: A property with $50K/year NOI (net operating income) and 8% cap rate is worth $50K / 0.08 = $625K.


Check Your Understanding (MCQs)


Question 1

A startup generates $100K in revenue and has 5 comparable companies trading at 5× revenue. What’s its estimated valuation using the multiples method?

A) $20K B) $500K C) $1M D) $5M

Correct Answer: B) $500K
- Explanation: Valuation = Revenue × Multiple = $100K × 5 = $500K.
- Why the Distractors Are Tempting: - A) Misreads the multiple as 0.2× (5× = 5, not 0.2).
- C) Assumes 10× multiple (common for high-growth startups, but not given).
- D) Confuses revenue with profit (multiples are applied to revenue here).


Question 2

You’re valuing a company using DCF. Its free cash flow next year is $100K, growing at 3% annually. Your discount rate is 10%. What’s the terminal value (perpetuity method)?

A) $1M B) $1.43M C) $1.5M D) $3.33M

Correct Answer: B) $1.43M
- Explanation: Terminal Value = FCF × (1 + g) / (r – g) = $100K × 1.03 / (0.10 – 0.03) = $1.43M.
- Why the Distractors Are Tempting: - A) Forgets to grow FCF by 3% ($100K / 0.10 = $1M).
- C) Uses the wrong formula ($100K / (0.10 – 0.03) = $1.43M, but misses the 1.03 growth).
- D) Applies the discount rate to the wrong term ($100K / 0.03 = $3.33M).


Question 3

Which valuation method is least suitable for a pre-revenue biotech startup?

A) DCF B) Multiples C) Cost approach D) Venture capital method

Correct Answer: A) DCF
- Explanation: DCF requires predictable cash flows, which pre-revenue startups lack.
- Why the Distractors Are Tempting: - B) Multiples are used (e.g., "biotech startups trade at $X per patent"), but they’re speculative.
- C) Cost approach works (e.g., "How much did R&D cost?").
- D) VC method (e.g., "What’s the target return at exit?") is common for early-stage startups.


Learning Path


Beginner (0–3 Months)

  1. Learn finance basics: P&L, balance sheet, cash flow (Khan Academy, Financial Statements Explained).
  2. Master Excel: NPV, IRR, XNPV, XIRR functions.
  3. Build a simple DCF: Value a public company (e.g., Apple) using free data (Yahoo Finance).

Intermediate (3–12 Months)

  1. Study valuation methods: DCF, multiples, cost approach (Damodaran’s "Investment Valuation").
  2. Automate with Python: Scrape data, build DCF models (numpy_financial).
  3. Practice with real cases: Value a private company (e.g., a local business).

Advanced (12+ Months)

  1. Dive into niche methods: Real options, Monte Carlo simulations.
  2. Learn M&A valuation: Synergies, control premiums, accretion/dilution.
  3. Specialize: Startup valuation, real estate, or distressed assets.

Further Resources


Books

  • The Little Book of Valuation (Aswath Damodaran) – Practical, no fluff.
  • Investment Valuation (Damodaran) – The bible of valuation.
  • Valuation: Measuring and Managing the Value of Companies (McKinsey) – Corporate focus.

Courses

Tools & Data

  • Free data: [Damodaran’s datasets](


ADVERTISEMENT