Skip to main content
aibizhub
Structured methodology As of 2026-04-24

How Solo Founder Unit Economics works

What the tool assumes, what data it pulls from, and what it cannot tell you.

Education · General business information, not legal, tax, or financial advice. Editorial standards Sponsor disclosure Corrections

1. Scope

Computes LTV, CAC, payback, and break-even customer count for a solo founder whose acquisition is mostly organic (content, community, SEO). It does not assume venture-stage CAC or enterprise contract structures.

2. Inputs and outputs

Inputs

  • arpu number (currency/mo)
  • grossMargin percent default: 85

    Typical for micro-SaaS.

  • monthlyChurn percent
  • paidCac number (currency) default: 0

    Blended acquisition cost per paying customer.

  • hoursPerMonth number default: 0

    Founder hours spent on acquisition activities.

  • hourlyRate number (currency) default: 0

    Opportunity cost for organic CAC.

Outputs

  • ltv

    arpu × grossMargin / monthlyChurn.

  • cac

    paidCac + (hoursPerMonth × hourlyRate) / customersPerMonth.

  • paybackMonths

    cac / (arpu × grossMargin).

  • ltvCacRatio

    ltv / cac.

Engine source: src/lib/solo-founder-unit-economics/engine.ts

3. Formula / scoring logic

ltv           = (arpu * gross_margin) / monthly_churn
organic_cac   = (hours_per_month * hourly_rate) / customers_per_month
cac           = paid_cac + organic_cac
payback       = cac / (arpu * gross_margin)
ltv_cac_ratio = ltv / cac

4. Assumptions

  • Churn is constant. Cohort-level LTV is more accurate but requires at least 6 months of data the tool does not request.
  • Organic CAC monetises founder time — zero paid CAC is not zero CAC.
  • ARPU is the monthly-recurring component; one-time revenue is out of scope.

5. Data sources

6. Known limitations

  • LTV formula assumes memoryless churn and no expansion revenue. If existing customers are expanding (NDR > 100%), the result understates true lifetime value.
  • Organic CAC is sensitive to hourly rate. A founder's real opportunity cost may be their day-job rate, a market freelance rate, or zero — the tool takes it at face value.
  • Benchmarks from OpenView/Paddle are B2B-SaaS weighted; B2C products and prosumer tools typically carry 2–3× the churn.

7. Reproducibility

Input
arpu = $25, grossMargin = 90%, monthlyChurn = 4%, paidCac = $0, hours = 10, hourly = $50, customers/mo = 5.

Expected output
ltv = $562.50, organic_cac = $100, cac = $100, payback ≈ 4.4 months, ltv:cac = 5.6×.

8. Change log

  • 2026-04-24 methodology page first published.

Worked example

Run live against the same engine this site ships (/engines/solo-founder-unit-economics.js). The inputs and outputs below are recomputed on every build and independently re-verified in CI — they are never hand-authored.

Input

tool
solo_founder_unit_economics
mrr
5000
paying_customers
100
monthly_churn_rate
3
cac
50
arpu
50
monthly_fixed_costs
500

Output

arpu
50
ltv
1665
cac
50
ltvCacRatio
33.3
paybackMonths
1
customerLifetimeMonths
33.3
monthlyProfitPerCustomer
50
breakEvenCustomers
10
totalMonthlyProfit
4500
insight
Healthy unit economics: $1665 LTV on $50 CAC (33.3x), 33.3-month customer lifetime. At 100 customers you net $4500/mo after fixed costs.

Frequently asked questions

What does the Solo Founder Unit Economics calculate?
Computes LTV, CAC, payback, and break-even customer count for a solo founder whose acquisition is mostly organic (content, community, SEO). It does not assume venture-stage CAC or enterprise contract structures.
What inputs does the Solo Founder Unit Economics need?
It takes 6 inputs: arpu, grossMargin (default 85), monthlyChurn, paidCac (default 0), hoursPerMonth (default 0), hourlyRate (default 0). Outputs returned: ltv, cac, paybackMonths, ltvCacRatio.
What formula does the Solo Founder Unit Economics use?
The exact computation is: ltv = (arpu * gross_margin) / monthly_churn; organic_cac = (hours_per_month * hourly_rate) / customers_per_month; cac = paid_cac + organic_cac; payback = cac / (arpu * gross_margin); ltv_cac_ratio = ltv / cac
Can I verify the Solo Founder Unit Economics with a worked example?
Yes. With arpu = $25, grossMargin = 90%, monthlyChurn = 4%, paidCac = $0, hours = 10, hourly = $50, customers/mo = 5. the tool returns ltv = $562.50, organic_cac = $100, cac = $100, payback ≈ 4.4 months, ltv:cac = 5.6×.
Where does the Solo Founder Unit Economics get its benchmark data?
Reference data is sourced from: OpenView SaaS Benchmarks 2024 (as of 2024); Paddle SaaS Benchmarks 2024 (as of 2024).
What can the Solo Founder Unit Economics not tell me?
Known limitations: LTV formula assumes memoryless churn and no expansion revenue. If existing customers are expanding (NDR > 100%), the result understates true lifetime value. Organic CAC is sensitive to hourly rate. A founder's real opportunity cost may be their day-job rate, a market freelance rate, or zero — the tool takes it at face value. Benchmarks from OpenView/Paddle are B2B-SaaS weighted; B2C products and prosumer tools typically carry 2–3× the churn.
Business planning estimates — not legal, tax, or accounting advice.