来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill pricing-psychology-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | pricing-psychology-guide |
| description | Behavioral economics in pricing strategies and consumer decisions |
| metadata | {"openclaw":{"emoji":"💰","category":"domains","subcategory":"economics","keywords":["pricing","behavioral economics","consumer behavior","anchoring","framing","willingness to pay"],"source":"wentor-research-plugins"}} |
Pricing psychology sits at the intersection of behavioral economics, marketing science, and consumer research. Classical economics assumes consumers evaluate prices rationally -- comparing marginal utility to marginal cost. Decades of experimental evidence show this is wrong. Consumers use heuristics, are influenced by reference points, respond to framing, and systematically deviate from rational price evaluation.
Understanding these deviations is both scientifically important (they reveal how human cognition processes economic information) and practically consequential (pricing is one of the highest-leverage decisions firms make). This guide covers the key psychological mechanisms in pricing, experimental methods for studying them, and the analytical tools researchers use to measure willingness to pay and price sensitivity.
The focus is on academic rigor: well-identified causal effects, incentive-compatible elicitation methods, and results that replicate. The field has been significantly impacted by the replication crisis, and this guide emphasizes methodological best practices that meet current standards.
Anchoring in pricing (Tversky & Kahneman, 1974):
MECHANISM:
- Initial price exposure creates a reference point
- Subsequent judgments are adjusted (insufficiently) from that anchor
- Effect persists even when the anchor is clearly irrelevant
EXPERIMENTAL EVIDENCE:
1. Ariely et al. (2003): Social security number → WTP for wine
- Students with higher SS numbers bid more for identical wine
- Effect size: r = 0.33-0.52 across product categories
2. Northcraft & Neale (1987): Real estate anchoring
- Listing price influenced expert appraisers
- Experts denied being influenced (unaware of the effect)
3. Nunes & Boatwright (2004): Incidental anchors in retail
- Adjacent product prices influence focal product evaluation
- Even when products are in different categories
RESEARCH DESIGN:
- Random anchor assignment is critical for causal identification
- Include manipulation check: "Were you influenced by the initial number?"
- Pre-register the anchor-WTP relationship hypothesis
Reference price = the price consumers expect or consider "normal"
TYPES OF REFERENCE PRICES:
1. Internal reference price (memory-based)
- Last price paid
- Expected future price
- "Fair" or "just" price
2. External reference price (context-based)
- Competitor prices displayed
- MSRP / "was" price (strikethrough pricing)
- Unit price comparisons
PROSPECT THEORY APPLICATION (Kahneman & Tversky, 1979):
- Price < Reference → GAIN → Purchase more likely
- Price > Reference → LOSS → Loss aversion kicks in
- Loss aversion coefficient lambda ≈ 2.0-2.5 for prices
- Implication: Price increases hurt more than equivalent decreases help
| Effect | Description | Evidence Strength |
|---|---|---|
| Left-digit effect | $3.99 perceived much cheaper than $4.00 | Strong (Thomas & Morwitz, 2005) |
| Decoy effect | Asymmetrically dominated option shifts choice | Strong (Huber et al., 1982) |
| Compromise effect | Middle option preferred in three-option sets | Strong (Simonson, 1989) |
| Endowment effect | WTA > WTP (owners value goods more) | Moderate (post-replication) |
| Mental accounting | Money categorized into separate mental accounts | Strong (Thaler, 1999) |
| Price-quality heuristic | Higher price = higher quality perception | Moderate (context-dependent) |
| Pain of paying | Neural pain response to spending money | Strong (Prelec & Loewenstein, 1998) |
| Bundle bias | Preference for bundled pricing over itemized | Moderate |
import numpy as np
from typing import List, Dict
def bdm_mechanism(stated_wtp: float, price_range: tuple = (0, 50)) -> dict:
"""
Becker-DeGroot-Marschak (BDM) incentive-compatible mechanism.
Participants state WTP; random price drawn; buy if WTP >= price.
Truthful reporting is the dominant strategy.
"""
random_price = np.random.uniform(*price_range)
purchase = stated_wtp >= random_price
return {
"stated_wtp": stated_wtp,
"random_price": round(random_price, 2),
"purchased": purchase,
"payment": round(random_price, 2) if purchase else 0,
}
def multiple_price_list(prices: List[float]) -> Dict:
"""
Multiple Price List (MPL) method for WTP elicitation.
Present a series of binary choices: buy at price X or keep money.
WTP = switching point from "buy" to "keep money."
"""
return {
"instructions": (
"For each price below, indicate whether you would buy "
"the product at that price (one row will be randomly selected "
"for real payment)."
),
"choices": [
{"price": p, "buy": , : }
p (prices)
],
: ,
}
() -> :
{
: ,
: ,
: ,
: ,
}
# Discrete Choice Experiment (DCE) for price research
# Standard method for decomposing preferences across attributes including price
design_example = {
"attributes": {
"brand": ["Brand A", "Brand B", "Brand C"],
"features": ["Basic", "Standard", "Premium"],
"price": ["$9.99", "$14.99", "$19.99", "$24.99"],
"warranty": ["1 year", "3 years"],
},
"design": "D-optimal fractional factorial",
"choice_sets": 12, # Number of choice tasks per respondent
"alternatives": 3, # Options per choice set (+ no-purchase)
"sample_size": 300, # Respondents
"analysis": "Mixed logit (random coefficients) for heterogeneity",
"output": {
"part_worths": "Utility contribution of each attribute level",
"price_sensitivity": "Distribution of price coefficients",
"wtp_for_features": "WTP = -beta_feature / beta_price",
"optimal_price": "Price that maximizes share or revenue",
},
}
import numpy as np
from scipy import stats
def estimate_price_elasticity(
prices: np.ndarray,
quantities: np.ndarray,
method: str = "log-log",
) -> dict:
"""
Estimate price elasticity of demand.
Methods:
- "log-log": ln(Q) = a + e*ln(P) + error (constant elasticity)
- "arc": Midpoint elasticity between two points
"""
if method == "log-log":
log_p = np.log(prices)
log_q = np.log(quantities)
slope, intercept, r_value, p_value, std_err = stats.linregress(log_p, log_q)
return {
"elasticity": slope,
"std_error": std_err,
"r_squared": r_value ** 2,
"p_value": p_value,
"interpretation": (
"elastic" if abs(slope) > 1
else "unit elastic" if abs(slope) == 1
else "inelastic"
),
}
elif method == "arc":
# Midpoint method for discrete price changes
elasticities = []
for i in range(len(prices) - 1):
pct_q = (quantities[i+1] - quantities[i]) / ((quantities[i+1] + quantities[i]) / 2)
pct_p = (prices[i+] - prices[i]) / ((prices[i+] + prices[i]) / )
pct_p != :
elasticities.append(pct_q / pct_p)
{
: elasticities,
: np.mean(elasticities),
}
Pricing experiment design checklist:
1. INCENTIVE COMPATIBILITY
[ ] Use BDM, Vickrey auction, or real purchase
[ ] Never use hypothetical WTP without validation
[ ] Endow participants with money to make purchases real
2. REFERENCE PRICE CONTROL
[ ] Measure or manipulate reference prices
[ ] Control for prior brand/product experience
[ ] Randomize presentation order
3. DEMAND CHARACTERISTICS
[ ] Blind participants to the pricing manipulation
[ ] Include filler products to mask the focal comparison
[ ] Use between-subjects design for price comparisons
4. ECOLOGICAL VALIDITY
[ ] Use realistic product descriptions and images
[ ] Set price ranges within the market range
[ ] Include a "no purchase" option
5. ANALYSIS
[ ] Pre-register hypotheses and analysis plan
[ ] Report effect sizes and confidence intervals
[ ] Test for heterogeneity across consumer segments
[ ] Check for order effects and carryover