auction-first-price-shading
Auction First-Price Shading
Table of Contents
Example
Scenario: Domain-neutral sealed-bid auction. A bidder must submit a blind bid for an item whose private value to them is 28 units of budget currency. Six other bidders are expected to compete. Values across bidders look roughly uniform. The bidder is mildly risk-averse (0.2) and has 89 units of budget remaining.
Inputs:
true_value = 28n_bidders_estimate = 6value_distribution = "uniform"risk_aversion = 0.2budget_remaining = 89
Core computation:
shade_fraction_base = (N - 1) / N = 5 / 6 = 0.833
shaded_bid_base = true_value x shade_fraction_base = 28 x 0.833 = 23.33
Risk-aversion adjustment (raise the bid toward true value to boost win probability):
shade_fraction' = shade + risk_aversion x (1 - shade) x 0.4
= 0.833 + 0.2 x (1 - 0.833) x 0.4
= 0.833 + 0.0133
= 0.847
shaded_bid' = 28 x 0.847 = 23.72
Budget + safety cap:
cap = min(shaded_bid', 0.9 x true_value, budget_remaining)
= min(23.72, 25.2, 89)
= 23.72 -> round to 24
Output:
shaded_bid = 24shade_fraction = 0.847rationale = "Uniform-values equilibrium shades to (N-1)/N = 0.833 at N=6. Mild risk aversion (0.2) nudges bid up to 0.847 of true value to raise win probability. Final bid capped below 0.9x true_value and well under budget. Expected to win against 5 rivals drawing values from a comparable uniform distribution."assumptions_flagged = ["uniform private-value distribution", "N=6 is an estimate, not observed", "risk_aversion=0.2 is a modeling choice"]
Workflow
Copy this checklist and track progress:
Auction Shading Progress:
- [ ] Step 1: Validate inputs (true_value > 0, 1 <= N <= 12, distribution known)
- [ ] Step 2: Compute base shade from (N-1)/N
- [ ] Step 3: Apply distribution adjustment (uniform / log-normal / empirical)
- [ ] Step 4: Apply risk-aversion adjustment
- [ ] Step 5: Apply budget and safety caps
- [ ] Step 6: Emit shaded_bid, shade_fraction, rationale, assumptions_flagged
Step 1: Validate inputs
Reject or flag bad inputs before computing. See resources/template.md for the full input contract.
-
true_valueis a non-negative number -
n_bidders_estimateis an integer, clamp to[1, 12] -
value_distributionis one of"uniform","log-normal","empirical" -
risk_aversionis in[0, 1](default 0 if missing) -
budget_remainingis a non-negative number (if missing, treat as effectively infinite and flag)
Step 2: Compute base shade from (N-1)/N
For risk-neutral bidders drawing values from a uniform distribution on [0, v_max], the symmetric Bayes-Nash equilibrium bidding strategy is b(v) = v x (N-1)/N. See resources/methodology.md for the derivation.
-
shade_fraction = (N - 1) / N - Edge case
N = 1: shade = 0, bid the minimum increment (monopsonist — no competition) -
shaded_bid = true_value x shade_fraction
Step 3: Apply distribution adjustment
Uniform values give the clean (N-1)/N rule. Real-world value distributions are often clustered (log-normal) or empirically lumpy. See resources/methodology.md.
- If
"uniform": no adjustment; shade =(N-1)/N. - If
"log-normal": values cluster around a mode with a long right tail. Shift shade toward1 - 1/(N x spread)wherespread >= 1captures the coefficient of variation. Defaultspread = 1.5shifts shade up (bid closer to value) because rivals' values are less likely to be extreme. - If
"empirical": distribution learned from prior auctions; pass through a shade-lookup table if available, otherwise fall back to the log-normal formula with spread inferred from observed history.
Step 4: Apply risk-aversion adjustment
Risk-averse bidders accept a smaller expected surplus in exchange for a higher win probability. They bid closer to true value (shade less). See resources/methodology.md.
-
shade_fraction' = shade + risk_aversion x (1 - shade) x 0.4 -
risk_aversion = 0: no change. -
risk_aversion = 1: shade moves 40 percent of the way from its base value to 1 (i.e., toward bidding true value). - The 0.4 scaling factor caps the adjustment; it never closes the full gap because a fully-closed gap gives zero surplus.
Step 5: Apply budget and safety caps
The final bid is clamped three ways:
-
cap_value = 0.9 x true_value— never pay more than 90 percent of what the item is worth; this preserves at least 10 percent expected surplus. -
cap_budget = budget_remaining— never bid more than available budget. -
shaded_bid = min(raw_shaded_bid, cap_value, cap_budget). - Flag in
assumptions_flaggedwhenever a cap binds so downstream consumers know which constraint is active.
Step 6: Emit outputs
Return the four-field output:
-
shaded_bid(number, rounded to the precision the caller expects — integers for most budget systems) -
shade_fraction(0-1, the effective shade actually used) -
rationale(one or two sentences explaining which rule applied and why) -
assumptions_flagged(string array — every assumption the downstream consumer may need to revisit)
Validate using resources/evaluators/rubric_auction_first_price_shading.json. Minimum standard: weighted score of 3.5 or above.
Common Patterns
Pattern 1: Generic sealed-bid auction (uniform values, risk-neutral)
- When it applies: Values are drawn from roughly the same distribution for all bidders, no unique information, no risk aversion.
- Shade:
(N-1)/N. At N=2 shade to 50 percent. At N=6 shade to 83 percent. At N=8 shade to 87.5 percent. - Downstream examples: Fantasy sports waiver auctions (FAAB) for private-value targets, sealed procurement bids, silent-auction pledges.
Pattern 2: Clustered values (log-normal or empirical)
- When it applies: Most bidders' valuations cluster around a shared estimate (common-value component), with a thin tail of outliers. Typical of well-known targets where public information narrows the spread of valuations.
- Shade: move toward
1 - 1/(N x spread). Higher spread means more disagreement and permits deeper shading. Low spread (tight cluster) means less room to shade — bidders must be near consensus to win. - Downstream examples: FAAB bids on headline call-ups, prediction-market limit orders on well-priced contracts, M&A sealed-bid rounds with shared public data.
Pattern 3: Risk-averse bidder
- When it applies: The bidder values winning more than maximizing expected surplus — for example, a fantasy manager who must fill a lineup slot this week, or a procurement team that must secure supply.
- Shade adjustment:
shade' = shade + risk_aversion x (1 - shade) x 0.4. Pushes the bid closer to true value. - Watch for: never lets shade reach 1 (never bids true value), because that yields zero expected surplus. The cap at
0.9 x true_valueenforces this hard.
Pattern 4: Budget-constrained bidder (corner solution)
- When it applies: The unconstrained shaded bid exceeds
budget_remaining. The bidder must either accept a lower win probability or forgo the auction. - Shade adjustment: output equals
budget_remaining, effective shade =budget_remaining / true_value. Flag that the budget constraint binds so downstream logic can decide whether to skip the auction or accept the lower probability. - Watch for: If
budget_remaining < (N-1)/N x true_value, the bidder is under-resourced to compete — flag and let the caller decide.
Guardrails
-
(N-1)/Nis a symmetric-equilibrium result, not a universal truth. It assumes all bidders use the same bidding function and draw values from the same distribution. If one bidder systematically overbids, optimal response shifts. Flag inassumptions_flaggedwhenever the user has signals that rivals are not symmetric. -
N is an estimate, not a datum. Most callers do not know N exactly. Small errors in N matter little (the shade function is smooth), but mistaking N=2 for N=6 changes the bid from 50 percent to 83 percent of value. Always flag
n_bidders_estimateas an assumption. -
Clamp N to
[1, 12]. Values below 1 are nonsense. Values above 12 rarely improve the bid materially (shade at N=12 is 0.917 vs. 0.875 at N=8) and are usually overconfident. Clamping protects against upstream errors. -
Never bid above
0.9 x true_value. This is a hard cap. Even with heavy risk aversion or very large N, crossing 0.9 reduces expected surplus below the point where shading has economic value. -
Never bid above
budget_remaining. The shaded bid is clamped to available budget. If the clamp binds, the output flag must say so — the downstream consumer may prefer to skip rather than bid the full budget on a single item. -
N = 1is a corner case. With no competition, the dominant strategy is to bid the minimum increment (often 1 unit, sometimes 0). The skill returnsshaded_bid = max(1, floor_bid)and flags "no competition — minimum bid wins." Callers supplying their own floor should pass it explicitly; this skill defaults to 1. -
Risk aversion does not dominate the math. The adjustment
shade' = shade + risk_aversion x (1 - shade) x 0.4is bounded by the 0.4 scaling factor. The final bid is still capped at0.9 x true_value. Do not let a risk-averse user bid true value. -
This skill is domain-neutral. It knows nothing about baseball, prediction markets, or procurement. Downstream consumers (e.g.,
mlb-faab-sizerfor fantasy baseball, or a procurement agent for sealed supplier bids) wrap this skill with domain-specific value estimation, urgency multipliers, and winner's-curse haircuts.
Quick Reference
Key formulas:
Uniform-value risk-neutral equilibrium:
shade_fraction = (N - 1) / N
shaded_bid = true_value x shade_fraction
Log-normal / empirical-cluster adjustment:
shade_fraction_adj = 1 - 1 / (N x spread) # spread >= 1 (CoV proxy)
default spread = 1.5
Risk-aversion adjustment:
shade_fraction_ra = shade + risk_aversion x (1 - shade) x 0.4
Final bid (all caps applied):
shaded_bid = min(true_value x shade_fraction_final,
0.9 x true_value,
budget_remaining)
Shade table (uniform, risk-neutral):
| N | shade_fraction | Example: bid on true_value = 100 |
|---|---|---|
| 1 | 0.00 | 1 (minimum increment) |
| 2 | 0.50 | 50 |
| 3 | 0.67 | 67 |
| 4 | 0.75 | 75 |
| 5 | 0.80 | 80 |
| 6 | 0.83 | 83 |
| 8 | 0.875 | 87 (then capped at 90) |
| 10 | 0.90 | 90 (exactly at cap) |
| 12 | 0.917 | 90 (cap binds) |
Input contract:
true_value(number, >= 0) — bidder's own private valuation in units of budget currencyn_bidders_estimate(int, clamped to[1, 12]) — total number of realistic bidders including selfvalue_distribution("uniform"|"log-normal"|"empirical") — shape assumptionrisk_aversion(number,[0, 1], default 0) — 0 = risk-neutral, 1 = maximally risk-aversebudget_remaining(number, >= 0) — hard ceiling on the output
Output contract:
shaded_bid(number) — the deterministic bid to submitshade_fraction(number,[0, 1]) — effective shade actually appliedrationale(string) — one-two sentence explanation for the rationale logassumptions_flagged(string[]) — every modeling assumption the caller may want to revisit
Key resources:
- resources/template.md: Full input/output contract and a worked example
- resources/methodology.md: Formal derivation of
(N-1)/N, log-normal adjustment, risk-aversion adjustment, revenue equivalence theorem, three worked examples at N=2, N=6, N=8 - resources/evaluators/rubric_auction_first_price_shading.json: Eight-criterion rubric with weighted scoring