> 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/es/referencia-de-sintaxis/large-number-symbols.md).

# Símbolos de números grandes

Por defecto, Soulver utiliza símbolos de números grandes [inspirados en el SI](https://en.wikipedia.org/wiki/Metric_prefix) al mostrar respuestas grandes:

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

Si no te gusta esta función, puedes desactivarla para todas las líneas (consulta [Formato de Respuestas](/es/documentation/formatting/answer-formatting-options.md)), o línea por línea en el menú contextual de una línea.

{% hint style="success" %}
Creemos que esta función facilita el trabajo con números grandes porque no necesitas contar ceros para saber inmediatamente la magnitud del número con el que estás trabajando.
{% endhint %}

### Símbolos de notación para números grandes

También puedes usar símbolos de números grandes en tus expresiones matemáticas para facilitar el trabajo con números grandes.

Los números con símbolos de moneda ($, €, £, etc.) también admiten símbolos de notación de números grandes adicionales.

{% tabs %}
{% tab title="General" %}

| Símbolo      | Valor               | Ejemplo |
| ------------ | ------------------- | ------- |
| k            | mil                 | 2.5k    |
| M            | millón              | 5M      |
| G            | billón              | 10G     |
| T            | billón mil millones | 20T     |
| {% endtab %} |                     |         |

{% tab title="Monedas" %}

| Símbolo       | Valor               | Ejemplo           |
| ------------- | ------------------- | ----------------- |
| k o K         | mil                 | $3k, $4K          |
| m o M         | millón              | $5m, €6M          |
| B, b o bn     | billón              | $7B, ¥8b, $9bn    |
| T, t o tn     | billón mil millones | $10T, €11t, £12tn |
| {% endtab %}  |                     |                   |
| {% endtabs %} |                     |                   |

### Notación Científica

Si deseas ver un número en notación científica en lugar de notación de números grandes, usa "as sci"

<div align="left"><figure><img src="/files/sde4ltdNWHjorqWdk8zH" alt="" width="375"><figcaption><p>Convirtiendo un número grande a notación científica</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/es/referencia-de-sintaxis/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.
