# 백분율

#### 숫자에서 백분율 구하기

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

#### 숫자에 백분율을 더하거나 빼기

```
200 + 10%   | 220
10% on 200  | 220

200 - 10%   | 180
10% off 200 | 180
```

#### 한 숫자를 다른 숫자의 백분율/기준/차이로 보기

```
20 is 10% of what   | 200
180 is 10% off what | 200
220 is 10% on what  | 200
```

#### 한 숫자에서 다른 숫자로의 변화율(백분율)

```
50 to 75 is what %    | 50%
40 to 90 as %         | 125%

180 is what % off 200 | 10%
180 is what % on 150  | 20%

20 is what % of 200   | 10%
20 as a % of 200      | 10%

20/200 as %           | 10%
20/200 %              | 10%
```

#### 숫자와 분수를 백분율로 변환하기

참고: 0.5는 50%이고, 2는 200%입니다.

```
0.35 as %      | 35%
2/5 as percent | 40%
```

### 혼합된 백분율 및 소수점 계산

순수 백분율로 계산할 수 있습니다:

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

또한 소수점 및 분수를 백분율에 더하거나 뺄 수 있습니다. 1.0은 100%와 같습니다.

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

백분율에 숫자를 곱할 때는 순서에 관계없이 답은 항상 숫자(백분율이 아님)가 된다는 점에 유의하세요:

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

## **분수**

소수점 또는 백분율을 분수로 변환할 수 있습니다:

```
2/10 as fraction | 1/5
50% as fraction  | 1/2
```

[percentage](/ko/undefined/percentages.md) 함수에 있는 백분율은 분수로 대체될 수도 있습니다:

```
2/3 of 600        | 400
50 is 1/5 of what | 250
```

## 승수

백분율(또는 분수)을 승수로 형식 지정합니다:

```
20/5 as multiplier | 4x
```

[percentage](/ko/undefined/percentages.md) 함수에 있는 백분율은 승수로 대체될 수도 있습니다.

"x", "multiple" 또는 "multiplier"를 사용하세요:

```
50 as x of 5         | 10x
2 as multiplier of 1 | 2x
2 as multiplier on 1 | 1x
1 as x off 2         | 0.5x
```

한 숫자에서 다른 숫자로의 변화율을 승수로 구하기

```
50 to 75 is what x | 1.5x
20 to 40 as x      | 2x
```


---

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