> For the complete documentation index, see [llms.txt](https://documentation.soulver.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.soulver.app/ru/spravochnik-po-sintaksisu/large-number-symbols.md).

# Символы больших чисел

По умолчанию Soulver использует символы для больших чисел, вдохновленные [SI](https://en.wikipedia.org/wiki/Metric_prefix), при отображении больших ответов:

```
100,000 + 200,000 | 300k
3 million + 10%   | 3.3M
```

Если вам не нравится эта функция, вы можете отключить ее для всех строк (см. [Форматирование ответов](/ru/documentation/formatting/answer-formatting-options.md)) или для отдельных строк в контекстном меню.

{% hint style="success" %}
Мы считаем, что эта функция упрощает работу с большими числами, поскольку вам не нужно считать нули, чтобы сразу понять порядок числа, с которым вы работаете.
{% endhint %}

### Символы обозначений для больших чисел

Вы также можете использовать символы для больших чисел в своих математических выражениях, чтобы упростить работу с большими числами.

Числа с валютными символами ($, €, £ и т. д.) также поддерживают дополнительные символы обозначений для больших чисел.

{% tabs %}
{% tab title="Общие" %}

| Символ       | Значение | Пример |
| ------------ | -------- | ------ |
| k            | тысяча   | 2.5k   |
| M            | миллион  | 5M     |
| G            | миллиард | 10G    |
| T            | триллион | 20T    |
| {% endtab %} |          |        |

{% tab title="Валюты" %}

| Символ        | Значение | Пример            |
| ------------- | -------- | ----------------- |
| k или K       | тысяча   | $3k, $4K          |
| m или M       | миллион  | $5m, €6M          |
| B, b или bn   | миллиард | $7B, ¥8b, $9bn    |
| T, t или tn   | триллион | $10T, €11t, £12tn |
| {% endtab %}  |          |                   |
| {% endtabs %} |          |                   |

### Научная нотация

Если вы хотите увидеть число в научной нотации вместо обозначений для больших чисел, используйте "as sci"

<div align="left"><figure><img src="/files/NlawtCyfDOg0qDVBu6ue" alt="" width="375"><figcaption><p>Преобразование большого числа в научную нотацию</p></figcaption></figure></div>


---

# 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://documentation.soulver.app/ru/spravochnik-po-sintaksisu/large-number-symbols.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.
