# 기타

### 숫자에서 단위 또는 백분율 제거하기

숫자에서 단위, 비율 또는 백분율을 제거하려면, 이를 `number`(또는 십진수)로 변환하세요.

```
$100 as number    | 100
40/day to decimal | 40
20% as dec        | 0.2
```

### 비례식 / 삼단 논법

위키피디아에서 [rule of three](https://en.wikipedia.org/wiki/Cross-multiplication#Rule_of_Three)으로 알려진 이 구문들은 비례를 유지하는 데 필요한 숫자를 찾는 데 도움을 줍니다.

```
6 is to 60 as 8 is to what  | 80
5 is to 10 as what is to 80 | 40
```

이 구문들은 단위와도 함께 작동합니다:

```
5 km is to 500m as 5 cm is to what                | 5 mm
30 minutes is to 3 hours as what is to 60 seconds | 10 seconds
```

### 숫자 비교

Soulver의 min() 및 max()

```
larger of 100 and 200  | 200
greater of 100 and 200 | 200
                                                     
smaller of 5 and 10    | 5
lesser of 5 and 10     | 5
```

### 중간 지점

```
half of 175                  | 87.5
midpoint between 150 and 300 | 225
```

### 난수

지정된 범위 내에서 임의의 정수를 생성하려면:

```
random number between 1 and 10 | 7
```

임의의 부동 소수점 숫자를 생성하려면, 0부터 1까지의 범위를 사용하세요.

```
random number between 0 and 1 | 0.4793193723
```

### 최소공배수 및 최대공약수

최소공배수와 최대공약수

```
gcd of 20 and 30 | 10
lcm of 5 and 8   | 40
```

### 순열 및 조합

```
10 permutation 3 | 720
25 combination 3 | 2,300
```

또는 약간 더 명확한 구문을 사용할 수 있습니다:

```
3 permutations of 10 | 720
3 combinations of 25 | 2,300
```

### 제한 (Clamp)

```
clamp 26 between 5 and 25 | 25
clamp 4 from 5 to 25      | 5
```


---

# 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/general/general.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.
