# レート計算

レートとは、ある単位と別の単位との関係における数量のことです。

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

Soulver は単位のないレートもサポートしています。

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

レートの加算・減算ができます。

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

また、他の互換性のある形式に変換できます。

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

異なる種類の単位を割り算することから、単純化されたレートも生成されます。

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

{% hint style="info" %}
数学では、同じ単位カテゴリのレートを割り算する場合、単位が互いに打ち消し合う必要があります。

3 hours / 3 days = 0.0416667

これは本質的に、最初の数が2番目の数に対する割合（10,800 s / 259,200 s）として、小数で表されたものです。

単位を打ち消さずにレートを単純化する方が役立つ場合があります。もし比率を単純化されたレートとして表現したい場合は、形式を明示的に指定できます:

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

### レートの乗算

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

### 実用的なレート関連のフレーズ

ここでは、レートを使った計算に便利な組み込みフレーズをいくつか紹介します。

```
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/ja/rifarensu/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.
