Summary: This document is an implementation-ready template for an Equity Split Calculator specifying conceptual models, precise math and formulas, UI input/output fields, step-by-step algorithms, and a founders’ best-practices checklist suitable for building a web tool, spreadsheet, or product feature. It covers allocation methods (equal, weighted, and Slicing Pie–style dynamic), vesting schedules and cliffs, dilution from financing including option pools and convertibles, and computes pre- and post-money cap table positions while providing vesting/dilution math and recommended guardrails.
Equity Split Calculator Template (Markdown)
This document is a professional, implementation-ready template for an "Equity Split Calculator" tool. It describes the conceptual models, the exact math and formulas, UI input/output fields, step-by-step algorithms, and a polished best-practices checklist founders should follow. Use this as the spec for a web tool, spreadsheet, or product feature.
1 Purpose & Overview
An Equity Split Calculator helps founders, early employees, and investors determine:
How to allocate equity between founders based on contribution models (equal, weighted, or dynamic),
The effect of vesting schedules and cliffs,
The impact of financing (dilution), option pools, and convertible instruments,
Resulting cap table positions (pre- and post-money).
This template covers deterministic models (equal and weighted), a dynamic model (Slicing Pie style), vesting math, dilution/financing math, and recommended guardrails.
9 Best Practices for Founders (authoritative checklist)
Start with a principled conversation, not an auction:
Define roles, responsibilities, and expectations (who will do what and for how long).
Agree on a decision-making process and escalation path.
Choose a model that matches reality:
Equal splits are acceptable when contributions are symmetrical and ongoing.
Weighted/score-based splits reduce perceived unfairness when contributions differ.
Use dynamic models (Slicing Pie) when contributions are fluid and you want real-time fairness.
Always vest founder equity (standard: 4 years with 1-year cliff):
Protects the company and the cofounders from early departures.
Use monthly or quarterly vesting after cliff for predictability.
Pre-money vs post-money option pool matters:
Investors commonly demand a pre-money-created option pool this dilutes founders but preserves investor ownership targets.
Negotiate pool sizing and timing clearly; show the math.
Document IP assignment and employment/consulting agreements at incorporation:
Ensure founders assign IP to the company before contributors start work.
Use written agreements to avoid disputes later.
Track contributions and keep a clean cap table:
Maintain a single source of truth: spreadsheet, cap table software, or the company minute book.
Record share issuances, exercises, transfers, and repurchases.
Factor dilution into planning:
Model multiple rounds: seed, Series A, etc. Show expected founder % after 2–3 rounds.
Plan hiring needs and option pool growth (engineers, sales, key hires).
Use a lawyer and accountant for the final documents:
The calculator provides structure and clarity, but legal documents (by counsel) implement equity and governance.
Avoid post-hoc adjustments that undercut trust:
If changes are necessary, document and re-explain the rationale. Transparency preserves relationships.
Consider tax implications:
Counsel on 83(b) elections for early restricted stock grants (time-sensitive).
Evaluate option exercise tax consequences.
Consider vesting acceleration clauses cautiously:
Single-trigger acceleration (on change of control) can deter investors.
10 Edge Cases & Notes
When SAFEs/convertibles exist, include modeled conversions (cap, discount) to compute expected shares at conversion they impact dilution materially.
If founders are paid salaries later, ensure the equity split accounts for past sweat equity or use dynamic unit tracking.
If IP or customers are assigned significant value, require independent valuation or rigorous justification.
If you plan to use dynamic equity, document multipliers and bookkeeping rules before launch to ensure trust.
11 Appendix: Compact Formula Reference
Ownership: ownershipi=total_sharessharesi
12 Final recommendations (executive)
Use this calculator as a negotiation aid and planning tool not as legal documentation.
Model multiple scenarios (varying valuation, pool size, and financing size) and present results visually (pre/post cap table waterfall chart).
Require all founders to execute IP assignment, vesting schedules and founder service agreements concurrent with share issuance.
Re-run the calculator before each hiring decision and financing conversation to keep expectations realistic.
If you’d like, I can:
Produce a ready-to-use spreadsheet (Excel/Google Sheets) implementing these formulas with sample inputs,
Produce a minimal web UI spec (React + Node) with state management and CSV output,
Or draft complete wording for founder agreements and cap table entries to use with counsel.
Which output would you prefer next?
Ready to scale with AI?
Transform your ideas into production-ready AI products with expert engineering.
Looking for an AI partner?
I help ambitious companies build robust, scalable AI solutions. Let's discuss your roadmap.
sharesi
Pre-money valuation Vpre: company value before new investment.
Investment I: capital invested in the round.
Post-money valuation Vpost: Vpre+I.
Option pool P: reserved shares for future hires, usually expressed as % of post-money or pre-money depending on negotiation.
Vesting: schedule by which restricted shares/options become owned.
Cliff: initial period before any vesting occurs (commonly 12 months).
Dilution when new shares issued new_ownershipi=total_shares+new_sharessharesi
Post-money math (investor ownership) Vpost=Vpre+I investor_pct=VpostI
If Spre is pre-money outstanding shares: price_per_share=S
Ownership with new investor (share counts) post_owneri=Spostsharesi
Pre-creating an option pool (size in shares)
If desired pool post pct =p (fraction of post-money shares) and you need pool_shares such that pool_shares=p×(Spre+shares_issued+pool_shares)
Solve: pool_shares=1−pp×(Spre+shares_issued
Vesting (continuous linear vesting)
Let Ttotal = total shares granted; duration =D (in same time units), cliff =C.
If t<C: vested(t)=0
If t≥C and t<D: vested(t)=Ttotal×(D
If t≥D: vested(t)=Ttotal
For discrete monthly vesting after cliff, replace t/D with ⌊months_elapsed⌋/(Din_months).
Unvested shares repurchase value (common approach) repurchase_amount=unvested_shares×repurchase_price_per_share repurchase_price_per_share typically = par value or a negotiated fair market price.
Weighted-score model (deterministic)
Let attributes k=1..K, attribute weights wk (sum of weights is arbitrary; normalized not required), each founder i provides score sik. WeightedScorei=∑k(wk equityi=∑jWeightedScore
Dynamic units: compute Units_i → ownership → convert to shares at agreed cap
Apply vesting: set granted shares and compute vesting schedule.
Simulate financing:
a. Compute price_per_share or investor_pct.
b. Compute shares_issued.
c. If option_pool required, compute pool_shares per formula (pre- or post-money).
d. Compute Spost and final ownerships.
Output cap table and schedule; provide "what-if" sliders (investment amount, pool size).
Provide download and legal/tax advisories.
Double-trigger (acquisition + termination) is common and aligns incentives.