Why Absolute Knowledge Doesn't Exist in Business

AgentSunrise
decision making
uncertainty
business strategy
knowledge

In real digital products, the world changes faster than we can “learn everything”: user behavior, competitors, traffic channels, regulations, even hardware and libraries. Any model of reality is an approximation. So in the end:

  • Knowledge is always contextual. What worked with one audience/season/channel may not work in another.
  • Knowledge gets outdated. A feature “yesterday” and “after an iOS/Android/SEO update” are different realities.
  • Knowledge is incomplete. Logs, surveys, and metrics are snapshots, not the whole picture of the world.

So the goal is not to achieve some mythical “full understanding,” but to set up an iteration system, where each next version (of the product, the process, the hypothesis pipeline) is statistically more likely to be meaningfully better than the previous one.

Practical philosophy: “HADI cycles are what decide it”

HADI — Hypothesis → Action → Data → Insight.

  1. Hypothesis
  2. We formulate a testable assumption in the format “if..., then..., measured by...”. It’s important to define:
  • the target effect (primary metric + guardrail metrics),
  • the expected effect size (MDE — minimum detectable effect),
  • risks and stopping criteria.
  1. Action
  2. We take the cheapest and fastest step to validate: a prototype, feature flag, simulation, “fake door,” not always a full release right away.
  3. Data
  4. Collect exactly the data defined in advance by the plan: time windows, segments, event schema, deduplication, anti-fraud, SRM (Sample Ratio Mismatch) monitoring.
  5. Insight
  6. Interpretation and decision: continue/scale/roll back/retest with a different framing. The insight must convert into a new hypothesis — otherwise the cycle stalls.

Key takeaway: speed and reliability of cycle completion matter more than heroics in one “perfect” iteration. In IT, the team with predictable short cycles and well-oiled hypothesis-testing pipelines wins.

Hypothesis Testing Pipeline: How to Turn Luck Into a Factory

Let’s imagine a pipeline from idea to decision:

  • Hypothesis backlog (transparent, prioritized with RICE/ICE/PIE/WSJF; each hypothesis has an owner and a “best before” date).
  • Design doc/one-pager (goal, metrics, MDE, risks, experiment design, implementation plan).
  • Feature flags and a mature rollout system (toggles, ramp-up, percentage rollout, canary).
  • Stable event schema (versioning, analytics contract tests, alerts for tracking breaks).
  • Experimentation platform (randomization, SRM audits, CUPED/CRA to reduce variance, stratification/clustering when needed).
  • Knowledge repository (ADR — Architecture/Analysis Decision Records, experiment logs: hypothesis → design → data → conclusions → artifacts).

This kind of pipeline removes “magical thinking” and reduces dependence on the charisma of individual people.

A/B Tests: Rely on Statistics, Not Gut Feel

A/B is not a cure-all, but it is discipline. Important practices:

  • Set the plan in advance. Metrics (primary + guardrails), MDE, duration, stopping rules.
  • Power analysis. Without a sufficient sample, even a strong effect may not stand out.
  • SRM monitoring. A mismatch in traffic shares across groups is a red flag (a bug in randomization/flags/logs).
  • Account for seasonality and “novelty.” The effect often spikes in the first few days; plan stabilization windows.
  • Interference. In social and network products, users influence one another; sometimes a cluster design is needed.
  • Multivariate testing and p-value hacking. Multiple-comparison correction, preregistration of the plan, Bayes/Sequential — use intentionally.
  • Qualitative analysis alongside it. Quant tells you “what,” qualitative methods help explain “why.”

Success criterion: “Each iteration is statistically significantly better than the previous one” is a valid idea if you are testing exactly those metrics that correlate with business goals, and you can distinguish statistical significance from practical significance (a 0.3% lift may be statistically significant but economically meaningless).

When A/B is not appropriate — and what to use instead

  • Low traffic/rare events → quasi-experiments, interrupted time series, Bayesian updating, simulations, expert review + flags.
  • High risk/regulation → canary release, dark launch, whitelists, segment-based pilots.
  • Long feedback loops → leading metrics and proxy metrics + regular reviews.

The Role of Experts and LLMs: “Use All the Tools”

There is no contradiction between “there is no absolute knowledge” and “use experts/LLMs” — on the contrary, these are tools for speeding up the cycle.

