# Averages & Median

Soulver supports performing quick statistical operations on a list of numbers on a single line

<table><thead><tr><th>Statistic</th><th>Example</th><th data-type="number">Answer</th></tr></thead><tbody><tr><td>Total/sum</td><td>total of 3, 4, 7 and 9</td><td>23</td></tr><tr><td>Average/mean</td><td>average of 36, 42, 19 and 81</td><td>44.5</td></tr><tr><td>Count</td><td>count of 1, 2, 3, 4, 5</td><td>5</td></tr><tr><td>Median</td><td>median of 10, 20 and 30</td><td>20</td></tr></tbody></table>


---

# 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://documentation.soulver.app/syntax-reference/general/averages-and-median.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.
