Geometric Sequence Calculator

Calculate the nth term, first terms, and finite sum of a geometric sequence

Example Results

1 examples

Model compound growth terms

Find the 6th term and the first 6 terms for a geometric sequence with first term 2 and common ratio 3.

{
  "result": {
    "nthTerm": 486,
    "sumOfTerms": 728
  }
}
View input parameters
{ "firstTerm": 2, "commonRatio": 3, "termIndex": 6, "numberOfTerms": 6 }

Key Facts

Category
Math, Date & Finance
Input Types
number
Output Type
json
Sample Coverage
4
API Ready
Yes

Overview

The Geometric Sequence Calculator is a straightforward mathematical utility designed to find the nth term and the finite sum of a geometric progression. By entering the first term and the common ratio, you can instantly compute specific terms and the total sum of the sequence without manual calculations, making it an ideal tool for students, educators, and analysts modeling exponential growth or decay.

When to Use

  • When you need to find a specific term (nth term) in a geometric progression without writing out the entire sequence manually.
  • When calculating the finite sum of a geometric series for mathematical assignments or financial modeling.
  • When verifying manual calculations of exponential growth, compound interest, or decay problems.

How It Works

  • Enter the starting value of your sequence in the 'First Term' field.
  • Input the multiplier between consecutive terms into the 'Common Ratio' field.
  • Specify the 'Term Index (n)' to find a specific value, and the 'Number Of Terms' to calculate the finite sum.
  • The calculator instantly processes the inputs and outputs the exact nth term and the sum of the specified terms.

Use Cases

Solving algebra and calculus homework problems involving geometric progressions and series.
Modeling compound interest, population growth, or asset depreciation over a fixed number of periods.
Generating test cases and answer keys for math educators teaching exponential patterns.

Examples

1. Calculating Compound Growth

Finance Student
Background
A student is working on a financial model that assumes an investment triples every period, starting with an initial baseline value of 2.
Problem
Needs to find the exact value at the 6th period and the total accumulated sum over the first 6 periods.
How to Use
Set the First Term to 2, Common Ratio to 3, Term Index to 6, and Number Of Terms to 6.
Example Config
First Term: 2, Common Ratio: 3, Term Index: 6, Number Of Terms: 6
Outcome
The calculator outputs the 6th term as 486 and the sum of the first 6 terms as 728.

2. Solving a Halving Sequence (Decay)

Math Teacher
Background
A teacher is creating an exam question about radioactive decay where a substance halves every hour, starting at 100 grams.
Problem
Needs to quickly determine the remaining amount at the 5th hour and the sum of the sequence for the grading rubric.
How to Use
Enter 100 as the First Term, 0.5 as the Common Ratio, 5 as the Term Index, and 5 as the Number Of Terms.
Example Config
First Term: 100, Common Ratio: 0.5, Term Index: 5, Number Of Terms: 5
Outcome
The tool calculates the 5th term as 6.25 and the sum of the first 5 terms as 193.75 instantly.

Try with Samples

math-&-numbers

Related Hubs

FAQ

What is a geometric sequence?

A geometric sequence is a series of numbers where each term after the first is found by multiplying the previous one by a fixed, non-zero number called the common ratio.

What is the common ratio?

The common ratio is the constant factor between consecutive terms in a geometric sequence. For example, in the sequence 2, 6, 18, the common ratio is 3.

Can the common ratio be a negative number or a fraction?

Yes, the common ratio can be negative (which creates an alternating sequence) or a decimal/fraction (which creates a decaying or shrinking sequence).

What is the maximum term index I can calculate?

This calculator supports finding up to the 1000th term in a geometric sequence.

How is the sum of terms calculated?

The tool uses the standard geometric series sum formula, taking your first term, common ratio, and the specified number of terms (up to 50) to compute the exact finite sum.

API Documentation

Request Endpoint

POST /en/api/tools/geometric-sequence-calculator

Request Parameters

Parameter Name Type Required Description
firstTerm number No -
commonRatio number No -
termIndex number No -
numberOfTerms number No -

Response Format

{
  "key": {...},
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
JSON Data: JSON Data

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-geometric-sequence-calculator": {
      "name": "geometric-sequence-calculator",
      "description": "Calculate the nth term, first terms, and finite sum of a geometric sequence",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=geometric-sequence-calculator",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]