> 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/it/riferimento-sintassi/percentages.md).

# Percentuali

#### Calcolare una percentuale di un numero

```
10% di 200 | 20
25% × 200  | 50
```

#### Aggiungere una percentuale a un numero o sottrarre una percentuale da un numero

```
200 + 10%   | 220
10% su 200  | 220

200 - 10%   | 180
10% da 200 | 180
```

#### Un numero come percentuale di/su/da un altro numero

```
20 è il 10% di quanto   | 200
180 è il 10% in meno di quanto | 200
220 è il 10% in più di quanto  | 200
```

#### Calcolare la variazione tra due numeri, in percentuale

```
Da 50 a 75 è quanto %    | 50%
Da 40 a 90 come %         | 125%

180 è quanto % in meno di 200 | 10%
180 è quanto % in più di 150  | 20%

20 è quanto % di 200   | 10%
20 come % di 200      | 10%

20/200 come %           | 10%
20/200 %              | 10%
```

#### Convertire numeri e frazioni in percentuali

Nota che 0.5 è il 50%, 2 è il 200%.

```
0.35 come %      | 35%
2/5 come percentuale | 40%
```

### Calcoli con percentuali e decimali misti

È possibile eseguire calcoli con percentuali pure:

```
10% + 20% | 30%
90% − 40% | 50%
```

E è possibile aggiungere/sottrarre decimali e frazioni dalle percentuali. 1.0 è equivalente al 100%.

```
30% + 0.4      | 70%
100% - 1/2     | 50%
100% + 2 + 30% | 330%
```

Nota che quando si moltiplica una percentuale per un numero, il risultato sarà sempre un numero (non una percentuale), indipendentemente dall'ordine:

```
50% × 30 | 15
30 × 50% | 15
```

## **Frazioni**

È possibile convertire un decimale o una percentuale in una frazione:

```
2/10 come frazione | 1/5
50% come frazione  | 1/2
```

La percentuale in qualsiasi funzione di [percentage](/it/riferimento-sintassi/percentages.md) può essere sostituita anche con una frazione:

```
2/3 di 600        | 400
50 è 1/5 di quanto | 250
```

## Moltiplicatori

Formattare una percentuale (o una frazione) come moltiplicatore:

```
20/5 come moltiplicatore | 4x
```

La percentuale in qualsiasi funzione di [percentage](/it/riferimento-sintassi/percentages.md) può essere sostituita anche con un moltiplicatore.

Usare "x", "moltiplicatore" o "fattore di scala":

```
50 come x di 5         | 10x
2 come moltiplicatore di 1 | 2x
2 come moltiplicatore su 1 | 1x
1 come x in meno di 2         | 0.5x
```

Calcolare la variazione tra due numeri come moltiplicatore

```
Da 50 a 75 è quanto x | 1.5x
Da 20 a 40 come x      | 2x
```


---

# 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/it/riferimento-sintassi/percentages.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.
