# 환율 계산

비율(rate)은 한 단위가 다른 단위와 관련하여 가지는 양입니다.

```
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

이는 본질적으로 첫 번째 숫자를 두 번째 숫자에 대한 비율(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/ko/undefined/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.
