> For the complete documentation index, see [llms.txt](https://documentation.soulver.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.soulver.app/ru/spravochnik-po-sintaksisu/percentages.md).

# Проценты

#### Нахождение процента от числа

```
10% от 200 | 20
25% × 200  | 50
```

#### Прибавление процента к числу или вычитание процента из числа

```
200 + 10%   | 220
10% от 200  | 220

200 - 10%   | 180
10% от 200 | 180
```

#### Одно число как процент от/на/от другого числа

```
20 — это 10% от чего   | 200
180 — это 10% от чего | 200
220 — это 10% от чего  | 200
```

#### Нахождение изменения от одного числа к другому в процентах

```
От 50 до 75 — это какой %    | 50%
От 40 до 90 в %         | 125%

180 — это на 10% меньше, чем 200 | 10%
180 — это на 10% больше, чем 150  | 20%

20 — это какой % от 200   | 10%
20 как % от 200      | 10%

20/200 в %           | 10%
20/200 %              | 10%
```

#### Преобразование чисел и дробей в проценты

Обратите внимание, что 0.5 — это 50%, а 2 — это 200%.

```
0.35 в %      | 35%
2/5 в процентах | 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 как дробь | 1/5
50% как дробь  | 1/2
```

Процент в любой из функций [percentage](/ru/spravochnik-po-sintaksisu/percentages.md) также можно заменить на дробь:

```
2/3 от 600        | 400
50 — это 1/5 от чего | 250
```

## Множители

Отформатируйте процент (или дробь) как множитель:

```
20/5 как множитель | 4x
```

Процент в любой из функций [percentage](/ru/spravochnik-po-sintaksisu/percentages.md) также можно заменить на множитель.

Используйте "x", "кратное" или "множитель":

```
50 как x от 5         | 10x
2 как множитель от 1 | 2x
2 как множитель на 1 | 1x
1 как x меньше 2         | 0.5x
```

Нахождение изменения от одного числа к другому в виде множителя

```
От 50 до 75 — это какой x | 1.5x
От 20 до 40 как x      | 2x
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://documentation.soulver.app/ru/spravochnik-po-sintaksisu/percentages.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
