{% extends 'base.html' %}{% block heading %}Monte Carlo Risk Planner{% endblock %}{% block content %}
SIMPLE PURPOSE

Turn one estimate into a safer planning range.

You do not need to understand simulation math. Give Wize your best estimate, tell it how uncertain the work feels, and how serious a delay would be. Wize runs the simulation for you.

See the animated exampleUse original PERT instead
3 THINGS TO TELL WIZE

Plan the uncertainty

{% if result %}
YOUR PLANNING RANGE

Your estimate was {{'%.2f'|format(result.estimate)}}. Here is how much protection different plans give you.

Typical plan P50{{'%.2f'|format(result.p50)}}
Safer plan P80{{'%.2f'|format(result.p80)}}
Very cautious P95{{'%.2f'|format(result.p95)}}
Wize suggestion: {{result.recommendation}}
WHAT TO DO NEXT
  1. 1
    Pick the protection level that matches the consequence.

    Routine work can often use Typical. Important work usually needs Safer. Critical work may justify Very cautious.

  2. 2
    Compare it with the original PERT goal.

    If they disagree sharply, your assumptions probably need another look.

  3. 3
    Write down the biggest unknown.

    Put it in Clay Tablets so the final plan explains what could change the estimate.

Record the uncertaintyCarry it into the Final Project Plan →
{% endif %}{% endblock %}