Geometric Sequence Calculator
Calculate geometric sequence instantly with our math tool. Shows detailed work, formulas used, and multiple solution methods.
Calculator
Adjust values & calculateSequence Terms
Formula
Where a is the first term, r is the common ratio, n is the term position. For infinite series with |r| < 1, the sum converges to S = a/(1-r).
Last reviewed: December 2025
Worked Examples
Example 1: Finding the 10th Term and Sum
Example 2: Convergent Infinite Series
Background & Theory
The Geometric Sequence Calculator applies the following established principles and formulas. Mathematics rests on a hierarchy of number systems, each extending the previous. The natural numbers (1, 2, 3, ...) support counting and ordering. The integers add negative values and zero, enabling subtraction without restriction. The rational numbers, expressible as p/q where p and q are integers and q is nonzero, close the system under division. The real numbers fill the gaps left by irrationals such as the square root of 2 or pi, forming a complete ordered field. The complex numbers, written as a + bi where i is the square root of negative one, complete the algebraic closure of the reals and allow every polynomial to have a root. Prime factorization states that every integer greater than one is uniquely expressible as a product of primes, a result known as the Fundamental Theorem of Arithmetic. Computing the greatest common divisor (GCD) of two integers relies most efficiently on the Euclidean algorithm: repeatedly replace the larger number with the remainder when it is divided by the smaller, until the remainder is zero. The last nonzero remainder is the GCD. The least common multiple (LCM) follows from the identity LCM(a, b) = |a * b| / GCD(a, b). Modular arithmetic defines equivalence classes of integers that share the same remainder under division by a modulus n. Fermat's Little Theorem and Euler's Theorem arise from this structure and underpin modern cryptography. Logarithms are the inverses of exponential functions. If b raised to the power x equals y, then the logarithm base b of y equals x. The natural logarithm uses base e, approximately 2.71828. Combinatorics counts arrangements and selections. The number of ordered arrangements (permutations) of r objects from n distinct objects is nPr = n! / (n - r)!. The number of unordered selections (combinations) is nCr = n! / (r! * (n - r)!). Pascal's triangle arranges these binomial coefficients so that each entry equals the sum of the two entries directly above it. The Fibonacci sequence, defined by F(1) = 1, F(2) = 1, and F(n) = F(n-1) + F(n-2), appears throughout nature and connects deeply to the golden ratio via Binet's formula.
History
The history behind the Geometric Sequence Calculator traces back through the following developments. Mathematics as a systematic discipline traces to ancient Mesopotamia. Babylonian clay tablets dating to around 1800 BCE demonstrate knowledge of quadratic equations, Pythagorean triples, and base-60 arithmetic, suggesting a practical mathematical tradition far preceding Greek formalism. Euclid of Alexandria compiled the Elements around 300 BCE, establishing the axiomatic method that would define rigorous mathematics for over two thousand years. His work organized plane geometry, number theory, and proportion into logically chained propositions derived from a small set of postulates. The algorithm bearing his name for computing GCDs appears in Book VII and remains in use today. In the 9th century, the Persian scholar Muhammad ibn Musa Al-Khwarizmi wrote Al-Kitab al-mukhtasar fi hisab al-jabr wal-muqabala, the treatise whose title gave algebra its name. He systematized the solution of linear and quadratic equations and described procedures that operated on unknowns as objects, a conceptual leap away from purely numerical calculation. Rene Descartes introduced coordinate geometry in 1637 by uniting algebra and Euclidean geometry, allowing curves to be studied through equations. This synthesis set the stage for calculus. Isaac Newton and Gottfried Wilhelm Leibniz independently developed calculus during the 1660s and 1670s, triggering a priority dispute that lasted decades and divided British and Continental mathematicians. Carl Friedrich Gauss proved the Fundamental Theorem of Algebra in 1799, showing that every nonconstant polynomial has at least one complex root. His Disquisitiones Arithmeticae of 1801 established modern number theory. David Hilbert's formalist program at the turn of the 20th century sought to place all of mathematics on an explicit axiomatic foundation, a project that Kurt Godel's incompleteness theorems of 1931 showed to be fundamentally limited. Alan Turing's work in the 1930s on computability introduced the theoretical model of the stored-program computer and linked mathematical logic directly to the limits of algorithmic calculation. His proof that no algorithm can decide in general whether an arbitrary program will halt or run forever placed fundamental boundaries on what mathematics can mechanically determine, and it opened the discipline now known as theoretical computer science.
Frequently Asked Questions
Formula
a_n = a * r^(n-1) | S_n = a(1 - r^n)/(1 - r)
Where a is the first term, r is the common ratio, n is the term position. For infinite series with |r| < 1, the sum converges to S = a/(1-r).
Worked Examples
Example 1: Finding the 10th Term and Sum
Problem: Find the 10th term and sum of the first 10 terms of the geometric sequence with a = 3 and r = 2.
Solution: a_10 = 3 * 2^(10-1) = 3 * 2^9 = 3 * 512 = 1,536\nS_10 = 3 * (1 - 2^10) / (1 - 2)\nS_10 = 3 * (1 - 1024) / (-1)\nS_10 = 3 * 1023 = 3,069\nSequence: 3, 6, 12, 24, 48, 96, 192, 384, 768, 1536
Result: 10th term = 1,536 | Sum of 10 terms = 3,069
Example 2: Convergent Infinite Series
Problem: Find the sum of the infinite geometric series: 100 + 50 + 25 + 12.5 + ...
Solution: First term a = 100, common ratio r = 50/100 = 0.5\nSince |r| = 0.5 < 1, the series converges.\nS = a / (1 - r) = 100 / (1 - 0.5)\nS = 100 / 0.5 = 200\nVerification: S_10 = 100 * (1 - 0.5^10) / 0.5 = 199.8 (very close to 200)
Result: Infinite sum = 200 | The series converges since |r| = 0.5 < 1
Frequently Asked Questions
What is a geometric sequence and how is it defined?
A geometric sequence (also called a geometric progression) is an ordered list of numbers where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the common ratio r. The general form is a, ar, ar^2, ar^3, and so on. For example, the sequence 3, 6, 12, 24, 48 is geometric with first term a = 3 and common ratio r = 2. Each term is exactly twice the previous one. Geometric sequences can grow (when |r| > 1), shrink toward zero (when |r| < 1), alternate in sign (when r < 0), or remain constant (when r = 1). They appear naturally in finance, biology, physics, and computer science.
How do you find the nth term of a geometric sequence?
The nth term of a geometric sequence is given by the formula a_n = a * r^(n-1), where a is the first term, r is the common ratio, and n is the position number. For example, in the sequence with a = 5 and r = 2, the 8th term is 5 * 2^7 = 5 * 128 = 640. This formula works because reaching the nth term requires multiplying by r exactly (n-1) times starting from the first term. When calculating large term numbers, the result can grow extremely fast for |r| > 1 or shrink rapidly for |r| < 1. This exponential nature is what distinguishes geometric sequences from arithmetic sequences, where each term differs by a constant addition.
What is the formula for the sum of a geometric series?
The sum of the first n terms of a geometric series is S_n = a * (1 - r^n) / (1 - r) when r is not equal to 1, and S_n = a * n when r = 1. For an infinite geometric series with |r| < 1, the sum converges to S = a / (1 - r). For example, the infinite series 1 + 1/2 + 1/4 + 1/8 + ... has a = 1 and r = 1/2, giving S = 1/(1 - 0.5) = 2. The finite sum formula is derived by multiplying S_n by r and subtracting from S_n to eliminate most terms. The infinite sum exists only when |r| < 1 because the terms diminish to zero fast enough that the total remains bounded.
What determines whether a geometric series converges or diverges?
A geometric series converges if and only if the absolute value of the common ratio is less than 1 (|r| < 1). When |r| < 1, each successive term becomes smaller and smaller, approaching zero, and the partial sums approach a finite limit of a/(1-r). When |r| >= 1, the terms do not approach zero, so the series diverges (the partial sums grow without bound or oscillate). When r = -1, the series oscillates between two values and does not converge. When |r| = 1 and r is not -1, the series grows linearly. This convergence criterion is one of the simplest and most important tests in series analysis and provides a foundation for understanding more complex convergence tests.
What are some real-world applications of geometric sequences?
Geometric sequences and series have extensive real-world applications across many fields. In finance, compound interest follows a geometric pattern where each period multiplies the balance by (1+r). Depreciation of assets at a fixed percentage rate creates a geometric decay sequence. In biology, population growth under ideal conditions follows geometric progression. In physics, the decay of radioactive materials produces a geometric sequence of remaining amounts. Musical frequencies of notes in equal temperament form a geometric sequence with ratio 2^(1/12). Fractal geometry uses geometric series to calculate perimeters and areas. Computer science uses geometric series in algorithm analysis, particularly for divide-and-conquer algorithms.
What is the geometric mean and how does it relate to geometric sequences?
The geometric mean of n numbers is the nth root of their product. For a geometric sequence, the geometric mean of consecutive terms equals the term between them. Specifically, for three consecutive terms a, ar, ar^2, the geometric mean is (a * ar * ar^2)^(1/3) = ar, which is the middle term. The geometric mean of the entire sequence a, ar, ar^2, ..., ar^(n-1) is a * r^((n-1)/2), which equals the square root of the product of the first and last terms. The geometric mean is always less than or equal to the arithmetic mean (AM-GM inequality) for positive numbers. It is used in finance to calculate average returns over time and in statistics for data that spans several orders of magnitude.
References
Reviewed by Manoj Kumar, Mathematics Educator ยท Editorial policy