# Edu loan EMI calculation

Use [spreadsheet ↗](https://docs.google.com/spreadsheets/d/1-v7W6HK6-v1m910x_wTLH9a808IMzIjf2S6UcdXtPHo/edit?usp=sharing) to quickly calculate.

### Hand calculation

$$
EMI = \frac{\[P \* R  \* (1+R)^n]} { \[(1+R)^ n-1]}
$$

| Symbol | Description                    | Comment                                                                        |
| ------ | ------------------------------ | ------------------------------------------------------------------------------ |
| P      | Principal loan amount          | Amount you have received from the bank                                         |
| R      | Rate of interest               | <ul><li>9.0% per annum, generally.</li><li>9.0/12 = 0.75% per month.</li></ul> |
| n      | Number of monthly installments | For 2 years, 2 \* 12 = 24                                                      |

{% tabs %}
{% tab title="in Indian Rupees" %}
P = 3,00,000 INR

R = 9.0% per annum = 0.75% per month = 0.75/100 points = 0.0075

n = 24 (say, 2 years)

EMI = $$\frac{\[300000 \* 0.0075 \* (1 + 0.0075)^{24}]}{\[(1+0.0075)^{24} - 1]}$$ = 13,705 INR (approx.)
{% endtab %}

{% tab title="in US Dollars" %}
P = 3,00,000 USD

R = 9.0% per annum = 0.75% per month = 0.75/100 points = 0.0075

n = 24 (say, 2 years)

EMI = $$\frac{\[300000 \* 0.0075 \* (1 + 0.0075)^{24}]}{\[(1+0.0075)^{24} - 1]}$$ = 13,705 USD (approx.)
{% endtab %}
{% endtabs %}

### Using spreadsheet

Update Blue cells in the [spreadsheet ↗](https://docs.google.com/spreadsheets/d/1-v7W6HK6-v1m910x_wTLH9a808IMzIjf2S6UcdXtPHo/edit?usp=sharing) as shown.

![EMI is in the green box.](/files/-MUx7REVFepCmAJD_E2f)


---

# 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://i.janardhanpulivarthi.com/season-1/edu-loan-emi-calculation.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.
