> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manthan.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# Deterministic Governance

> Why governance must be deterministic to be trustworthy in execution-critical systems

# Deterministic Governance

Authorization decisions have real-world consequences: payments, infrastructure changes, medical actions, financial approvals, and AI-driven automation.

These decisions must be deterministic.

***

## AI systems are probabilistic. Governance is not.

| AI Systems     | Governance System |
| -------------- | ----------------- |
| Prediction     | Authorization     |
| Classification | Policy evaluation |
| Recommendation | Decision making   |
| Generation     | Execution gating  |
| Optimization   | Verification      |

AI systems estimate outcomes. Governance determines authorization.

***

## Why non-deterministic governance fails

If governance is probabilistic:

* identical inputs may produce different outcomes
* audit logs cannot be reconstructed
* authorization cannot be independently verified
* execution becomes inconsistent across systems

This breaks trust in automation systems.

***

## Determinism requirements

Governance must guarantee:

### 1. Reproducibility

Same inputs always produce the same decision.

```text theme={null}
same signals + same policy version → same Authorization Decision
2. No environmental dependency

Decisions must not depend on:

timestamps
system load
runtime state
external randomness
3. Replay protection

Each decision is bound to a unique executionId.

Duplicate execution attempts are rejected.

4. Independent verification

Any party can verify a decision using:

policy version
verified signals
public key

No system access is required.

5. Fail-closed behavior

If evaluation cannot be completed reliably:

→ execution is rejected

There is no fallback mode.

Confidence is not governance

AI confidence scores are probabilistic.

Governance is not.

Even high-confidence AI outputs:

cannot be used directly for execution
must be evaluated through deterministic rules
must be independently verifiable
Role of AI

AI generates signals.

Governance evaluates signals.

AI → Signals → Governance → Authorization Decision

AI is not part of decision logic.

How Parmana enforces determinism
Rule	Enforcement
Canonical input format	deterministic serialization
No runtime randomness	disabled in evaluation layer
Versioned policies	immutable policy bundles
Replay protection	executionId tracking
Signed decisions	Ed25519 attestation
Stateless evaluation	no external dependency
System impact

Determinism enables:

auditability
compliance verification
reproducible decisions
cross-system trust
Summary

Governance must be deterministic because execution is irreversible.

Parmana ensures:

AI generates signals
Governance evaluates deterministically
Authorization decisions are reproducible
Execution is strictly controlled
Every decision is verifiable
```
