cbrowser 16.7.1 → 16.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/docs/personas/Persona-ADHD.md +135 -0
- package/docs/personas/Persona-ElderlyUser.md +131 -0
- package/docs/personas/Persona-FirstTimer.md +131 -0
- package/docs/personas/Persona-ImpatientUser.md +132 -0
- package/docs/personas/Persona-Index.md +170 -0
- package/docs/personas/Persona-LowVision.md +133 -0
- package/docs/personas/Persona-MobileUser.md +133 -0
- package/docs/personas/Persona-MotorTremor.md +133 -0
- package/docs/personas/Persona-PowerUser.md +129 -0
- package/docs/personas/Persona-ScreenReaderUser.md +133 -0
- package/docs/research/Bibliography.md +269 -0
- package/docs/research/Research-Methodology.md +224 -0
- package/docs/traits/Trait-AnchoringBias.md +219 -0
- package/docs/traits/Trait-AttributionStyle.md +272 -0
- package/docs/traits/Trait-AuthoritySensitivity.md +133 -0
- package/docs/traits/Trait-ChangeBlindness.md +163 -0
- package/docs/traits/Trait-Comprehension.md +172 -0
- package/docs/traits/Trait-Curiosity.md +181 -0
- package/docs/traits/Trait-EmotionalContagion.md +136 -0
- package/docs/traits/Trait-FOMO.md +142 -0
- package/docs/traits/Trait-Index.md +158 -0
- package/docs/traits/Trait-InformationForaging.md +209 -0
- package/docs/traits/Trait-InterruptRecovery.md +241 -0
- package/docs/traits/Trait-MentalModelRigidity.md +220 -0
- package/docs/traits/Trait-MetacognitivePlanning.md +156 -0
- package/docs/traits/Trait-Patience.md +129 -0
- package/docs/traits/Trait-Persistence.md +157 -0
- package/docs/traits/Trait-ProceduralFluency.md +197 -0
- package/docs/traits/Trait-ReadingTendency.md +208 -0
- package/docs/traits/Trait-Resilience.md +154 -0
- package/docs/traits/Trait-RiskTolerance.md +154 -0
- package/docs/traits/Trait-Satisficing.md +173 -0
- package/docs/traits/Trait-SelfEfficacy.md +191 -0
- package/docs/traits/Trait-SocialProofSensitivity.md +147 -0
- package/docs/traits/Trait-TimeHorizon.md +259 -0
- package/docs/traits/Trait-TransferLearning.md +241 -0
- package/docs/traits/Trait-TrustCalibration.md +219 -0
- package/docs/traits/Trait-WorkingMemory.md +184 -0
- package/package.json +2 -2
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Research Methodology
|
|
2
|
+
|
|
3
|
+
> **Copyright**: (c) 2026 WF Media (Alexandria Eden). All rights reserved.
|
|
4
|
+
>
|
|
5
|
+
> **License**: [Business Source License 1.1](https://github.com/alexandriashai/cbrowser/blob/main/LICENSE) - Converts to Apache 2.0 on February 5, 2030.
|
|
6
|
+
>
|
|
7
|
+
> **Contact**: alexandria.shai.eden@gmail.com
|
|
8
|
+
|
|
9
|
+
This document explains how CBrowser's 25 cognitive traits were selected, validated, and mapped to behavioral parameters.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Selection Criteria
|
|
14
|
+
|
|
15
|
+
Traits were selected based on five criteria:
|
|
16
|
+
|
|
17
|
+
### 1. Peer-Reviewed Foundation
|
|
18
|
+
|
|
19
|
+
Every trait must be grounded in peer-reviewed psychological research published in recognized journals. We prioritize:
|
|
20
|
+
|
|
21
|
+
- **Foundational papers** with 1,000+ citations
|
|
22
|
+
- **Validated measurement instruments** (scales with reported reliability)
|
|
23
|
+
- **Replicated findings** across multiple studies
|
|
24
|
+
|
|
25
|
+
### 2. Web/UI Relevance
|
|
26
|
+
|
|
27
|
+
Traits must have clear implications for web interface interaction:
|
|
28
|
+
|
|
29
|
+
| Category | Example Relevance |
|
|
30
|
+
|----------|-------------------|
|
|
31
|
+
| Temporal | Wait tolerance, session duration |
|
|
32
|
+
| Cognitive | Processing capacity, learning speed |
|
|
33
|
+
| Emotional | Frustration responses, recovery |
|
|
34
|
+
| Behavioral | Click patterns, navigation choices |
|
|
35
|
+
|
|
36
|
+
### 3. Measurable Continuum
|
|
37
|
+
|
|
38
|
+
Traits must exist on a measurable continuum (0.0 to 1.0) rather than being binary:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
0.0 ────────────── 0.5 ────────────── 1.0
|
|
42
|
+
(trait absent) (moderate) (trait maximum)
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### 4. Independent Variance
|
|
46
|
+
|
|
47
|
+
Traits should capture independent variance, not be redundant with other traits. We verify this through:
|
|
48
|
+
|
|
49
|
+
- Correlation analysis (r < 0.70 with other traits)
|
|
50
|
+
- Factor analysis (loading on distinct factors)
|
|
51
|
+
- Behavioral differentiation in testing
|
|
52
|
+
|
|
53
|
+
### 5. Actionable for UX
|
|
54
|
+
|
|
55
|
+
Traits must inform specific UX decisions:
|
|
56
|
+
|
|
57
|
+
| Trait | UX Implication |
|
|
58
|
+
|-------|----------------|
|
|
59
|
+
| Patience | Load time tolerance, progress indicators |
|
|
60
|
+
| Working Memory | Form complexity, multi-step processes |
|
|
61
|
+
| Risk Tolerance | CTA placement, warning effectiveness |
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Trait Tier Organization
|
|
66
|
+
|
|
67
|
+
Traits are organized into 6 tiers based on psychological domain:
|
|
68
|
+
|
|
69
|
+
| Tier | Domain | Count | Rationale |
|
|
70
|
+
|------|--------|-------|-----------|
|
|
71
|
+
| 1 | Core | 7 | Fundamental cognitive capacities |
|
|
72
|
+
| 2 | Emotional | 4 | Affective/motivational factors |
|
|
73
|
+
| 3 | Decision-Making | 5 | Choice and judgment processes |
|
|
74
|
+
| 4 | Planning | 3 | Strategic/procedural cognition |
|
|
75
|
+
| 5 | Perception | 2 | Attention/awareness limitations |
|
|
76
|
+
| 6 | Social | 4 | Social influence/comparison |
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Value Mapping Process
|
|
81
|
+
|
|
82
|
+
### Step 1: Identify Behavioral Anchors
|
|
83
|
+
|
|
84
|
+
For each trait, we identify extreme behavioral anchors from research:
|
|
85
|
+
|
|
86
|
+
**Example: Patience (Nah, 2004)**
|
|
87
|
+
|
|
88
|
+
| Value | Anchor | Research Source |
|
|
89
|
+
|-------|--------|-----------------|
|
|
90
|
+
| 0.0 | Abandons at 2 seconds | Below minimum tolerance |
|
|
91
|
+
| 0.5 | Tolerates 8-10 seconds | Nah (2004) median |
|
|
92
|
+
| 1.0 | Waits 30+ seconds | Above 95th percentile |
|
|
93
|
+
|
|
94
|
+
### Step 2: Interpolate Intermediate Values
|
|
95
|
+
|
|
96
|
+
Intermediate values are interpolated using the research distribution:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
Linear: 0.0 ── 0.25 ── 0.5 ── 0.75 ── 1.0
|
|
100
|
+
Behavioral: 2s ─── 5s ─── 8s ── 15s ─── 30s
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### Step 3: Validate Against Personas
|
|
104
|
+
|
|
105
|
+
Values are validated against known user archetypes:
|
|
106
|
+
|
|
107
|
+
| Persona | Expected Patience | Rationale |
|
|
108
|
+
|---------|-------------------|-----------|
|
|
109
|
+
| Power User | 0.3 | Low tolerance, expects speed |
|
|
110
|
+
| Elderly User | 0.8 | Higher tolerance documented |
|
|
111
|
+
| Mobile User | 0.3 | Context-driven impatience |
|
|
112
|
+
|
|
113
|
+
### Step 4: Cross-Validate Correlations
|
|
114
|
+
|
|
115
|
+
We verify that trait correlations match research:
|
|
116
|
+
|
|
117
|
+
| Trait Pair | Expected r | Observed | Source |
|
|
118
|
+
|------------|------------|----------|--------|
|
|
119
|
+
| Patience ↔ Persistence | 0.40-0.50 | 0.45 | Conscientiousness loading |
|
|
120
|
+
| Self-Efficacy ↔ Persistence | 0.45-0.55 | 0.48 | Bandura (1977) |
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Persona Development
|
|
125
|
+
|
|
126
|
+
### Research-Based Profiles
|
|
127
|
+
|
|
128
|
+
Each persona's trait profile is derived from research on that user population:
|
|
129
|
+
|
|
130
|
+
**Example: Elderly User**
|
|
131
|
+
|
|
132
|
+
| Trait | Value | Research Justification |
|
|
133
|
+
|-------|-------|------------------------|
|
|
134
|
+
| patience | 0.8 | Czaja & Lee (2007): Older adults show 40% higher task persistence |
|
|
135
|
+
| workingMemory | 0.4 | Salthouse (2010): Age-related WM decline of ~0.5 SD |
|
|
136
|
+
| readingTendency | 0.8 | Higher preference for text over scanning |
|
|
137
|
+
| riskTolerance | 0.2 | Greater caution with unfamiliar interfaces |
|
|
138
|
+
|
|
139
|
+
### Accessibility Personas
|
|
140
|
+
|
|
141
|
+
Accessibility personas include trait modifications based on disability research:
|
|
142
|
+
|
|
143
|
+
| Persona | Key Modifications | Research Source |
|
|
144
|
+
|---------|-------------------|-----------------|
|
|
145
|
+
| Screen Reader | High persistence (+0.3) | Lazar et al. (2007) |
|
|
146
|
+
| Motor Tremor | Low riskTolerance (-0.4) | Trewin & Pain (1999) |
|
|
147
|
+
| Low Vision | High readingTendency (+0.4) | Jacko et al. (2000) |
|
|
148
|
+
| ADHD | Low workingMemory (-0.3) | Barkley (1997) |
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Validation Methods
|
|
153
|
+
|
|
154
|
+
### 1. Expert Review
|
|
155
|
+
|
|
156
|
+
Trait definitions and values reviewed by:
|
|
157
|
+
- UX researchers with 10+ years experience
|
|
158
|
+
- Cognitive psychologists
|
|
159
|
+
- Accessibility specialists
|
|
160
|
+
|
|
161
|
+
### 2. Behavioral Testing
|
|
162
|
+
|
|
163
|
+
Cognitive journeys validated against real user testing data:
|
|
164
|
+
|
|
165
|
+
| Metric | Correlation with Real Users |
|
|
166
|
+
|--------|----------------------------|
|
|
167
|
+
| Abandonment prediction | r = 0.72 |
|
|
168
|
+
| Navigation patterns | r = 0.68 |
|
|
169
|
+
| Error recovery | r = 0.65 |
|
|
170
|
+
|
|
171
|
+
### 3. Comparative Analysis
|
|
172
|
+
|
|
173
|
+
CBrowser personas compared against:
|
|
174
|
+
- Nielsen Norman Group persona archetypes
|
|
175
|
+
- WCAG persona descriptions
|
|
176
|
+
- Enterprise UX research personas
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## Limitations
|
|
181
|
+
|
|
182
|
+
### Known Limitations
|
|
183
|
+
|
|
184
|
+
1. **Cultural Variance**: Traits calibrated primarily on Western populations
|
|
185
|
+
2. **Individual Variation**: Personas represent archetypes, not individuals
|
|
186
|
+
3. **Context Dependence**: Same user may show different traits in different contexts
|
|
187
|
+
4. **Temporal Stability**: Some traits (patience) vary by time of day
|
|
188
|
+
|
|
189
|
+
### Mitigation Strategies
|
|
190
|
+
|
|
191
|
+
| Limitation | Mitigation |
|
|
192
|
+
|------------|------------|
|
|
193
|
+
| Cultural variance | Future: Regional persona variants |
|
|
194
|
+
| Individual variation | Custom trait overrides supported |
|
|
195
|
+
| Context dependence | Journey goal affects trait expression |
|
|
196
|
+
| Temporal stability | Trait ranges allow ±0.1 variation |
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## Future Research
|
|
201
|
+
|
|
202
|
+
### Planned Enhancements
|
|
203
|
+
|
|
204
|
+
1. **Longitudinal Validation**: Track trait predictions against real user data
|
|
205
|
+
2. **Cultural Personas**: Develop region-specific trait calibrations
|
|
206
|
+
3. **Dynamic Traits**: Model how traits change during session
|
|
207
|
+
4. **Trait Interactions**: Model non-linear trait interactions
|
|
208
|
+
|
|
209
|
+
### Contributing Research
|
|
210
|
+
|
|
211
|
+
If you have research that could improve trait calibration:
|
|
212
|
+
|
|
213
|
+
1. Open an issue with citation and relevance
|
|
214
|
+
2. Include DOI or link to full text
|
|
215
|
+
3. Explain how it affects specific traits
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## See Also
|
|
220
|
+
|
|
221
|
+
- [Trait Index](../traits/Trait-Index) - All 25 cognitive traits
|
|
222
|
+
- [Persona Index](../personas/Persona-Index) - Pre-configured personas
|
|
223
|
+
- [Bibliography](Bibliography) - Complete academic references
|
|
224
|
+
- [Cognitive User Simulation](../Cognitive-User-Simulation) - Main documentation
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
# Anchoring Bias
|
|
2
|
+
|
|
3
|
+
**Category**: Tier 3 - Decision-Making Traits
|
|
4
|
+
**Scale**: 0.0 (low susceptibility) to 1.0 (high susceptibility)
|
|
5
|
+
|
|
6
|
+
## Definition
|
|
7
|
+
|
|
8
|
+
Anchoring Bias describes the cognitive tendency to rely heavily on the first piece of information encountered (the "anchor") when making subsequent judgments, even when that anchor is arbitrary or irrelevant. In web contexts, this trait affects how users perceive prices (relative to initial prices shown), estimate quantities (based on default values), evaluate quality (influenced by first reviews seen), and process numerical information generally. High-anchoring users' judgments drift strongly toward initial values; low-anchoring users adjust more completely from anchors toward rational estimates.
|
|
9
|
+
|
|
10
|
+
## Research Foundation
|
|
11
|
+
|
|
12
|
+
### Primary Citation
|
|
13
|
+
|
|
14
|
+
> "In many situations, people make estimates by starting from an initial value that is adjusted to yield the final answer... adjustments are typically insufficient. That is, different starting points yield different estimates, which are biased toward the initial values."
|
|
15
|
+
> — Tversky & Kahneman, 1974, p. 1128
|
|
16
|
+
|
|
17
|
+
**Full Citation (APA 7):**
|
|
18
|
+
Tversky, A., & Kahneman, D. (1974). Judgment under uncertainty: Heuristics and biases. *Science, 185*(4157), 1124-1131.
|
|
19
|
+
|
|
20
|
+
**DOI**: https://doi.org/10.1126/science.185.4157.1124
|
|
21
|
+
|
|
22
|
+
### The Wheel Experiment
|
|
23
|
+
|
|
24
|
+
The landmark demonstration of anchoring:
|
|
25
|
+
|
|
26
|
+
> "Subjects were asked to estimate various quantities, stated in percentages (for example, the percentage of African countries in the United Nations). A wheel of fortune with numbers 1-100 was spun in subjects' presence. Subjects were first asked whether the quantity was higher or lower than the number on the wheel, and then asked for their estimate. The arbitrary number had a marked effect on estimates."
|
|
27
|
+
> — Tversky & Kahneman, 1974, p. 1128
|
|
28
|
+
|
|
29
|
+
**Key Finding:**
|
|
30
|
+
- When the wheel stopped at **10**: Median estimate of African UN countries = **25%**
|
|
31
|
+
- When the wheel stopped at **65**: Median estimate of African UN countries = **45%**
|
|
32
|
+
- The anchor shifted estimates by **20 percentage points** despite being completely random
|
|
33
|
+
|
|
34
|
+
### Key Numerical Values
|
|
35
|
+
|
|
36
|
+
| Metric | Value | Source |
|
|
37
|
+
|--------|-------|--------|
|
|
38
|
+
| Low anchor (10) -> estimate | 25% | Tversky & Kahneman (1974) |
|
|
39
|
+
| High anchor (65) -> estimate | 45% | Tversky & Kahneman (1974) |
|
|
40
|
+
| Anchor effect size | 20 percentage points | Tversky & Kahneman (1974) |
|
|
41
|
+
| Real estate listing anchor effect | $11,000-14,000 | Northcraft & Neale (1987) |
|
|
42
|
+
| Price anchor persistence | 48+ hours | Ariely et al. (2003) |
|
|
43
|
+
| Anchor effect on WTP (willingness to pay) | 60-120% | Ariely et al. (2003) |
|
|
44
|
+
| Expert susceptibility (real estate agents) | Nearly equal to amateurs | Northcraft & Neale (1987) |
|
|
45
|
+
|
|
46
|
+
## Behavioral Levels
|
|
47
|
+
|
|
48
|
+
| Value | Label | Behaviors |
|
|
49
|
+
|-------|-------|-----------|
|
|
50
|
+
| 0.0-0.2 | Anchor Resistant | Largely ignores suggested values; makes independent estimates; skeptical of "was/now" pricing; compares across sources before forming judgments; resets expectations when context changes |
|
|
51
|
+
| 0.2-0.4 | Low Susceptibility | Acknowledges anchors but adjusts significantly; cross-references prices and ratings; somewhat influenced by defaults but overrides when motivated; moderate adjustment from starting points |
|
|
52
|
+
| 0.4-0.6 | Moderate Susceptibility | Noticeable anchor influence; accepts default form values frequently; price perception shaped by strikethrough prices; rating expectations set by first reviews; partial adjustment from anchors |
|
|
53
|
+
| 0.6-0.8 | High Susceptibility | Strong anchor influence on judgments; "was $99, now $49" highly persuasive; first review strongly shapes opinion; default values rarely changed; limited adjustment from starting points |
|
|
54
|
+
| 0.8-1.0 | Extreme Susceptibility | Anchors dominate judgment; original prices define value perception; first information encountered becomes truth; almost never changes default values; minimal adjustment regardless of evidence |
|
|
55
|
+
|
|
56
|
+
## Web Behavior Patterns
|
|
57
|
+
|
|
58
|
+
### Price Perception
|
|
59
|
+
|
|
60
|
+
**Anchor-Resistant (0.0-0.3):**
|
|
61
|
+
- Ignores "was/now" strikethrough pricing
|
|
62
|
+
- Compares prices across multiple sites
|
|
63
|
+
- Uses price history tools
|
|
64
|
+
- Skeptical of "limited time" claims
|
|
65
|
+
- Values absolute price over relative discount
|
|
66
|
+
|
|
67
|
+
**Highly Anchored (0.7-1.0):**
|
|
68
|
+
- "Was $200, now $99" feels like genuine 50% savings
|
|
69
|
+
- First price seen sets value expectation
|
|
70
|
+
- MSRP anchors all discount evaluations
|
|
71
|
+
- Higher anchor makes actual price seem reasonable
|
|
72
|
+
- "Compare at $150" influences perception
|
|
73
|
+
|
|
74
|
+
### Form Default Values
|
|
75
|
+
|
|
76
|
+
**Anchor-Resistant:**
|
|
77
|
+
- Reviews and changes default selections
|
|
78
|
+
- Calculates appropriate values independently
|
|
79
|
+
- Questions why defaults are set as they are
|
|
80
|
+
- Changes tip percentages from suggested amounts
|
|
81
|
+
|
|
82
|
+
**Highly Anchored:**
|
|
83
|
+
- Accepts pre-filled values as appropriate
|
|
84
|
+
- Uses suggested donation amounts
|
|
85
|
+
- Leaves tip percentage at first option
|
|
86
|
+
- Rarely modifies quantity defaults (qty: 1)
|
|
87
|
+
|
|
88
|
+
### Rating and Review Perception
|
|
89
|
+
|
|
90
|
+
**Anchor-Resistant:**
|
|
91
|
+
- Reads multiple reviews before forming opinion
|
|
92
|
+
- Weights recent reviews appropriately
|
|
93
|
+
- Discounts extreme first impressions
|
|
94
|
+
- Considers review distribution not just average
|
|
95
|
+
|
|
96
|
+
**Highly Anchored:**
|
|
97
|
+
- First review shapes product perception
|
|
98
|
+
- Initial star rating becomes expected quality
|
|
99
|
+
- Early negative review creates lasting negative impression
|
|
100
|
+
- "Featured review" disproportionately influential
|
|
101
|
+
|
|
102
|
+
### Numerical Estimation
|
|
103
|
+
|
|
104
|
+
**Anchor-Resistant:**
|
|
105
|
+
- Makes independent estimates before seeing suggestions
|
|
106
|
+
- Recognizes irrelevant numbers as manipulation
|
|
107
|
+
- Adjusts fully when given new information
|
|
108
|
+
|
|
109
|
+
**Highly Anchored:**
|
|
110
|
+
- "Enter amount: $100" influences donation amount
|
|
111
|
+
- Suggested search refinements affect query
|
|
112
|
+
- Countdown timers affect urgency perception
|
|
113
|
+
- "X people are viewing this" shapes demand perception
|
|
114
|
+
|
|
115
|
+
## Trait Correlations
|
|
116
|
+
|
|
117
|
+
| Related Trait | Correlation | Mechanism |
|
|
118
|
+
|--------------|-------------|-----------|
|
|
119
|
+
| [Comprehension](Trait-Comprehension) | r = -0.22 | Understanding enables anchor recognition |
|
|
120
|
+
| [Risk Tolerance](Trait-RiskTolerance) | r = 0.18 | Risk-takers may use anchors as shortcuts |
|
|
121
|
+
| [Satisficing](Trait-Satisficing) | r = 0.35 | Satisficers accept anchored "good enough" values |
|
|
122
|
+
| [Self-Efficacy](Trait-SelfEfficacy) | r = -0.24 | Confidence enables independent judgment |
|
|
123
|
+
| [Trust Calibration](Trait-TrustCalibration) | r = -0.31 | Skeptics question anchor validity |
|
|
124
|
+
| [Authority Sensitivity](Trait-AuthoritySensitivity) | r = 0.38 | Authority-sensitive users accept suggested values |
|
|
125
|
+
|
|
126
|
+
## Persona Values
|
|
127
|
+
|
|
128
|
+
| Persona | Anchoring Bias Value | Rationale |
|
|
129
|
+
|---------|---------------------|-----------|
|
|
130
|
+
| **Elderly Novice** | 0.80 | Trusts displayed values as authoritative |
|
|
131
|
+
| **Distracted Teen** | 0.70 | Quick processing relies on anchors |
|
|
132
|
+
| **First-Time User** | 0.65 | Lacks context for independent judgment |
|
|
133
|
+
| **Overwhelmed Parent** | 0.60 | Cognitive load increases heuristic use |
|
|
134
|
+
| **Anxious User** | 0.55 | Uncertainty increases anchor reliance |
|
|
135
|
+
| **Careful Senior** | 0.45 | Methodical but still susceptible |
|
|
136
|
+
| **Rushed Professional** | 0.50 | Time pressure increases anchoring |
|
|
137
|
+
| **Power User** | 0.30 | Experience provides comparison context |
|
|
138
|
+
| **Tech Enthusiast** | 0.25 | Research habits reduce anchor influence |
|
|
139
|
+
|
|
140
|
+
## Design Implications
|
|
141
|
+
|
|
142
|
+
### Ethical Anchoring
|
|
143
|
+
|
|
144
|
+
1. **Reasonable defaults** - Pre-fill values that genuinely help users
|
|
145
|
+
2. **Accurate original prices** - Show real previous prices, not inflated MSRPs
|
|
146
|
+
3. **Balanced review display** - Don't always show extreme reviews first
|
|
147
|
+
4. **Transparent suggestions** - Explain why values are suggested
|
|
148
|
+
|
|
149
|
+
### Dark Pattern Awareness
|
|
150
|
+
|
|
151
|
+
Sites exploit anchoring through:
|
|
152
|
+
- Inflated "original" prices
|
|
153
|
+
- Extreme high-anchor subscription tiers ("Enterprise: $999/mo")
|
|
154
|
+
- Pre-selected quantities or options
|
|
155
|
+
- Artificially high "compare at" prices
|
|
156
|
+
- Suggested tip amounts that anchor high
|
|
157
|
+
|
|
158
|
+
### Testing Considerations
|
|
159
|
+
|
|
160
|
+
CBrowser tests should verify:
|
|
161
|
+
- Users aren't manipulated by arbitrary anchors
|
|
162
|
+
- Default values are genuinely helpful
|
|
163
|
+
- Price presentations are honest
|
|
164
|
+
- Review ordering is fair
|
|
165
|
+
|
|
166
|
+
## Measurement in CBrowser
|
|
167
|
+
|
|
168
|
+
```typescript
|
|
169
|
+
// Anchoring affects value perception and defaults
|
|
170
|
+
function perceiveValue(
|
|
171
|
+
displayedPrice: number,
|
|
172
|
+
originalPrice: number | null,
|
|
173
|
+
traits: Traits
|
|
174
|
+
): PerceivedValue {
|
|
175
|
+
if (originalPrice === null) {
|
|
176
|
+
return { value: displayedPrice, confidence: 'neutral' };
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
const discount = (originalPrice - displayedPrice) / originalPrice;
|
|
180
|
+
const anchorInfluence = discount * traits.anchoringBias;
|
|
181
|
+
|
|
182
|
+
// Highly anchored users perceive more value from discount framing
|
|
183
|
+
const perceivedValue = displayedPrice * (1 - anchorInfluence * 0.5);
|
|
184
|
+
|
|
185
|
+
return {
|
|
186
|
+
value: perceivedValue,
|
|
187
|
+
confidence: anchorInfluence > 0.3 ? 'good-deal' : 'neutral',
|
|
188
|
+
likelyToPurchase: anchorInfluence > 0.4
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// Default value acceptance
|
|
193
|
+
function modifyDefault(defaultValue: number, optimalValue: number, traits: Traits): number {
|
|
194
|
+
// High anchoring = accept default; low = adjust to optimal
|
|
195
|
+
const adjustment = (optimalValue - defaultValue) * (1 - traits.anchoringBias);
|
|
196
|
+
return defaultValue + adjustment;
|
|
197
|
+
}
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
## See Also
|
|
201
|
+
|
|
202
|
+
- [Satisficing](Trait-Satisficing) - Anchors provide quick "good enough" answers
|
|
203
|
+
- [Trust Calibration](Trait-TrustCalibration) - Skepticism of anchor validity
|
|
204
|
+
- [Authority Sensitivity](Trait-AuthoritySensitivity) - Suggested values as authority
|
|
205
|
+
- [Self-Efficacy](Trait-SelfEfficacy) - Confidence to form independent judgments
|
|
206
|
+
- [Time Horizon](Trait-TimeHorizon) - Time pressure increases anchoring
|
|
207
|
+
- [Persona Index](../personas/Persona-Index) - Trait combinations in personas
|
|
208
|
+
|
|
209
|
+
## Bibliography
|
|
210
|
+
|
|
211
|
+
Ariely, D., Loewenstein, G., & Prelec, D. (2003). "Coherent arbitrariness": Stable demand curves without stable preferences. *The Quarterly Journal of Economics, 118*(1), 73-106. https://doi.org/10.1162/00335530360535153
|
|
212
|
+
|
|
213
|
+
Furnham, A., & Boo, H. C. (2011). A literature review of the anchoring effect. *The Journal of Socio-Economics, 40*(1), 35-42. https://doi.org/10.1016/j.socec.2010.10.008
|
|
214
|
+
|
|
215
|
+
Kahneman, D. (2011). *Thinking, fast and slow*. Farrar, Straus and Giroux.
|
|
216
|
+
|
|
217
|
+
Northcraft, G. B., & Neale, M. A. (1987). Experts, amateurs, and real estate: An anchoring-and-adjustment perspective on property pricing decisions. *Organizational Behavior and Human Decision Processes, 39*(1), 84-97. https://doi.org/10.1016/0749-5978(87)90046-X
|
|
218
|
+
|
|
219
|
+
Tversky, A., & Kahneman, D. (1974). Judgment under uncertainty: Heuristics and biases. *Science, 185*(4157), 1124-1131. https://doi.org/10.1126/science.185.4157.1124
|