> For the complete documentation index, see [llms.txt](https://docs.axiomprotocol.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.axiomprotocol.io/protocol-design/axiom-theorem/penalty-and-incentive-model.md).

# Penalty and Incentive Model

Axiom enforces honesty through stake penalties; parameters are governance-adjustable.

### Parameters

| Symbol | Meaning                 | Default | Adjustable |
| ------ | ----------------------- | ------- | ---------- |
| β      | Losing voter penalty    | 0.10%   | Yes        |
| γ      | Losing proposer penalty | 0.20%   | Yes        |
| ε      | Idle voter penalty      | 0.00%   | Yes        |
| MAXp   | Max per-market penalty  | 0.25%   | Yes        |
| MAXe   | Max per-epoch penalty   | 1.00%   | Yes        |

Parameter changes proposed by Top 50% stakers require >⅔ of total staked value to execute.

***

### Pool Formation

Each finalized market forms a penalty pool:

```
Pool = Σ(β * Vl) + Σ(γ * Pl) + Σ(ε * idle)
```

### Distribution

* Unchallenged: no penalty pool; proposer receives fixed consensus bonus.
* Challenged: 60% to correct proposer, 40% to correct governance voters.
* Creator quality bonus (0.15% of market pool) applies only if market resolves without challenge (unchallenged optimistic resolution).

Governance voters are stakers (not market traders). Traders receive market payouts in settlement token; governance voters receive share-token rewards/penalties.

### Enforcement

Penalties and rewards applied via share burns/mints:

```
Δshares = (usdDelta / sharePrice)
```

### Examples

Challenged resolution and unchallenged optimistic resolution examples are provided in the full spec illustrating penalty pool formation and distribution.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.axiomprotocol.io/protocol-design/axiom-theorem/penalty-and-incentive-model.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
