← LibraryBeliefsProject Management · Project Risk ManagementLesson 8/31← PrevNext →
ArticlePublished 6 Jul 20263 min readBy Kevin Joginbelief stateBayesian filteringKalman filterparticle filter

Project ManagementProject Risk ManagementAlgorithms for Decision MakingChapter 18

18Part IV · State Uncertainty

Beliefs

You never see the true state of a project — only late, noisy indicators. A belief is your probability-weighted picture of where things really stand.

Chapter 18 of 26 11 min read Original KEVOS® synthesis

Here is the uncomfortable truth Part IV insists on: you cannot see the true state of your project. You see reports, metrics, and test results — shadows of the state, arriving late and distorted. So you reason about a belief instead.

Parts I–III let you at least observe which situation you were in. Real projects deny even that. The schedule status you're shown is a lagging summary; the "green" on the dashboard may be optimism; the true health of the work is hidden behind imperfect signals. The right object to reason about is therefore not the state but a belief: a probability distribution over which state the project might actually be in, given everything you've observed so far.

1Keeping the belief current: filtering

A belief must be updated as evidence arrives, and the update is pure Bayes. Start with your current belief; account for the effect of the action you took (the project moves on); then fold in the new observation, upweighting the states that would most likely have produced what you saw. The result is your revised belief. Repeated over time, this is Bayesian filtering — and the belief it maintains is a sufficient statistic of the entire history: carry it, and you can throw the raw log away.

prior belief On trackAt riskDelayed observe amber report posterior belief On trackAt riskDelayed
Figure 1. A belief over hidden project states. An amber report is more likely to arise if the project is genuinely at risk, so observing it shifts belief toward that state. You act on this distribution — not on the raw report.

2Representing the belief in practice

  • For a handful of discrete states, keep the belief as an exact table of probabilities and update it directly.
  • For continuous quantities with roughly linear dynamics and noise, the Kalman filter keeps the belief as a Gaussian — a mean and a spread — updated in closed form. Its extended and unscented variants handle mild non-linearity.
  • For messy, non-linear, multi-modal situations, the particle filter represents the belief with a swarm of sampled hypotheses, reweighting and resampling them as evidence lands — flexible enough for almost anything.
Key idea

When you can't observe the true state, the honest object to hold — and to act on — is a belief: a probability distribution over where you might be, kept current by folding each new observation into the last. The belief, not the latest report, summarises everything you know.

What it means in practice

Stop treating the status report as the truth and start treating it as evidence about a hidden truth. Maintain an explicit, probability-weighted picture of where the project really stands — and, crucially, of how confident that picture is — updating it as each indicator arrives rather than lurching with every fresh number. A belief that carries its own uncertainty tells you not just your best guess at project health, but how much you should trust it, which is exactly what a good decision needs.

Continue learning

Actor–Critic MethodsArticle · Project Risk ManagementAlgorithms for Decision MakingArticle · Project Risk ManagementApproximate Value FunctionsArticle · Project Risk ManagementNEXT LESSON →Collaborative AgentsArticle · Project Risk Management