Strasmore Research
Learn Matt ConnorBy Matt Connor

What Is a Stock Split? Ratios and Mechanics

A stock split multiplies share count and divides price in a fixed ratio, value unchanged. Ten years of split records show which ratios companies actually pick.

A stock split changes a company's share count and per-share price at the same time, in a fixed ratio, and leaves the total value of every holding exactly where it was. In a 4-for-1 split each old share becomes four new ones, each priced near a quarter of the old level; nothing about the company itself — revenue, profits, who owns what fraction — moves at all. This guide covers the mechanics, the ratios companies actually use, and one thing a decade of split records makes plain: the most common splits on US exchanges run the other way.

What is a stock split?

A stock split is a corporate action in which a company multiplies its share count by a fixed ratio and its share price divides by the same ratio. The board approves the ratio and an execution date — the first trading day at the new price and count. From that morning, a holder of 100 shares in a 4-for-1 split owns 400 shares at about one quarter the prior price. The position's dollar value, and the holder's percentage of the company, are identical before and after.

Everything share-denominated scales together. Shares outstanding and the stock float multiply by the ratio. The per-share dividend divides by it, leaving total dividend dollars unchanged. Listed option contracts are adjusted by the Options Clearing Corporation so existing positions keep their economics. Market capitalization — price times share count — does not move. The classic analogy holds up: slicing a pizza into eight pieces instead of four changes the count of slices, not the amount of pizza.

What does a split look like on the tape?

The cleanest way to see the mechanics is a real one. NVIDIA ran a 10-for-1 split with an execution date of June 10, 2024. Here are the regular-session open and close prints on its last pre-split trading day and its first post-split day, straight from the minute-by-minute trade record:

QueryNVDA around its 10-for-1 split — regular-session open and close, last pre-split day vs first post-split day
The exact SQL behind every number
SELECT toString(day) AS session,
       round(argMinIf(toFloat64(open), window_start, rth), 2) AS regular_open,
       round(argMaxIf(toFloat64(close), window_start, rth), 2) AS regular_close
FROM (
    SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS day,
           window_start, open, close,
           toTimeZone(window_start, 'America/New_York') >= toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 09:30:00'), 'America/New_York')
           AND toTimeZone(window_start, 'America/New_York') < toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 16:00:00'), 'America/New_York') AS rth
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'NVDA'
      AND window_start >= '2024-06-07 04:00:00'
      AND window_start < '2024-06-11 04:00:00'
)
GROUP BY day
ORDER BY day

NVDA closed the regular session at $1208.65 on 2024-06-07 and opened at $120.37 on 2024-06-10 — one tenth the price, ten times the shares, the same company at the same valuation. On an unadjusted chart that morning looks like a 90% crash. It isn't one, and this is worth knowing: most charting tools quietly rewrite history after a split, dividing every past price by the ratio so the line stays continuous. The prints above are the prices as they actually traded.

What split ratios do companies actually use?

Split announcements get described loosely — "a big split," "a huge ratio." The records are specific. Counting whole-number forward splits across all US-listed securities over the trailing year:

QueryMost common forward split ratios, July 2025 through June 2026 — whole-number ratios, all US-listed securities
The exact SQL behind every number
SELECT concat(toString(toInt32(split_to)), '-for-1') AS ratio,
       count() AS splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2025-07-01' AND execution_date <= '2026-06-30'
  AND split_from = 1 AND split_to >= 2 AND split_to = round(split_to)
GROUP BY ratio
ORDER BY splits DESC
LIMIT 6

The most common forward ratio over the window was 2-for-1, with 76 executions, followed by 3-for-1 (51). Simple small ratios dominate; the double-digit ratios that make headlines — like NVIDIA's 10-for-1 above — are a minority.

Reverse splits are more common than forward splits

A reverse split runs the arithmetic the other way: share count divides, price multiplies. A reverse stock split of 1-for-10 turns 1,000 shares at $0.50 into 100 shares at $5.00. Exchanges maintain minimum-price listing standards, and a reverse split is the standard tool for lifting a low-priced share back above them — the full mechanics live in the linked guide.

