The Air Canada Problem: When a Guess Becomes Policy
In 2024, an Air Canada customer asked a chatbot about bereavement fares. The bot confidently cited a refund policy that didn't exist. The airline refused to honor it. A tribunal ruled for the customer.
The bot hadn't decided anything. It predicted plausible text. But the interface presented that prediction with the same confidence as a policy document — no caveats, no fallback to a human, no visible uncertainty. The user read confidence as commitment. Legally, so did the tribunal.
This is the core risk of shipping AI today: probabilistic systems wrapped in deterministic interfaces.
Humans are wired for deterministic thinking. Flip a coin 999 times and land heads every time, and most people assume the coin is rigged. The probabilistic mind accepts that the 1000th flip could still go either way. That second mindset is what product teams need right now.
This guide is about using AI to sharpen judgment — not outsource it. The full argument is drawn from the Smashing Magazine deep dive on designing with uncertainty.

Probabilistic Thinking: Treat AI Outputs as Signals, Not Verdicts
Most questions we ask AI don't have binary answers. Ask "Do aliens exist?" and you'll get something between plausible and uncertain. The answer doesn't resolve the question — it frames it as a probability.
Netflix doesn't know you'll enjoy Superstore because you watched The Office. It estimates the probability and surfaces the title accordingly. The interface responds to a prediction.
Design decisions can follow the same logic. Consider a scenario where analytics suggest 60% vs. 90% confidence that a user will complete a purchase:
- At 60%: the design must do persuasive work — testimonials, comparisons, reassurance signals.
- At 90%: the user is already motivated — remove friction so the action happens quickly.
Same screen. Very different design problem.
Evaluating Designs With Structured AI Prompts
When you can't access the target user group directly, structured prompts can simulate evaluation. Here's a template for assessing a design from the perspective of neurodivergent users:
Evaluate [design file or URL] for usability, accessibility, and
content relevance from the perspective of neurodivergent users
(e.g., autism spectrum, ADHD, learning disabilities).
Criteria:
- Is layout and navigation intuitive for this group?
- Is language and content appropriate and engaging?
- Are there technical, cognitive, or sensory barriers?
- How well does the site meet their specific goals?
Output: SWOT analysis + probability score for successful use
+ concrete recommendations.
Treat this as a conversation starter with your team — not a verdict. And remember: simulations don't replace experimentation. Models trained on historical data reflect past behavior more strongly than they predict future change.
The Left-Handed Problem
Ask an image model to generate a person writing with the left hand and you may still get a right-handed writer. The reason is statistical: most people are right-handed, and the training data reflects that. What you receive is not truth — it's the most statistically likely outcome given the data available.
This is exactly the failure mode that sank Amazon's experimental AI recruiting tool. Trained on roughly a decade of skewed hiring data, the model learned to downgrade resumes containing the word "women's" — as in "women's chess club captain." The system wasn't intentionally biased. The data was. Amazon reportedly scrapped the project after failing to guarantee the bias wouldn't resurface in other forms.

Human-in-the-Loop Is a Refinement Engine, Not a Safety Net
AI should augment human judgment, not replace it. The most trustworthy systems are designed with clear moments where people can review, challenge, correct, or override machine suggestions.
What HITL Looks Like in Practice
GitHub Copilot offers inline code suggestions developers can accept with Tab, edit, or ignore. The system never commits code on the user's behalf. Every accept, reject, or edit is implicit feedback about which suggestions were useful.
Gmail's Smart Compose presents predicted text as optional, keeping tone and intent in the user's hands.
In higher-stakes contexts, HITL becomes explicit. Risk and fraud systems use probability scores to route decisions:
| Risk Level | Action |
|---|---|
| Low | Proceed automatically |
| Medium | Trigger additional verification |
| High | Escalate to a human reviewer |
Matching Interaction Patterns to Risk
| User Type | Risk | Design Goal |
|---|---|---|
| Overtrusting | Acts too quickly, trusts AI easily | Show uncertainty prominently |
| Distrustful | Ignores AI entirely | Show historical accuracy or confidence levels |
| Skeptical/Balanced | Uses AI as a guide | Reinforce assistance, let them decide |
Communicating Uncertainty Without Eroding Trust
A delivery window of "Friday to Monday" tells the truth about variability. A specific timestamp that slips erodes trust every time. A face recognition feature that asks "this looks like Pratik, is that right?" sets more honest expectations than one that silently labels the photo.
Communicating uncertainty doesn't weaken trust — it strengthens it.

Optimize for Resilience, Not Just Conversion
Good design adapts as the landscape shifts. A resilient system:
- Adapts as new data and behaviors emerge
- Fails safely rather than catastrophically
- Remains transparent and explainable
- Avoids brittle, over-optimized interaction patterns
- Anticipates second-order and unintended effects
The Duolingo Example
Duolingo's hearts system introduces friction: make too many mistakes, run out of hearts, and you must wait or practice older material. On paper, that looks like a conversion killer. In practice, it supports long-term motivation and retention — the metric that actually matters for a learning app. Short-term engagement dips; long-term outcomes improve.
A Pre-Launch Resilience Checklist
- How does the system behave under low AI confidence?
- What is the safe fallback when AI assistance disappears entirely?
- What drifts do we anticipate in data, user behavior, and model performance?
- What second-order effects does this optimization cast as a shadow?
The Reframe That Changes Everything
Stop asking "Will this work?" Start asking: "How likely is this to work, and what happens when it doesn't?"
That single reframe changes how you write hypotheses, interpret AI output, scope experiments, and design for the moments when the system is wrong. AI has not introduced uncertainty into our world — it has simply made the uncertainty that was always there impossible to ignore.
Think in ranges, not points. Test assumptions, not features. Build for adaptation, not perfection.
Related reading: