A sequence is an ordered collection of values, and the order is part of its mathematical identity. The same numbers arranged differently form a different sequence because each position carries meaning. Sequence notation provides a compact way to name individual terms, describe how terms depend on position, and express how one term generates another. This framework appears in population models, payment schedules, computer algorithms, numerical approximations, and infinite-series theory. Learning it begins with treating the index as an input rather than as decoration.
You will learn to interpret , specify an index set, compare explicit and recursive definitions, derive arithmetic and geometric formulas, use finite differences and ratios diagnostically, and translate between lists, tables, graphs, and rules. You will also study shifted indices, partial sums, recurrence iteration, and modeling limits. Every subscript, exponent, and ellipsis will be explained. Examples will distinguish a term’s position from its value. The goal is to reason about sequences as functions on discrete domains.
Begin any sequence problem by identifying the first allowed index and pairing each displayed value with its index. Determine whether the rule gives a term directly or depends on earlier terms. Test a proposed formula on the initial term and at least two later terms. State the domain because a rule beginning at can describe a shifted list relative to the same formula beginning at . Finally, treat a pattern inferred from finite data as a model rather than a logically unique conclusion.
A sequence is a function with an ordered discrete domain
A function assigns exactly one output to each allowed input. A sequence is a function whose domain is an ordered set of integers, often or . The values may be real numbers, complex numbers, vectors, functions, or other mathematical objects. Ordering comes from the index domain rather than from the numerical sizes of the outputs. A sequence may increase, decrease, repeat, or behave irregularly while remaining well defined.
The notation is read “a sub n” and means the term of sequence at index . The subscript labels an input; it is not multiplication by . Thus means the value in position five when indexing begins at one, while would indicate multiplication in a different context. A full sequence may be denoted together with its index range. Braces here refer to the family of indexed terms, though precise contexts distinguish sequences from unordered sets.
For the list indexed from one, , , and . The ellipsis indicates continuation but does not, by itself, uniquely define how continuation occurs. A formula such as makes the intended rule explicit for positive integers . Substituting gives , and substituting gives . The index-to-value mapping is now unambiguous.
The starting index is part of the definition
The formula gives different first displayed values depending on its domain. If , the sequence begins . If , it begins . The algebraic expression has not changed, but the allowed inputs have. A sequence definition is incomplete when its index set is ambiguous.
Different fields use different starting conventions. Introductory sequences often begin at one because “first term” naturally corresponds to . Computer science frequently begins indexing at zero, making the first stored element . Power series naturally use because the constant term contains . Neither convention is universally correct; consistency and explicitness matter.
Reindexing shifts labels without necessarily changing the ordered values. If for , define for . Then , , and the displayed values match while the labels differ. The expression for is . Shifted exponents often arise because of this index translation.
Explicit rules compute terms directly
An explicit rule expresses using the index and fixed parameters without requiring earlier sequence values. For , substituting any allowed positive integer gives the corresponding term directly. To find , calculate . No preceding ninety-nine terms need to be generated. Explicit formulas are therefore efficient for distant-term evaluation.
The expression counts the number of steps from index one to index . At , zero steps have occurred, so the formula returns the starting value . At , one increment of two has occurred, giving . At , ninety-nine increments have occurred. This step-count interpretation is more reliable than memorizing the visible pattern.
An explicit rule also clarifies domain restrictions. The expression is undefined at , so a claimed domain containing three would fail unless that term is separately defined. The expression requires for real values. A sequence domain can skip or begin after problematic integers. Formula and domain jointly define the function.
Recursive rules describe generation from prior terms
A recursive definition gives one or more initial values and a rule connecting later terms to earlier ones. The sequence can be defined by and for . The first statement supplies a starting anchor. The second says the next term equals the current term plus two. Both parts are necessary.
The notation means the term whose index is one greater than . It does not mean . When , the recurrence gives . When , it gives . Repeated substitution generates the list step by step.
Recursive descriptions emphasize local dynamics and often mirror real processes. A bank balance next month may depend on this month’s balance, interest, deposits, and withdrawals. A population next year may depend on the current population through a growth rule. Computer algorithms can compute recurrence terms iteratively without a closed form. The tradeoff is that reaching a distant term may require all intervening terms unless an explicit solution is found.
Arithmetic sequences have constant first difference
An arithmetic sequence changes by a constant amount from one term to the next. The recursive definition is . Subtracting consecutive terms gives , which explains the phrase common difference. The value may be positive, negative, or zero. Equal index steps produce equal output changes.
If the first term is , then reaching requires increments of . The explicit formula is . At , the added part is zero and the formula returns the initial term. At , one difference is added. This initial-term check guards against the common off-by-one error.
For , the common difference is . With , the explicit rule is . Expanding gives , an equivalent formula. Substitution of and reproduces and , confirming both initial placement and step size. The negative difference explains why the terms decrease as the index grows.
Geometric sequences have constant ratio
A geometric sequence multiplies by a constant ratio from one term to the next. Its recursive form is . When terms are nonzero, dividing consecutive terms gives . The ratio can produce growth, decay, sign alternation, or a constant sequence depending on its value. Multiplication replaces the repeated addition of an arithmetic sequence.
Starting from , reaching term requires multiplications by . The explicit formula is . The exponent counts repeated multiplications, just as the arithmetic factor counts repeated additions. At , , so the formula returns . The zero exponent is essential to the starting-index convention.
For , the common ratio is . The recursive definition is and . The explicit rule is . Then . Both representations describe the same sequence from different viewpoints.
Differences and ratios diagnose but do not prove a rule
Computing first differences is a useful diagnostic for arithmetic structure. Constant first differences across a table support an arithmetic model. Constant second differences support a quadratic model when indices are equally spaced. Higher finite differences can reveal polynomial patterns of higher degree. These tests organize evidence from discrete values.
Computing consecutive ratios similarly tests a geometric model. If is constant wherever denominators are nonzero, the observed terms follow geometric behavior. Ratios are undefined when a denominator term is zero, so the test needs care. Rounding in measured data may make ratios approximately rather than exactly constant. A model may then be fitted and evaluated rather than declared exact.
No finite list determines a unique infinite continuation without additional assumptions. The first values suggest , but another formula can agree for those indices and diverge later. For example, adding a term that contains changes later values while leaving the first four untouched. Pattern recognition is therefore an inference based on simplicity or context. State the assumed model class when uniqueness matters.
Graphs of sequences are discrete point sets
Graph a sequence by plotting ordered pairs for allowed indices. Because the domain is discrete, the graph consists of separate points rather than a continuous curve. Connecting points may help the eye see a trend, but the connecting segments are not automatically part of the sequence. An input such as may have no sequence value. The graph should preserve that domain distinction.
An arithmetic sequence produces points lying on a line because is linear in . The slope of the supporting line is . A geometric sequence produces points following an exponential shape when , because the index appears in an exponent. The continuous exponential curve can interpolate the pattern, but it defines an extension beyond the original sequence. Discrete and continuous models answer different input questions.
Plotting can expose indexing mistakes. If the first term should appear at but the formula places it at , every point is shifted horizontally. A table with columns labeled and provides a direct pre-graph check. Axes should name the index and the term’s units when applicable. Position is usually dimensionless, while outputs may carry dollars, meters, organisms, or another unit.
Recursive and explicit forms can be converted
For an arithmetic recurrence , repeated substitution gives , , and . The coefficient of is always one less than the index. Generalizing gives . This derivation links local repeated change to global position. The explicit form is not a separate fact but a compressed recurrence history.
For a geometric recurrence , repeated substitution gives , , and . Again the exponent is one less than the index. Generalizing gives . Induction can turn this observed structure into a proof for all positive integers. The base case and update rule mirror the recursive definition.
Not every recurrence has a simple elementary explicit formula. The Fibonacci sequence, defined by , , and , depends on two earlier terms. It has a closed form, but the recurrence is often more natural computationally and conceptually. Other recurrences may require matrix methods, generating functions, or numerical iteration. Explicit and recursive are forms of description, not rankings of mathematical legitimacy.
Partial sums create a new sequence
Given a sequence , define its th partial sum by . The capital sigma directs repeated addition. The index is a temporary summation variable that begins at one and ends at . Thus . The partial sums form a new sequence.
For an arithmetic sequence with first term and last included term , the finite sum is . The horizontal fraction bar divides the product by two. This formula reflects pairing first with last, second with next-to-last, and so on. An equivalent form substitutes . Both require knowing exactly how many terms are included.
For a geometric sequence with first term and ratio , the finite sum is . The exponent counts the number of included terms through the cancellation derivation. When , every term equals and the sum is simply , so the displayed fraction’s zero denominator signals a separate case. Partial sums lead directly toward infinite-series convergence. Finite and infinite sums must not be conflated.
Growth and decay models use ratios with units and time steps
A repeated percent change produces geometric structure when each period uses the same multiplicative factor. A growth rate of per period corresponds to factor . If is the initial amount at index zero, then . Here counts completed periods. The indexing convention aligns the zero index with zero elapsed periods.
A decay rate of per period leaves , so the factor is , not . The model becomes . Outputs remain positive when , while decreasing toward zero. The phrase “decrease by twelve percent” describes multiplying the previous amount by one minus the decimal rate. Additive subtraction of a fixed amount would instead be arithmetic.
Units and period length belong to the ratio. A factor of per year cannot be applied for twelve monthly steps without converting the model. If compounding occurs monthly, a monthly factor must be supplied or derived under stated assumptions. Real populations, prices, and balances may have changing rates and external inputs. A geometric sequence is a model whose constant-ratio assumption must be evaluated.
Recurrences can include input as well as multiplication
Many practical sequences combine accumulated state with a recurring addition. A savings balance might follow , where is the interest rate per period and is a fixed deposit made according to a stated timing convention. The previous balance is multiplied before the deposit is added in this version. Changing deposit timing changes the recurrence. Every symbol must be tied to an event order.
Iterating from gives , , and . A geometric sum appears because earlier deposits receive more growth periods. This connection converts a recurrence into an explicit formula under constant and . The derivation also shows why blindly using a compound-interest formula can miscount payment timing. Writing the first several terms exposes that timing before symbols conceal it.
Units check the recurrence. Both and have currency units, while is dimensionless per stated period. The factor is dimensionless, so remains currency and can be added to . If terms with incompatible units appear, the model is malformed. Dimensional reasoning applies to discrete models as strongly as to physical equations.
Index shifts require careful substitution
Sequence formulas often appear with , , or a general shift . To find from an explicit rule, replace every occurrence of with . If , then . Expanding gives . Replacing only one occurrence would be an inconsistent substitution.
To find a first difference symbolically, compute . For , this is . The result depends linearly on , showing that first differences change. Taking another difference gives a constant two. This algebra connects the table-based difference pattern to the formula.
Index shifts also appear in recurrences to align initial conditions. A rule written for is equivalent to for . The allowed values change with the notation so both rules begin by computing from . State the valid index range beside the recurrence. Without it, the earliest required previous term may be undefined.
Common errors and corrective habits
One common error is confusing with . Subscripts name indexed terms, while adjacent symbols generally indicate multiplication. Another is omitting the starting index, producing an off-by-one shift in formulas such as . Test the first allowed index before trusting a rule. The initial term should emerge without extra steps.
A second error is identifying a geometric sequence from constant differences or an arithmetic sequence from constant ratios. Write separate diagnostic columns and label the operation. A third error is assuming that a few terms prove a unique continuation. State whether the rule is given, derived under an arithmetic or geometric assumption, or merely conjectured. Mathematical honesty includes the basis for pattern selection.
Recursive definitions can fail when initial conditions are missing or insufficient. A two-step recurrence usually needs two starting values, while a one-step recurrence needs one. Check that every requested term can be generated from supplied data. For explicit rules, check domain restrictions and units. For graphs, preserve discrete points rather than silently filling every real input.
A connected example across representations
Consider the sequence beginning at . Consecutive differences are all five, so an arithmetic model is supported. The recursive form is and . The explicit form is . Substituting and checks the endpoints shown.
The graph consists of points lying on the line . The continuous line helps reveal slope but includes inputs not belonging to the original positive-integer domain. The tenth term is . The sum of the first ten terms is . Each conclusion uses the representation that makes it simplest.
Now shift to zero-based indexing while preserving the displayed values. Define and for . The explicit formula becomes . Then , corresponding to the same physical tenth listed value as . The difference between nine and ten is indexing, not sequence content.
Retrieval and connection forward
Without looking back, define a sequence as a function and explain why its domain is discrete. Distinguish index, term, explicit rule, recursive rule, initial condition, common difference, and common ratio. Derive the arithmetic and geometric explicit formulas by counting steps from the first term. Then explain why a finite pattern does not logically determine a unique infinite sequence. If your explanation relies only on visual continuation, return to the role of assumptions.
Sequences lead naturally to summation notation, finite-series formulas, and infinite-series convergence. Difference equations provide discrete analogues of differential equations, while recurrence relations underlie algorithms and dynamic models. Arithmetic sequences connect to linear functions, and geometric sequences connect to exponential functions. Partial sums introduce accumulation, a theme that later appears in integration. Index discipline continues through vectors, matrices, probability, and programming.
The enduring insight is that position is data. A sequence rule does not merely generate numbers; it assigns a value to each allowed integer input. Explicit forms reveal dependence on position, recursive forms reveal dependence on prior state, and graphs preserve the discreteness of the domain. Differences, ratios, and sums expose structure without erasing assumptions. Once indices are handled deliberately, sequence notation becomes a precise language for repeated change.