Subject-matter experts:

  • establish sound priors and constraints (security, architecture, domain),
  • help design a proper experiment,
  • perform a pre-mortem: how the experiment could mislead us, where the risks are.

LLMs (including specialized agents):

  • generation of hypotheses and UX/copy variants,
  • automated checks of the event schema and log anomalies,
  • guidance on experiment design, MDE/power calculation,
  • quick analysis of user feedback/tickets,
  • code skeletons for prototypes and feature-flag integrations.

Important: LLMs can hallucinate and have biases. This is addressed through process: verification, “chain-of-thought” for internal use only (but only verified conclusions go into deliverables), prompt templates, test cases for agents, data privacy.

Metrics: How Not to Shoot Yourself in the Foot

  • Units of analysis. User vs. session vs. device; choose one consistently.
  • Guardrails. Don’t trade away speed/stability/retention for CTR.
  • Lagging vs. leading. Revenue and LTV are lagging; you need proxies (activation, frequency of target actions), validated historically.
  • Data health. Alerts for schema changes, delays, outliers; “Observability first.”
  • A single metrics dictionary. Agreements, definitions, owners.

The culture that keeps the pipeline moving

  • Public postmortems and a “right to make mistakes” — iterations must be safe.
  • Document decisions (ADR) even when “nothing worked” — that is knowledge too.
  • Speed matters, but not at the expense of data quality. “Fast and dirty” is acceptable in a prototype, but not in production analytics.
  • Regular experiment reviews. What did we launch? What did we learn? What do we scale? What do we remove?
  • Long-term tracks. Not everything can be measured in a one-week A/B test: infrastructure, build speed, and DX are investments with delayed but massive ROI.

Mini-processes that increase the odds of “each iteration is better”

  1. Hypothesis template
  2. “If we [change X for segment Y], then [metric Z] will increase by [Δ] over [T], without hurting [guardrails]. Test: [method], MDE = […], risks: […].”
  3. Pre-flight experiment checklist
  • Is randomization okay? SRM?
  • Are metrics calculated the same way for A and B?
  • Are logs arriving, deduplicated, with no event drops?
  • Does the feature flag work, with no leakage between groups?
  • Is the shutdown/ethics/user-support plan documented?
  1. Post-flight
  • Decision: roll out / iterate / rollback.
  • What goes into the knowledge repository? (hypothesis, code, SQL, charts, conclusions)
  • When does the next hypothesis, based on the insight, move into execution?

Common pitfalls and how to avoid them

  • Blind trust in “best practices.” They are context-dependent. Transfer principles, not ready-made recipes.
  • Optimizing only one metric. Always keep a set of guardrails.
  • Ignoring segmentation. Better on average, but a key segment suffered. Check effect heterogeneity.
  • Regression to the mean and “winning-shot hunting.” Plan experiments in batches, not as a one-shot bull’s-eye.
  • Lack of cleanup. Bury failed features; technical and product clutter slows down new iterations.

How to “use all the tools” wisely

  • Experts — define the framework and improve the quality of problem framing.
  • LLMs/agents — speed up exploration, documentation, and analytics.
  • A/B/quasi-experiments — provide verifiability.
  • Feature flags and platforms — provide control and reversibility.
  • Knowledge repository — creates cumulative impact.

We put this into a system where speed * quality of iterations increases, while the cost of mistakes remains manageable.

Bottom line

There is no absolute knowledge — and that is not a problem if you have a pipeline for managing uncertainty: HADI cycles, disciplined experiments, strong metrics, a documentation backlog, and a postmortem culture. Then hypotheses turn into decisions, decisions into outcomes, and outcomes into knowledge capital.

And yes — use all the tools: experts, LLMs, experimentation platforms, feature flags, design docs. But remember: a tool is an accelerator, not a substitute for process. The winners are those whose next piece of “imperfect knowledge” is clearly and measurably better than the previous one.

Request an audit

Share your contact details and we will follow up.

← All articles

Comments (0)

No comments yet. Start the discussion.

Leave a comment
No registration required

Book a strategy call
for agentic operations

Tell us which workflow you want to improve. We will map feasibility, risks, and the fastest MVP path.

By submitting, you agree to our privacy policy

Contacts

Global Operations

Serving U.S. clients remotely
with private cloud and on-prem options

Strategy calls by request

We respond after reviewing your workflow context.

lamooof@gmail.com

For partnership inquiries

Have a proposal?

Write to us in messengers

© 2025 AgentSunrise