13.1 Sequences and Their Notations

4 min readjune 24, 2024

Sequences are ordered lists of numbers following specific patterns. They're crucial in math for modeling real-world scenarios and solving complex problems. This topic covers how to generate and work with sequences using explicit formulas, recursive definitions, and .

Understanding sequences helps us analyze patterns and make predictions. We'll explore different types of sequences, like arithmetic and geometric, and learn how to find specific terms. We'll also dive into factorials and their applications in combinatorics and probability.

Sequences and Their Notations

Generation of explicit sequence terms

fiveable_image_carousel
  • An for a is a function that allows direct calculation of the , usually written as
    • For the sequence 2, 5, 8, 11, ... the is an=3n1a_n = 3n - 1
  • To find the nth term using the explicit formula, substitute the desired term number for n in the function
    • To find the 10th term of the sequence 2, 5, 8, 11, ... use a10=3(10)1=29a_{10} = 3(10) - 1 = 29
  • Common types of sequences with explicit formulas:
    • Arithmetic sequences: , where a1a_1 is the first term and d is the
      • In an , the difference between consecutive terms is constant (e.g., 2, 5, 8, 11, ... has a common difference of 3)
    • Geometric sequences: , where a1a_1 is the first term and r is the
      • In a , each term is a constant multiple of the previous term (e.g., 2, 6, 18, 54, ... has a of 3)

Construction of recursive sequence terms

  • A defines each term of a sequence using one or more of the previous terms
    • For the 0, 1, 1, 2, 3, 5, ... the recursive formula is an=an1+an2a_n = a_{n-1} + a_{n-2} for n3n \geq 3, with a1=0a_1 = 0 and a2=1a_2 = 1
  • To find the nth term using a recursive formula, calculate each term sequentially until reaching the desired term
    • To find the 6th term of the Fibonacci sequence, calculate:
      1. a3=a2+a1=1+0=1a_3 = a_2 + a_1 = 1 + 0 = 1
      2. a4=a3+a2=1+1=2a_4 = a_3 + a_2 = 1 + 1 = 2
      3. a5=a4+a3=2+1=3a_5 = a_4 + a_3 = 2 + 1 = 3
      4. a6=a5+a4=3+2=5a_6 = a_5 + a_4 = 3 + 2 = 5
  • Recursive formulas require , which specify the starting term(s) of the sequence
    • Initial conditions are necessary because the recursive formula depends on previous terms
    • Without initial conditions, the sequence would be undefined

Application of factorial notation

  • Factorial notation, denoted by !, represents the product of a positive integer and all positive integers less than it
    • 5!=54321=1205! = 5 \cdot 4 \cdot 3 \cdot 2 \cdot 1 = 120
  • By definition, 0!=10! = 1
    • This is a special case that allows for consistency in mathematical formulas and combinatorial identities
  • Factorials are often used in sequence formulas, particularly in combinatorics and probability
    • The number of of n distinct objects is n!n!
      • A permutation is an arrangement of objects in a specific order
  • Simplifying expressions with factorials:
    • n!(nk)!=n(n1)(n2)...(nk+1)\frac{n!}{(n-k)!} = n \cdot (n-1) \cdot (n-2) \cdot ... \cdot (n-k+1), where nkn \geq k
      • This simplification is useful when working with permutations and combinations
    • n!k!(nk)!=(nk)\frac{n!}{k!(n-k)!} = \binom{n}{k}, the
      • The binomial coefficient represents the number of ways to choose k objects from a set of n objects
  • Sequences involving factorials:
    • The sequence of factorials: 1, 1, 2, 6, 24, 120, ...
      • Each term is the factorial of its position (1!, 2!, 3!, 4!, 5!, ...)
    • The sequence of (permutations with no fixed points): 1, 0, 1, 2, 9, 44, 265, ...
      • A derangement is a permutation where no element appears in its original position
      • The nth term of this sequence is given by

Behavior of Sequences and Series

  • A sequence is an ordered list of numbers that follow a specific pattern or rule
  • occurs when the terms of a sequence approach a specific value () as n approaches infinity
  • happens when a sequence does not converge to a specific value
  • The limit of a sequence, if it exists, is the value that the terms approach as n increases indefinitely
  • A is the sum of the terms of a sequence
    • Series can be represented using summation notation, which compactly expresses the sum of sequence terms

Key Terms to Review (33)

!: The exclamation point, also known as the exclamation mark, is a punctuation symbol used to indicate strong emotion, emphasis, or surprise. It is often used at the end of an exclamatory sentence or phrase to convey a sense of excitement, urgency, or intensity.
$\binom{n}{k}$: $\binom{n}{k}$ is a mathematical notation used to represent the number of ways to choose $k$ items from a set of $n$ items, without regard to order. It is a fundamental concept in combinatorics and is often used in the study of sequences and their notations.
$\frac{n!}{(n-k)!}$: $\frac{n!}{(n-k)!}$ is a mathematical expression that represents the number of permutations of $k$ objects out of a set of $n$ objects. It is a fundamental concept in the study of sequences and their notations, as it allows for the calculation of the number of ways to arrange a subset of elements from a larger set.
$0!$: $0!$ is a mathematical notation used in the context of sequences and series. It represents the factorial of the number 0, which is defined as the product of all positive integers less than or equal to that number. In the case of $0!$, the factorial of 0 is defined as 1, as it is the only positive integer less than or equal to 0.
$a_n = a_1 \cdot r^{n-1}$: $a_n = a_1 \cdot r^{n-1}$ is a formula used to describe the $n$th term of a geometric sequence. It represents the relationship between the first term ($a_1$) of the sequence, the common ratio ($r$) between consecutive terms, and the position of the term within the sequence ($n$).
$a_n = a_1 + (n - 1)d$: $a_n = a_1 + (n - 1)d$ is a formula used to describe the general term of an arithmetic sequence. It represents the $n^{th}$ term of the sequence, where $a_1$ is the first term, n is the term number, and d is the common difference between consecutive terms.
$a_n = f(n)$: $a_n = f(n)$ is a mathematical expression that represents a sequence, where $a_n$ is the $n$-th term of the sequence and $f(n)$ is a function that defines the relationship between the term number $n$ and the value of the term $a_n$. This expression is fundamental in the study of sequences and their properties.
$D_n = n! \sum_{i=0}^n \frac{(-1)^i}{i!}$: $D_n = n! \sum_{i=0}^n \frac{(-1)^i}{i!}$ is a mathematical expression that represents a sequence, particularly in the context of 13.1 Sequences and Their Notations. This term is used to define a specific sequence, where $n$ represents the index of the sequence and the expression calculates the value of the $n$-th term in the sequence. The sequence defined by this expression is known as the Euler-Mascheroni constant sequence, and it plays an important role in various mathematical fields, including number theory and analysis.
Arithmetic sequence: An arithmetic sequence is a sequence of numbers in which the difference between consecutive terms is constant. This difference is known as the common difference.
Arithmetic Sequence: An arithmetic sequence is a sequence of numbers where the difference between any two consecutive terms is constant. This constant difference is known as the common difference, and it allows the sequence to be generated by adding the common difference to each term.
Binomial Coefficient: The binomial coefficient is a mathematical concept that represents the number of ways to choose a certain number of items from a set, without regard to order. It is a fundamental principle in combinatorics and has applications in various areas of mathematics, including probability, statistics, and the binomial theorem.
Common difference: The common difference is the constant amount added or subtracted between consecutive terms in an arithmetic sequence. It is denoted by $d$.
Common ratio: The common ratio is the constant factor between consecutive terms of a geometric sequence. It is found by dividing any term by its preceding term.
Common Ratio: The common ratio is a constant value that represents the ratio between consecutive terms in a geometric sequence. It is the multiplicative factor that is used to generate each successive term in the sequence from the previous term.
Convergence: Convergence is a fundamental concept in the study of sequences, describing the behavior of a sequence as it approaches a specific value or limit. It is a crucial topic in the context of 13.1 Sequences and Their Notations, as it allows for the analysis and understanding of the behavior of numerical sequences over time.
Derangements: Derangements refer to a specific type of permutation where no element is placed in its original position. In other words, a derangement is a rearrangement of the elements of a set in which none of the elements appear in their original position.
Divergence: Divergence is a mathematical concept that describes the rate at which a vector field is expanding or contracting at a given point. It measures the density of the outward flux of a vector field from an infinitesimal volume around a given point. Divergence is an important concept in the study of vector calculus, fluid dynamics, and electromagnetism.
Explicit formula: An explicit formula directly defines the nth term of a sequence as a function of n. Unlike recursive formulas, it does not require the computation of previous terms.
Explicit Formula: An explicit formula is a mathematical expression that directly defines a term or element in a sequence based on its position or index within the sequence. It provides a straightforward way to calculate any specific term without needing to refer to previous terms in the sequence.
Factorial Notation: Factorial notation is a mathematical concept used to represent the product of consecutive positive integers, starting from 1 and up to a given positive integer. It is denoted by the exclamation mark (!) following the number, and it is a fundamental tool in the study of sequences and their notations.
Fibonacci Sequence: The Fibonacci sequence is a series of numbers in which each number is the sum of the two preceding ones, usually starting with 0 and 1. This sequence exhibits unique mathematical properties and patterns that are widely studied in various fields, including mathematics, computer science, and nature.
Geometric sequence: A geometric sequence is a sequence 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. The general form of a geometric sequence can be written as $a, ar, ar^2, ar^3, \ldots$.
Geometric Sequence: A geometric sequence is a sequence where each term is a constant multiple of the previous term. The ratio between consecutive terms is a fixed number, known as the common ratio, which determines the pattern of the sequence.
Geometric series: A geometric series is the sum of the terms of a geometric sequence, where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the common ratio.
Initial Conditions: Initial conditions refer to the starting values or circumstances that define the state of a system or process at the beginning of a sequence or mathematical model. They serve as the foundation upon which the subsequent behavior or evolution of the system is determined.
Limit: A limit is a value that a function or sequence approaches as the input variable approaches a certain value. It represents the behavior of a function or sequence as it gets closer and closer to a specific point, without necessarily reaching that point.
Lower limit of summation: The lower limit of summation is the starting index value in a summation notation, often denoted by $i=1$ or another integer. It indicates where the series begins.
Nth Term: The nth term, also known as the general term, refers to the term in a sequence that corresponds to the nth position or index. It is a formula or expression that allows you to calculate any specific term in the sequence based on its position or index number.
Nth term of the sequence: The nth term of a sequence is a formula that allows you to find the value of any term in the sequence based on its position number, n. It generalizes the pattern within the sequence for all terms.
Permutations: Permutations refer to the ordered arrangements of a set of objects or elements. They describe the different ways in which a group of items can be ordered or positioned, taking into account the order or sequence of the items.
Recursive Formula: A recursive formula is a mathematical expression that defines a sequence or series by relating each term to the previous term(s) in the sequence. It allows for the generation of a sequence by repeatedly applying the same rule or formula to generate the next term based on the preceding term(s).
Sequence: A sequence is an ordered list of elements, such as numbers, letters, or objects, that follow a specific pattern or rule. Sequences are fundamental concepts in mathematics and are extensively studied in various topics, including algebra, calculus, and discrete mathematics.
Series: A series is a sequence of numbers or terms that follow a specific pattern or rule. It is a way of representing a sum of infinitely many terms, where each term is related to the previous one through a defined relationship.
© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.
Glossary
Glossary