By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Financial ratio analysis evaluates a company’s financial health by comparing key metrics from its financial statements (balance sheet, income statement, cash flow). Investors, lenders, and managers use ratios to assess liquidity, efficiency, profitability, and risk—enabling data-driven decisions.
Without ratios, financial statements are just raw data—ratios turn them into actionable insights.
Each category answers a specific question about a company’s financial position:
Pull the balance sheet, income statement, and cash flow statement (annual reports or SEC filings like 10-K). Example sources: - Public companies: SEC EDGAR - Private companies: Bloomberg Terminal, S&P Capital IQ (paid), or Crunchbase (startups).
Plug numbers into formulas (see Hands-On below). Use consistent time periods (e.g., annual data).
No single ratio tells the full story. Example: - High ROE but high debt-to-equity? → Profits may be fueled by risky leverage.- Low inventory turnover but high gross margin? → Inefficient operations or premium pricing.
Goal: Calculate and interpret 5 key ratios for Apple (2022 data).
Formula:
Current Ratio = Current Assets / Current Liabilities
Data (from Apple’s 2022 10-K, in millions): - Current Assets: $135,405 - Current Liabilities: $153,982
Calculation:
135,405 / 153,982 ≈ 0.88
Interpretation: - < 1.0: Apple can’t fully cover short-term debts with current assets.- Industry context: Tech averages ~1.5–2.0. Apple’s low ratio is unusual but manageable due to strong cash flow.
Debt-to-Equity = Total Debt / Total Shareholders’ Equity
Data: - Total Debt: $111,100 - Shareholders’ Equity: $50,672
111,100 / 50,672 ≈ 2.19
Interpretation: - > 2.0: High leverage, but Apple’s cash reserves ($236B) offset risk.- Trend: Compare to prior years (2021: 1.85 → rising debt).
Inventory Turnover = Cost of Goods Sold (COGS) / Average Inventory
Data: - COGS: $223,546 - Average Inventory: (2021: $6,580 + 2022: $4,946) / 2 ≈ $5,763
223,546 / 5,763 ≈ 38.8
Interpretation: - High turnover: Apple sells inventory ~39x/year (efficient supply chain).- Industry: Tech hardware averages ~10–15 (Apple is exceptional).
ROE = Net Income / Shareholders’ Equity
Data: - Net Income: $99,803 - Shareholders’ Equity: $50,672
99,803 / 50,672 ≈ 1.97 (or 197%)
Interpretation: - 197% is astronomical (S&P 500 average: ~15%).- Why? Apple’s net income is massive relative to equity (share buybacks reduce equity).
P/E Ratio = Stock Price / Earnings per Share (EPS)
Data: - Stock Price (Dec 31, 2022): ~$130 - EPS (2022): $6.16
130 / 6.16 ≈ 21.1
Interpretation: - 21.1x: Slightly below S&P 500 average (~22x).- Implications: Market expects moderate growth (not a "growth stock" like Tesla at 50x+).
import pandas as pd # Sample data (replace with real financials) data = { "Current Assets": 135405, "Current Liabilities": 153982, "Total Debt": 111100, "Shareholders Equity": 50672, "COGS": 223546, "Inventory 2021": 6580, "Inventory 2022": 4946, "Net Income": 99803, "Stock Price": 130, "EPS": 6.16 } # Calculate ratios ratios = { "Current Ratio": data["Current Assets"] / data["Current Liabilities"], "Debt-to-Equity": data["Total Debt"] / data["Shareholders Equity"], "Inventory Turnover": data["COGS"] / ((data["Inventory 2021"] + data["Inventory 2022"]) / 2), "ROE": data["Net Income"] / data["Shareholders Equity"], "P/E Ratio": data["Stock Price"] / data["EPS"] } print(pd.DataFrame(ratios.items(), columns=["Ratio", "Value"]))
Output:
Ratio Value 0 Current Ratio 0.87935 1 Debt-to-Equity 2.19253 2 Inventory Turnover 38.79333 3 ROE 1.96958 4 P/E Ratio 21.10390
A company has: - Current Assets: $500,000 - Current Liabilities: $250,000 - Inventory: $100,000
What is its Quick Ratio?A) 2.0 B) 1.6 C) 1.2 D) 0.8
Correct Answer: B) 1.6 Explanation: Quick Ratio = (Current Assets - Inventory) / Current Liabilities = ($500,000 - $100,000) / $250,000 = 1.6 Why the Distractors Are Tempting: - A) 2.0: Ignores inventory (uses current ratio instead).- C) 1.2: Subtracts inventory from liabilities (wrong formula).- D) 0.8: Reverses the formula (liabilities/assets).
A tech company has: - Total Debt: $200M - Shareholders’ Equity: $100M - EBIT: $50M - Interest Expense: $10M
Which ratio signals the highest risk?A) Debt-to-Equity = 2.0 B) Interest Coverage = 5.0 C) Current Ratio = 1.5 D) ROE = 25%
Correct Answer: A) Debt-to-Equity = 2.0 Explanation: - Debt-to-Equity = 2.0 is high for tech (typically < 1.0), indicating leverage risk.- Interest Coverage = 5.0 (EBIT/Interest = $50M/$10M) is healthy (> 2.0 is safe).- Current Ratio = 1.5 is adequate.- ROE = 25% is strong.Why the Distractors Are Tempting: - B) Interest Coverage = 5.0: Seems low, but 5x is actually safe.- C) Current Ratio = 1.5: Could be a concern if industry average is higher.- D) ROE = 25%: High ROE is good, but doesn’t address leverage risk.
A retailer’s inventory turnover drops from 8x to 5x over 2 years. What’s the most likely cause? A) Improved supply chain efficiency B) Overstocking due to poor demand forecasting C
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.