Stock Splits and the Dow Divisor, Explained
A stock split resets the Dow divisor and shrinks that member's weight, while an S&P 500 fund never trades on it. The arithmetic, worked with market data.
A stock split changes the Dow divisor, and that reset is the reason the Dow Jones Industrial Average does not lurch on the morning a member splits. The Dow is price weighted: its level is the sum of its members' share prices divided by a single number, the divisor. When a 4-for-1 split cuts a member's price to a quarter, the divisor is cut alongside it, the published level carries on unbroken, and that member's pull on the average drops to a quarter of what it was.
What the Dow divisor actually does
A price-weighted average adds up member prices and divides by a divisor. Set the divisor to 1 and the average is simply the mean price of its members. Every time something restates the price sum without changing what any shareholder owns, the divisor is restated with it to hold the level steady across that instant. Splits do this. So do index changes, when a departing member is replaced by a company trading at a different price, and spinoffs, which carve value out of a member's quoted price.
S&P Dow Jones Indices, which maintains the Dow, sets out the rule in its Dow Jones Averages methodology: the divisor is adjusted to leave the index value unchanged immediately before and immediately after a corporate action. The divisor's current value is a moving number and is not worth memorising. The rule behind it does not move.
What a 4-for-1 split does to a price-weighted index
Take a made-up index of five members with a divisor of 0.9. The share prices are $400, $200, $150, $100 and $50. They sum to $900, and $900 divided by 0.9 puts the index at 1,000.
Now the $400 member splits 4-for-1. Its price becomes $100 and every holder ends up with four times as many shares, so nothing about the company's value has moved. The new price sum is $600. Leave the divisor at 0.9 and the index opens at 666.7, a 33% drop no shareholder experienced. The index committee instead solves for the divisor that holds the level at 1,000: the new price sum of $600 divided by the old level of 1,000 gives a divisor of 0.6.
The level is continuous. The weight table is not:
- Before the split, the $400 member is 44.4% of the price sum, the largest weight in the index.
- After the split, that same member is 16.7%.
- The $200 member inherits the top spot at 33.3%.
- Every other member's weight rises without any of them trading a cent.
The mechanics on the company side, share count up and price down with ownership untouched, are covered in what a stock split is. Listed option contracts get the same treatment through a formal contract adjustment, which is how stock splits affect options.
Price weight and company size are different numbers
In a price-weighted index a member's influence is its share price over the sum of member prices. Company size never enters the calculation. The panel below builds a stand-in price-weighted basket out of household large caps and sets each name's price weight beside its cap weight, the weight it would carry in a market-value-weighted benchmark like the S&P 500.
The exact SQL behind every number
WITH members AS
(
SELECT
ticker,
argMax(toFloat64(price), date) AS last_price,
argMax(toFloat64(market_cap), date) AS last_cap
FROM global_markets.stocks_ratios
WHERE ticker IN ('AAPL','AMGN','AXP','CAT','GS','HD','JNJ','KO','MCD','MSFT','V','WMT')
AND date >= today() - 45
AND price > 0
AND market_cap > 0
GROUP BY ticker
),
totals AS
(
SELECT
sum(last_price) AS price_sum,
sum(last_cap) AS cap_sum
FROM members
)
SELECT
m.ticker AS symbol,
round(m.last_price, 2) AS share_price,
round(100 * m.last_price / t.price_sum, 2) AS price_weight_pct,
round(100 * m.last_cap / t.cap_sum, 2) AS cap_weight_pct
FROM members AS m
CROSS JOIN totals AS t
ORDER BY price_weight_pct DESCGS tops the price-weighted column at 21.21% of the price sum on a share price of $1037.21, against 2.44% of the basket's market value. At the other end, KO carries 1.77% of the price sum and 3.02% of the value. Across all 12 names the two columns are measuring different things, and a split moves only one of them.
The top weight in a price-weighted basket drifts on its own
Price weights shift whenever prices shift, with no rebalance and no committee vote involved. A 4-for-1 split by whichever name leads the price column would take roughly three quarters off that first number in one morning, with no cash and no trade behind it. Charts of that member's own history usually get restated at the same time, which is the subject of split-adjusted price history.
Why an S&P 500 index fund does not trade a split
A cap-weighted index weights each member by shares outstanding times price. A 4-for-1 split multiplies the share count by four and divides the price by four. The product is unchanged, the member's weight is unchanged, and the benchmark's own divisor needs no adjustment for the split at all. A fund tracking that benchmark ends up holding four times as many shares worth the same dollars, which is a bookkeeping entry rather than a trade.
What does force turnover inside an index fund is a change in what the index holds, or in how much of it:
- an addition or a deletion, when a company joins or leaves the index
- a share-count or float update, which restates a member's investable value
- a scheduled rebalance, when the provider refreshes those inputs on a set calendar
- other corporate actions such as mergers and spinoffs, which retire or create a line item
Splits appear nowhere on that list. That is the practical gap between the two index styles: a split is a genuine weight event inside the Dow and a share-count change nobody trades around inside the S&P 500.
How often does a big split come along?
Splits of 4-for-1 or larger went quiet for most of the 2010s and came back in force after 2020. The panel below pulls every one of them since January 2020 among names most readers would recognise.
The exact SQL behind every number
SELECT
ticker AS symbol,
concat(toString(any(split_to)), '-for-', toString(any(split_from))) AS split_ratio,
formatDateTime(execution_date, '%b %e, %Y') AS effective_on,
round(toFloat64(any(split_to)) / toFloat64(any(split_from)), 1) AS shares_multiple
FROM global_markets.stocks_splits
WHERE execution_date >= '2020-01-01'
AND execution_date < today()
AND split_from > 0
AND toFloat64(split_to) / toFloat64(split_from) >= 4
AND ticker IN ('AAPL','AMZN','AVGO','CELH','CMG','CSGP','DXCM','FTNT','GOOG','GOOGL','ISRG','LRCX','MSFT','NFLX','NVDA','ORLY','PANW','SHOP','SMCI','TSLA','WMT')
AND ticker NOT IN ('SPCX')
GROUP BY ticker, execution_date
ORDER BY shares_multiple DESC, execution_date17 of them clear the 4-for-1 bar. The widest ratio in the set is 50-for-1, at CMG on Jun 26, 2024. The narrowest is 4-for-1, at DXCM. Any of these inside a price-weighted index sends the divisor down the same morning, in the same proportion as the price. Names with a split already scheduled are listed in upcoming stock splits.
Step back from the megacaps and the flow is steadier than the headlines suggest. Forward splits and reverse splits both restate a price, and both send an index committee back to the divisor.
The exact SQL behind every number
SELECT
toString(toYear(execution_date)) AS year,
uniqExactIf((ticker, execution_date), split_to > split_from) AS forward_splits,
uniqExactIf((ticker, execution_date), split_to < split_from) AS reverse_splits
FROM global_markets.stocks_splits
WHERE execution_date >= '2016-01-01'
AND execution_date < today()
AND split_from > 0
AND split_to > 0
GROUP BY year
ORDER BY yearSo far in 2026, US-listed companies have executed 284 forward splits and 749 reverse splits, and the year still has months to run. Only a handful of those names sit among the Dow's thirty. For every other one the arithmetic is identical, it simply runs inside whichever index does hold them.
Data notes
The twelve-name basket in the weight panel is a stand-in built from household large caps, not a copy of the Dow's official membership, which the index provider revises from time to time. The point of the panel is the arithmetic of price weighting against cap weighting, and that arithmetic is the same whatever the member list. Prices and market values come from the most recent record for each ticker.
FAQ
Does a stock split change the Dow Jones Industrial Average?
Not its level. The divisor is restated at the same instant the split takes effect, leaving the average unchanged across the event. What does change is the split member's weight inside the average, which falls in proportion to its new share price.
What is the Dow divisor?
It is the single number the Dow's price sum is divided by to produce the published level. S&P Dow Jones Indices restates it for splits, index changes and spinoffs, keeping the level continuous across each one. Decades of restatements have carried it well below 1, which is why the average prints far above the sum of its thirty share prices.
Does a stock split change a company's weight in the S&P 500?
No. Cap weighting multiplies shares outstanding by share price, and a split moves those two by the same factor in opposite directions. The weight lands exactly where it started.
Do index funds have to trade when a stock splits?
No trade is required. The fund records more shares at a lower price each, holding the same dollar value. Turnover comes instead from index additions and deletions, and from share-count updates the provider applies on a set calendar.
Why do splits matter more for the Dow than for the S&P 500?
The Dow ranks its members by share price, so cutting a price cuts influence. The S&P 500 ranks by market value, which a split leaves alone. The same corporate action is a weight event in one index and a non-event in the other.
Every panel above ships with the SQL that produced it, so expand one to see exactly how the weights were counted. To run the same price-weight against cap-weight comparison over a basket you follow, ask for it in plain English on the Strasmore terminal.