Convert Online Calculators Financial Compound Interest Calculator 
Compound Interest Calculator The Compound Interest Calculator allows you to calculate the total amount you could earn when you invest a principal amount for a specific period, with various compounding frequencies such as annually, quarterly, monthly, daily, etc., at a specific annual interest rate.
{
  "calculator": "compound-interest-calculator",
  "input_types": [
    "float",
    "float",
    "dropdown",
    "float"
  ],
  "input_labels": [
    "P",
    "R",
    "n",
    "t"
  ],
  "input_values": [
    "10000.00",
    "4.0",
    "1",
    "10"
  ],
  "input_units": [
    "currency",
    "percentage",
    "compounding a year",
    "years"
  ],
  "extra": {
    "n": {
      "items": [
        [
          "Annually",
          1
        ],
        [
          "Semi-Annually",
          2
        ],
        [
          "Quarterly",
          4
        ],
        [
          "Bi-Monthly",
          6
        ],
        [
          "Monthly",
          12
        ],
        [
          "Semi-Monthly",
          24
        ],
        [
          "Bi-Weekly",
          26
        ],
        [
          "Weekly",
          52
        ],
        [
          "Daily(365)",
          365
        ]
      ]
    }
  },
  "input_descriptions": [
    "Principal Amount",
    "Annual Interest Rate",
    "Compound",
    "Time (in years)"
  ],
  "intermediates": [
    [
      "r",
      " R /100"
    ]
  ],
  "title": "Compound Interest",
  "category": "Financial",
  "formula_mathjax": "\\({\\ P (1 + \\dfrac{ r }{ n })^{ n  t }\\ }\\)",
  "formula_mathjax_sub": "\\({\\  P (1 + \\dfrac{ r }{ n })^{ n * t }\\ }\\)",
  "formula": " P * ( 1 + r / n ) ** ( n * t ) ",
  "op_label": "Total Amount",
  "explanation": "The Compound Interest Calculator allows you to calculate the total amount you could earn when you invest a principal amount for a specific period, with various compounding frequencies such as annually, quarterly, monthly, daily, etc., at a specific annual interest rate.",
  "template": "calculator"
}