What most explainers miss is the score. Counting every split executed on US-listed securities over the last ten full years:

QueryA decade of splits, 2016-2025: forward vs reverse totals and the annual score
The exact SQL behind every number
SELECT sum(forward_splits) AS forward_total,
       sum(reverse_splits) AS reverse_total,
       round(sum(reverse_splits) / sum(forward_splits), 2) AS reverse_per_forward,
       countIf(reverse_splits > forward_splits) AS years_reverse_ahead
FROM (
    SELECT toYear(execution_date) AS year,
           countIf(split_to > split_from) AS forward_splits,
           countIf(split_from > split_to) AS reverse_splits
    FROM global_markets.stocks_splits
    WHERE execution_date >= '2016-01-01' AND execution_date < '2026-01-01'
    GROUP BY year
)

Reverse splits outnumbered forward splits 7109 to 4122 across 2016-2025 — about 1.72 reverse splits for every forward one — and the reverse side won the annual count in 9 of the ten years. Year by year:

QueryForward vs reverse splits per year, all US-listed securities, 2016-2025
The exact SQL behind every number
SELECT toYear(execution_date) AS year,
       countIf(split_to > split_from) AS forward_splits,
       countIf(split_from > split_to) AS reverse_splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2016-01-01' AND execution_date < '2026-01-01'
GROUP BY year
ORDER BY year

In 2025, the last full year, the count ran 1038 reverse against 429 forward. The one close year was 2018, at 529 forward to 526 reverse. The pattern reads clearly once you know where each kind of split lives: forward splits concentrate in large companies whose prices have climbed for years, while reverse splits are routine housekeeping across the market's long tail of small, low-priced names — and the tail has more members than the head. The most common reverse ratios over the trailing year:

QueryMost common reverse split ratios, July 2025 through June 2026 — whole-number ratios, all US-listed securities
The exact SQL behind every number
SELECT concat('1-for-', toString(toInt32(split_from))) AS ratio,
       count() AS splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2025-07-01' AND execution_date <= '2026-06-30'
  AND split_to = 1 AND split_from >= 2 AND split_from = round(split_from)
GROUP BY ratio
ORDER BY splits DESC
LIMIT 6

1-for-10 leads with 237 executions in the window. In the first half of 2026 the overall pattern held: 597 reverse splits against 233 forward across January through June.

QuerySplits executed in the first half of 2026 — forward vs reverse
The exact SQL behind every number
SELECT countIf(split_to > split_from) AS forward_splits,
       countIf(split_from > split_to) AS reverse_splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2026-01-01' AND execution_date <= '2026-06-30'

Stock split FAQ

Does a stock split change the value of my investment?

No. The share count multiplies by the ratio and the price divides by it, and the product — your position's dollar value — is unchanged. Your percentage ownership of the company is also unchanged, and the split itself is not a taxable event under US rules; your cost basis simply spreads across the new share count.

Why do companies split their stock?

Companies typically announce forward splits after long price advances, and the announcements usually cite accessibility: a lower per-share price makes round lots and option contracts (each covering 100 shares) smaller-ticket items. A split changes none of the company's fundamentals — it is a repackaging of the same value into more units.

What is a reverse stock split?

A reverse split reduces the share count and raises the price by the same ratio — 1-for-10 turns ten shares into one at ten times the price. It is the mirror image of a forward split and is commonly executed by low-priced companies working to stay above exchange minimum-price listing standards. Our reverse stock split guide covers it in full.

What happens to dividends and options when a stock splits?

Both are adjusted automatically. The per-share dividend divides by the split ratio, so total dividend dollars paid to a holder are unchanged — the ex-dividend date machinery runs on split-adjusted amounts thereafter. Listed options are adjusted by the Options Clearing Corporation: strikes divide by the ratio and contract counts multiply, preserving each position's economics.

Do I have to do anything when a stock I own splits?

No. Brokers apply splits automatically on the execution date: the new share count and adjusted cost basis appear in the account with no action needed. Fractional results from odd ratios are typically paid out as cash in lieu.


Every count above is a stored, versioned query — expand the SQL under any panel to see exactly what was measured, or run the same questions in plain English on the Strasmore terminal.