Use this Vaddi Calculator to Calculate the Simple Interest or Compound Interest You have to Pay on a Loan.
Easily calculate the simple interest or compound interest of a loan.
Vaddi calculator is an online interest calculator that calculates the simple interest or compound interest you will earn or have to pay on a loan.
In telugu, interest is called vaddi, therefore this calculator is called vaddi calculator which will help you to calculate the interest on a loan.
Interest are of two types:
To calculate the interest, you just need to enter the principal amount, rate of interest, and the time duration.
You can enter the rate of interest in either rupee per 100 format, or in annual percentage format.
Similarly, you can also enter the time duration in both date format or years, months, days format.
Note: In villages, interest is calculated on the monthly basis.
Simple Interest
SI = (P x R x T)/100
where,
Compound Interest
CI = P(1 + r/n)nt - P
where,
Simple Interest
Step 1: Get the principal amount, rate of interest, and time period from the user
let principal = parseFloat(document.getElementById("principal").value);
let interestRate = parseFloat(document.getElementById("interestRate").value);
let timePeriod = parseFloat(document.getElementById("timePeriod").value);
Step 2: Use the simple interest formula to calculate the simple interest
const SI = (principal x interestRate x timePeriod)/100
To calculate the simple interest, you need to multiply the principal amount by the rate of interest(in %) and the time period and then divide it by 100.
For example, if the principal amount is ₹50,000, rate of interest is 12% per annum, and the time period is 6 months, then the simple interest will be ₹3000.
Compound Interest
Step 1: Get the principal amount, rate of interest, time period, and no. of times compounded
let principal = parseFloat(document.getElementById("principal").value);
let interestRate = parseFloat(document.getElementById("interestRate").value);
let timePeriod = parseFloat(document.getElementById("timePeriod").value);
Step 2: Use the compound interest formula
const amount = principal * Math.pow((1 + interestRate / timesCompounded), timesCompounded * timePeriod);
const compoundInterest = amount - principal;
For example, if the principal amount is 1 lakh, rate of interest is 15% per annum, the time period is 2 years and it is compounded annually. Then, the compound interest will be ₹32,250.
Example 1: Mr. S. Iyer took a loan of ₹5000 from the village moneylender at a interest rate of 4 rupee per month. Caculate how much interest Mr. Iyer have to pay for 6 months.
Principal Amount = ₹5000
Rate of Interest = ₹4 per 100 = 4 x 12 = 48%
Time Period = 6 Months
Then, using the simple interest formula, we'll get:
SI = (Principal x Interest Rate x Time Period)/100 = (5000 x 48 x 1/2)/100 = ₹1200
Thus, the simple interest for 6 months is ₹1200.
Type | Principal | Interest Rate | Time Period | Compounded | Interest |
---|---|---|---|---|---|
Simple | ₹5,000 | 6% | 2 years | - | ₹600 |
Compound | ₹5,000 | 6% | 2 years | Annually | ₹618 |
Simple | ₹10,000 | 5% | 3 years | - | ₹1,500 |
Compound | ₹10,000 | 5% | 3 years | Quarterly | ₹1,576.25 |
Simple | ₹7,000 | 8% | 1.5 years | - | ₹840 |