# 평균 및 중앙값

Soulver는 한 줄에 있는 숫자 리스트에 대해 빠른 통계 연산을 지원합니다.

<table><thead><tr><th>통계 항목</th><th>예시</th><th data-type="number">결과</th></tr></thead><tbody><tr><td>총합/합계</td><td>합계 3, 4, 7, 9</td><td>23</td></tr><tr><td>평균/산술평균</td><td>평균 36, 42, 19, 81</td><td>44.5</td></tr><tr><td>개수</td><td>개수 1, 2, 3, 4, 5</td><td>5</td></tr><tr><td>중앙값</td><td>중앙값 10, 20, 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/ko/undefined/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.
