# Vault calculation examples

> Worked examples showing how each vault scoring decision calculates the final score. See [Enter two vault scores](/judges-companion/index/enter-two-vault-scores.md) for the entry process.

All examples below use: Initial Execution = 10.0, no neutral deductions.

## Example 1 - One Vault Only

|         | Difficulty | Deductions | Execution | Score    |
| ------- | ---------- | ---------- | --------- | -------- |
| Vault 1 | 2.0        | 0.5        | 9.5       | **11.5** |

Final Score = **11.5** (second vault ignored).

## Example 2 - Two Vault Average

|         | Difficulty | Deductions | Execution | Score |
| ------- | ---------- | ---------- | --------- | ----- |
| Vault 1 | 2.0        | 0.5        | 9.5       | 11.5  |
| Vault 2 | 2.0        | 1.0        | 9.0       | 11.0  |

Final Score = (11.5 + 11.0) / 2 = **11.25**

## Example 3 - Two Vault Best

|         | Difficulty | Deductions | Execution | Score |
| ------- | ---------- | ---------- | --------- | ----- |
| Vault 1 | 2.0        | 0.4        | 9.6       | 11.6  |
| Vault 2 | 2.0        | 1.2        | 8.8       | 10.8  |

Final Score = max(11.6, 10.8) = **11.6**

## Example 4 - Two Vault Best with Final Score Bonus

|         | Difficulty | Deductions | Execution | Base Score | FS Bonus |
| ------- | ---------- | ---------- | --------- | ---------- | -------- |
| Vault 1 | 2.0        | 0.5        | 9.5       | 11.5       | 0.2      |
| Vault 2 | 3.0        | 0.1        | 9.9       | 12.9       | 1.0      |

Best base score = 12.9 (Vault 2). The winning vault's FS Bonus is used.

Final Score = 12.9 + 1.0 = **13.9**

> **Key:** The [Final Score Bonus](/judges-companion/index/bonus-categories.md) is always applied **after** the vault decision (average or best). It is never included in intermediate calculations.

## Related

* [Enter two vault scores](/judges-companion/index/enter-two-vault-scores.md)
* [Bonus categories](/judges-companion/index/bonus-categories.md)

[Back to guide](/judges-companion/index.md)


---

# Agent Instructions: 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:

```
GET https://docs.gymart.org/judges-companion/index/vault-calculation-examples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
