# Calcoli Tassi

Un tasso è una quantità di un'unità in relazione a un'altra

```
3 hours / day | 3 hours/day
$99 per week  | $99.00/week
```

Soulver supporta anche tassi senza unità

```
30 bottles / week  | 30/week
30/week as / month | 130/month
```

È possibile sommare/sottrarre tassi

```
$20/day + $300/week | $440.00/week
```

E convertirli in altre forme compatibili

```
€30/day in €/month | €913.11/month
```

Viene anche prodotto un tasso semplificato derivante dalla divisione di unità di tipi diversi:

```
90 km / 3 day | 30 km/day
```

{% hint style="info" %}
La matematica richiede che le unità dei tassi nella stessa categoria di unità si annullino quando si divide:

3 hours / 3 days = 0.0416667

Questo è essenzialmente il primo numero come proporzione del secondo numero (10,800 s / 259,200 s), espresso come decimale.

Può essere più utile semplificare il tasso senza annullare le unità. Se preferisci esprimere la proporzione come un tasso semplificato, puoi specificare il formato esplicitamente:

3 hours / 3 days as hour/day = 1 hour/day
{% endhint %}

### Moltiplicare i tassi

```
$50/week × 12 weeks  | $600.00
$24 a day for a year | $8,765.82
500/day to / year    | 182,621.25/year
```

### Frasi utili relative ai tassi

Ecco alcune frasi integrate e convenienti per eseguire calcoli con i tassi

```
30 hours at $30/hour | $900.00
$500 at $20/hour     | 25 hours
```


---

# 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/it/riferimento-sintassi/units-and-conversions/rates.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.
