# 인플레이션 계산

Soulver는 미국 노동통계국(U.S. Bureau of Labor Statistics)에서 발표하는 평균 연간 CPI 변동 데이터를 기반으로 한 인플레이션 계산기를 포함하고 있습니다.

인플레이션을 고려하여 다양한 연도의 통화 금액 간을 변환하고, 금액의 미래 가치를 예측할 수 있습니다.

### 과거 금액을 오늘날의 달러로 환산

```
what is $4.2k from 2003          | $6,795.58
$1 from 1997 is worth what today | $1.85
$10k from 1960 worth             | $102,877.00
value of $4.2k from 2003         | $6,795.58
```

### 과거 연도의 오늘날 달러 가치

```
what was $500 worth in 1997 | $269.56
value of $500 in 1997       | $269.56
$500 is worth what in 1997  | $269.56
```

### 두 특정 연도 간 변환

```
what is $285.44 in 1997 worth in 2022 | $519.80
$1 from 1997 is worth what in 2021    | $1.69
```

### "달러" 구문 사용하기

```
$10 million in 1985 dollars | $27.668M
$90k in 1996 dollars        | ~$170k
```

### 가정된 인플레이션율로 미래 가치 예측하기

```
value of $500 in 2028 assuming 5% inflation           | $411.35
what will $1M be worth in 2040 assuming 10% inflation | $217,629.00
purchasing power of $500 in 2028 at 5% inflation      | $411.35
```

{% hint style="info" %}
미래 인플레이션 예측을 위해서는 가정된 인플레이션율을 지정해야 합니다 (예: "assuming 5% inflation").
{% endhint %}


---

# 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/money-and-finance/inflation-calculations.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.
