Math I · F-IF.3

Sequences as Functions with Integer Domains

Sequences help you understand anything that happens step by step: savings deposits, loan balances, population counts, game scores, computer loops, inventory, subscriptions, exercise plans, and patterns in nature.

Concept Functions
Domain Interpreting Functions
Read time 12 minutes

What this learning objective is really asking you to learn

This objective asks students to connect two ideas that are often taught as if they live in separate rooms: sequences and functions. A function takes an input and produces exactly one output. A sequence does the same thing, but its inputs are usually counting numbers: first term, second term, third term, fourth term, and so on. That means a sequence is a function with a special kind of domain. Instead of accepting every real number input, like \(x = 2.7\) or \(x = -1.4\), a sequence usually accepts whole-number positions such as \(n = 1\), \(n = 2\), \(n = 3\), and \(n = 4\).

For example, the sequence 5, 8, 11, 14, 17, ... can be treated as a function. If we call the function \(a(n)\), then \(a(1) = 5\), \(a(2) = 8\), \(a(3) = 11\), and \(a(4) = 14\). The input is not time measured continuously. It is the term number. The output is the value of the term. Written this way, the sequence becomes a machine: put in a position, get out the value at that position.

That may sound like a small distinction, but it is one of the most important shifts in Integrated Math I. Earlier, students learn that a function can be shown by a formula, a table, a graph, or a verbal description. A sequence adds another representation: a list ordered by position. The order matters. The third term is not just another number; it is the output connected to the input 3. A sequence is not merely a pile of numbers. It is a relationship between position and value.

The objective also asks students to recognize recursive sequences. A recursive sequence defines each term using earlier terms. Instead of saying directly what \(a(50)\) is, a recursive rule says where to start and how to keep going. For the arithmetic sequence 5, 8, 11, 14, ..., a recursive description is \(a(1) = 5\) and \(a(n) = a(n - 1) + 3\) for \(n > 1\). That means the first value is 5, and every later value is 3 more than the one before it. For a geometric sequence such as 2, 6, 18, 54, ..., a recursive description is \(a(1) = 2\) and \(a(n) = 3a(n - 1)\) for \(n > 1\). Each term is three times the previous term.

This learning objective is not primarily about memorizing formulas. It is about recognizing that a repeated process is a function, and that the “input” of the function can be a step number. When students understand that, they can see why sequences appear in finance, biology, computing, sports, music, architecture, and any situation where something changes in rounds, generations, payments, days, months, or attempts.

Why students should learn this math

The direct answer to “Why am I learning this?” is that real life is full of quantities that do not change all at once. They change one step at a time. A bank account grows after each deposit or interest period. A phone battery drains minute by minute. A social media post gains views hour by hour. A virus spreads generation by generation. A car loses value year by year. A video game character gains experience level by level. A warehouse inventory changes shipment by shipment. A workout plan increases weight week by week. A loan balance changes payment by payment.

In all those examples, the natural input is not every possible decimal number. The natural input is a count: day 1, day 2, day 3; payment 1, payment 2, payment 3; generation 1, generation 2, generation 3. That is why sequences matter. They describe processes where the world moves in steps.

This is also one of the earliest places where students meet the mathematics behind algorithms. A computer program often repeats an instruction: start with a value, update it, update it again, update it again. That is recursion in practical form. When a spreadsheet calculates a loan balance month by month, it is not using magic. It is applying a repeated rule. When a simulation predicts population growth year by year, it is applying a repeated rule. When a game updates a score after each round, it is applying a repeated rule. Sequences train students to think like that.

Sequences also help students understand the difference between additive and multiplicative change. Arithmetic sequences grow by adding the same amount each step. Geometric sequences grow by multiplying by the same factor each step. That difference becomes the foundation for the later distinction between linear and exponential models. If a job pays $100 more each week, the pattern is additive. If an investment grows by 5 percent each year, the pattern is multiplicative. These are not just school categories. They describe two deeply different kinds of change in the world.

Students who do not understand sequences often struggle later with exponential growth, compound interest, recursive formulas, series, logarithms, computer science, and calculus. They may be able to graph a line or plug into a formula, but they do not yet see how a process unfolds. Sequences give students a way to model time, repetition, accumulation, and iteration. That is a huge part of the real world.

Where this objective fits on the full map of mathematics

On the big map of math, sequences sit at the crossing point between functions, number patterns, modeling, and algorithms. They are part of functions because each input has exactly one output. They are part of algebra because we can write rules for them. They are part of modeling because repeated processes are everywhere. They are part of discrete mathematics because their inputs usually come from integers, not a continuous number line. They are part of computer science because recursive and iterative rules are the backbone of programming.

This objective comes right after students learn function notation. That placement is deliberate. Once a student knows that \(f(x)\) means “the output of function \(f\) at input \(x\),” the next step is realizing that the input does not always have to be a continuous measurement. In a sequence, the input can be a position. \(a(10)\) means the tenth term, not necessarily the value when time equals exactly 10 seconds. That distinction is subtle but powerful.

Sequences also connect backward to Objective 017, where students write arithmetic and geometric sequences explicitly and recursively. There, the focus is building the rule. Here, the focus is interpreting the sequence as a function. A student should be able to say, “This sequence is a function because every allowed input term number has one output value.” That statement strengthens the general function concept from Objective 019 and the notation work from Objective 020.

Looking ahead, sequences lead naturally into linear and exponential models. Arithmetic sequences preview linear functions because they have constant differences. Geometric sequences preview exponential functions because they have constant ratios. Later, students will compare equal differences and equal factors, build linear and exponential models from data, and interpret parameters in those models. Sequences are where those ideas first become visible in a simple step-by-step form.

Sequences also lead to advanced mathematics. In precalculus and calculus, students study series, which are sums of sequences. Infinite series are used to approximate functions, compute values, and build models. In statistics, sequences appear in simulations and repeated trials. In finance, they appear in annuities and loan amortization. In computer science, they appear in recursion, loops, dynamic programming, and data structures. In biology, they appear in population generations and genetic patterns. A simple sequence in Math I is a seed for a large branch of mathematics.

The historical machinery behind sequences

Humans noticed patterns long before modern algebra existed. Counting itself is a sequence: one, two, three, four. Calendars are sequences of days. Ancient people tracked lunar cycles, harvest cycles, trade quantities, and architectural measurements. The idea of a repeated ordered list is one of the oldest mathematical ideas because it comes directly from lived experience.

One famous historical sequence is connected to Leonardo of Pisa, better known as Fibonacci. In the early 1200s, he wrote about a rabbit population problem that produced the sequence now called the Fibonacci sequence: 1, 1, 2, 3, 5, 8, 13, .... Each new term is the sum of the previous two terms. In modern notation, we might write \(F(1) = 1\), \(F(2) = 1\), and \(F(n) = F(n - 1) + F(n - 2)\) for \(n > 2\). This is recursive because each value depends on earlier values.

The Fibonacci sequence became famous partly because similar patterns appear in nature: branching plants, pinecones, sunflower seed arrangements, and other growth structures often show relationships connected to Fibonacci numbers or related ratios. But the more important lesson for Math I is not that “nature loves Fibonacci.” The deeper lesson is that a simple recursive rule can generate a complex pattern. A few starting values and a repeatable rule can create a long, structured sequence.

That idea became essential in modern science and technology. Numerical methods in science often use step-by-step calculations. Computers use repeated updates. Financial tables use recurrence rules. Population models use one generation to predict the next. Even modern artificial intelligence systems are trained through repeated adjustment processes. At a very high level, they improve parameters step by step, using current values to produce later values. That is a recursive mindset.

Historically, algebra gave people a way to compress sequences. Instead of listing one hundred numbers, a mathematician could write a rule. For the sequence 3, 7, 11, 15, ..., the explicit formula \(a(n) = 4n - 1\) gives the nth term directly. For compound interest, a formula such as \(A(n) = P(1 + r)^n\) describes repeated multiplication. The development of symbolic algebra turned sequences from observed patterns into tools for prediction.

The technical machinery: domain, output, explicit rules, and recursive rules

A sequence has three essential pieces: the domain, the output values, and the rule or pattern connecting them. The domain is the set of allowed inputs. In a typical sequence, the domain is \({1, 2, 3, 4, ...}\) or sometimes \({0, 1, 2, 3, ...}\). Both are subsets of the integers. That is the key phrase in the standard. The domain is not all real numbers. It is not usually meaningful to ask for the 2.5th term of a sequence unless the situation has been specially extended.

The output values are the terms. In the sequence 10, 15, 20, 25, ..., the first term is 10, the second is 15, the third is 20, and the fourth is 25. Written as a function, \(a(1) = 10\), \(a(2) = 15\), \(a(3) = 20\), and \(a(4) = 25\).

An explicit rule gives the value of a term directly from its position. For the sequence above, \(a(n) = 5n + 5\) if the first term is assigned to \(n = 1\). To find the 100th term, plug in \(n = 100\): \(a(100) = 5(100) + 5 = 505\). You do not need to list all the terms in between.

A recursive rule gives a starting value and an update rule. The same sequence can be defined as \(a(1) = 10\) and \(a(n) = a(n - 1) + 5\) for \(n > 1\). This says that every term after the first is 5 more than the previous term. To find the 100th term, you could keep adding 5 again and again. That may be less efficient by hand, but it mirrors many real processes better than the explicit rule.

Students should learn both forms because they answer different questions. An explicit rule is good when you need a far-away term quickly. A recursive rule is good when the process itself matters. If a bank balance changes each month depending on the previous balance, recursion is natural. If a game score changes after each turn, recursion is natural. If a population this year depends on last year's population, recursion is natural.

A major technical mistake is treating a sequence as if it had every real number input. If \(a(n)\) gives the number of buses needed for \(n\) students, the domain might be positive integers for \(n\), and the output might also be integers. If \(a(n)\) gives the number of tiles in stage \(n\) of a pattern, \(n = 2.5\) may not make sense. The graph of a sequence should often be shown as separate points, not a connected line, because the values between term numbers may not exist in the model.

A concrete example: a savings plan

Suppose a student starts with $40 and saves $15 each week. We can define a sequence \(S(n)\) where \(n\) is the number of weeks after starting and \(S(n)\) is the amount of money saved. If we decide that \(n = 0\) means the starting moment, then \(S(0) = 40\). After one week, \(S(1) = 55\). After two weeks, \(S(2) = 70\). The sequence is 40, 55, 70, 85, ... if we start at \(n = 0\).

As a recursive rule, we can write \(S(0) = 40\) and \(S(n) = S(n - 1) + 15\) for \(n \ge 1\). This says, “Start at 40, then add 15 each week.” As an explicit rule, we can write \(S(n) = 40 + 15n\). This says, “After \(n\) weeks, add 15n dollars to the starting amount.” Both rules describe the same relationship, but they highlight different things.

The domain matters. If the student updates the account only at the end of each week, then the natural domain is whole numbers: 0, 1, 2, 3, .... It does not make sense in this model to ask for \(S(2.3)\) unless we decide to create a continuous model between weekly deposits. The sequence model is discrete because the deposits happen in weekly steps.

Now compare this with a geometric savings model. Suppose a balance grows by 5 percent each month. If \(B(0) = 100\), then \(B(1) = 105\), \(B(2) = 110.25\), and \(B(3) = 115.7625\). The recursive rule is \(B(0) = 100\) and \(B(n) = 1.05B(n - 1)\) for \(n \ge 1\). The explicit rule is \(B(n) = 100(1.05)^n\). This is a sequence because we are measuring month by month. It is also a function because every allowed month number has exactly one balance.

Common misconceptions students need to defeat

The first misconception is thinking that sequences are separate from functions. They are not. A sequence is a function with a domain made of integer positions. That is the central idea.

The second misconception is thinking the domain is always 1, 2, 3, .... Sometimes it is, but not always. Some sequences start at 0, especially in computer science, finance, and formulas involving elapsed time. A student should look at the context and the definition. If \(n = 0\) means the starting amount, then the sequence begins at zero. If \(n = 1\) means the first item, then it begins at one.

The third misconception is connecting points on a graph automatically. A connected line says that all the values between inputs are meaningful. For many sequences, only separate points are meaningful. If a pattern has a stage 1, stage 2, and stage 3, there may be no stage 2.4. Connecting the points can be visually helpful, but students should know what the graph means.

The fourth misconception is confusing recursive and explicit definitions. Recursive means “use previous term or terms.” Explicit means “use the position directly.” In real life, recursive rules often describe the process more honestly, while explicit rules often make calculation more efficient.

The fifth misconception is assuming every pattern is arithmetic or geometric. Many sequences are neither. The Fibonacci sequence is not arithmetic because the difference is not constant. It is not geometric because the ratio is not constant. But it is still a sequence, and it is still a function.

Mastery in student language

A student has mastered this objective when they can say something like this: “A sequence is a function because each input term number gives exactly one output term value. Its domain is usually integers or whole numbers, not all real numbers. I can describe a sequence by listing terms, writing an explicit formula, or writing a recursive rule. Recursive rules use earlier terms, while explicit rules use the input position directly. The reason this matters is that many real situations happen step by step.”

That explanation is far more valuable than just finding the next number in a pattern. Pattern recognition is useful, but this objective is deeper. It teaches students to see repeated change as a function. Once they can do that, they are ready for linear models, exponential models, compound interest, algorithms, simulations, and the broader mathematics of change over time.

Problem Library

Problems in the App From This Objective

144 problems across 12 archetypes in the app.

connect term number to discrete input.
12 problems Warmup Practice Mixed Review Assessment
Problem 1

Identify the domain of the sequence a_1 is the first term, a_2 is the second term, and so on as positive integers, nonnegative integers, or a finite integer set.

Problem 2

Identify the domain of the sequence a_0 is the starting value at time 0, followed by a_1, a_2, and so on as positive integers, nonnegative integers, or a finite integer set.

Problem 3

Identify the domain of the sequence a sequence lists the first 8 rows of a theater as positive integers, nonnegative integers, or a finite integer set.

Problem 4

Identify the domain of the sequence The terms a_n describe the number of apples picked on day n, starting with day 1. as positive integers, nonnegative integers, or a finite integer set.

Problem 5

Identify the domain of the sequence The sequence a_t represents the number of bacteria after t hours, starting at t=0. as positive integers, nonnegative integers, or a finite integer set.

Problem 6

Identify the domain of the sequence A sequence lists the number of students in each of the 5 grades, from grade 1 to grade 5. as positive integers, nonnegative integers, or a finite integer set.

Open in simulator
Problem 7

Identify the domain of the sequence The sequence a_k represents the k-th term in a series, where k starts at 1. as positive integers, nonnegative integers, or a finite integer set.

Problem 8

Identify the domain of the sequence The sequence a_i represents the value of an investment after i years, starting with the initial investment at year 0. as positive integers, nonnegative integers, or a finite integer set.

Problem 9

Identify the domain of the sequence A sequence records the temperature every hour for a full day, starting at hour 0. as positive integers, nonnegative integers, or a finite integer set.

Problem 10

Identify the domain of the sequence The sequence a_m describes the number of items in box m, beginning with box 1. as positive integers, nonnegative integers, or a finite integer set.

Problem 11

Identify the domain of the sequence The sequence a_j describes the number of points scored in game j, for games 1 through 10. as positive integers, nonnegative integers, or a finite integer set.

Problem 12

Identify the domain of the sequence The terms a_x represent the population of a town after x decades, where x=0 is the current decade. as positive integers, nonnegative integers, or a finite integer set.

pair term number with term value.
12 problems Warmup Practice Mixed Review Assessment
Problem 13

Represent the sequence 5, 8, 11, 14 as ordered pairs using n starts at 1.

Open in simulator
Problem 14

Represent the sequence 10, 20, 40 as ordered pairs using n starts at 0.

Problem 15

Represent the sequence 7, 4, 1 as ordered pairs using term number starts at 1.

Problem 16

Represent the sequence 2, 4, 6, 8, 10 as ordered pairs using n starts at 1.

Problem 17

Represent the sequence 3, 9, 27, 81 as ordered pairs using index starts at 1.

Problem 18

Represent the sequence 1, 6, 11, 16 as ordered pairs using n starts at 0.

Problem 19

Represent the sequence 100, 50, 25 as ordered pairs using term number starts at 0.

Problem 20

Represent the sequence 1, 1, 2, 3, 5 as ordered pairs using n starts at 1.

Problem 21

Represent the sequence 0, 1, 2, 3, 4 as ordered pairs using index begins at 0.

Problem 22

Represent the sequence 20, 17, 14, 11 as ordered pairs using n starts at 1.

Problem 23

Represent the sequence 1, -1, 1, -1, 1, -1 as ordered pairs using n starts at 0.

Problem 24

Represent the sequence 1, 4, 9, 16 as ordered pairs using term number starts at 1.

avoid connecting points when domain is discrete.
12 problems Warmup Practice Mixed Review Assessment
Problem 25

Describe how to graph the sequence (1,5), (2,8), (3,11), (4,14).

Problem 26

Describe how to graph the sequence (0,10), (1,5), (2,2.5).

Problem 27

Describe how to graph the sequence (1,7), (2,7), (3,7).

Problem 28

Describe how to graph the sequence (1,10), (2,7), (3,4), (4,1).

Problem 29

Describe how to graph the sequence (1,2), (2,4), (3,8), (4,16).

Problem 30

Describe how to graph the sequence (1,16), (2,8), (3,4), (4,2).

Problem 31

Describe how to graph the sequence (1,-2), (2,-4), (3,-6), (4,-8).

Problem 32

Describe how to graph the sequence (0,5), (1,0), (2,-5), (3,-10).

Open in simulator
Problem 33

Describe how to graph the sequence (1,0.5), (2,1.5), (3,2.5), (4,3.5).

Problem 34

Describe how to graph the sequence (1,-1), (2,1), (3,-1), (4,1).

Problem 35

Describe how to graph the sequence (1,1), (2,4), (3,9), (4,16).

Problem 36

Describe how to graph the sequence (2,-3), (3,-3), (4,-3), (5,-3).

apply one output per integer input.
12 problems Warmup Practice Mixed Review Assessment
Problem 37

Decide whether the sequence graph points (1,4), (2,7), (3,10) represents a function.

Problem 38

Decide whether the sequence graph points (1,4), (1,6), (2,8) represents a function.

Problem 39

Decide whether the sequence graph points (1,5), (3,5), (4,9) with input 2 skipped represents a function.

Open in simulator
Problem 40

Decide whether the sequence graph points (0,0), (1,1), (2,4), (3,9) represents a function.

Problem 41

Decide whether the sequence graph points (5,10), (6,10), (7,10) represents a function.

Problem 42

Decide whether the sequence graph points (-2,4), (-1,1), (0,0), (1,1), (2,4) represents a function.

Problem 43

Decide whether the sequence graph points (1, 0.5), (2, 1.0), (3, 1.5) represents a function.

Problem 44

Decide whether the sequence graph points (1,100), (4,75), (7,50) with inputs 2, 3, 5, 6 skipped represents a function.

Problem 45

Decide whether the sequence graph points (3,1), (3,5), (4,2) represents a function.

Problem 46

Decide whether the sequence graph points (0,0), (1,1), (0,2) represents a function.

Problem 47

Decide whether the sequence graph points (10,1), (11,2), (10,3), (12,4) represents a function.

Problem 48

Decide whether the sequence graph points (1,5), (2,6), (2,7), (3,8), (4,9) represents a function.

interpret term number as input.
12 problems Warmup Practice Mixed Review Assessment
Problem 49

Evaluate the sequence notation a(5) using a_n = 3n + 2 for n >= 1.

Problem 50

Evaluate the sequence notation a(3) using table: a(1)=4, a(2)=9, a(3)=14, a(4)=19.

Problem 51

Evaluate the sequence notation a(4) using a_1 = 6; a_n = a_(n-1)+5.

Problem 52

Evaluate the sequence notation a(7) using a_n = 2n - 1 for n >= 1.

Problem 53

Evaluate the sequence notation a(4) using a_n = n^2 + 3 for n >= 0.

Problem 54

Evaluate the sequence notation a(2) using table: a(1)=10, a(2)=8, a(3)=6, a(4)=4, a(5)=2.

Open in simulator
Problem 55

Evaluate the sequence notation a(3) using table: a(0)=5, a(1)=10, a(2)=15, a(3)=20.

Problem 56

Evaluate the sequence notation a(3) using a_1 = 10; a_n = 2 * a_(n-1).

Problem 57

Evaluate the sequence notation a(3) using a_0 = 1; a_n = a_(n-1) + 7.

Problem 58

Evaluate the sequence notation a(4) using a_n = (-1)^n * n for n >= 1.

Problem 59

Evaluate the sequence notation a(4) using a_1 = 50; a_n = a_(n-1) - 10.

Problem 60

Evaluate the sequence notation a(2) using a_n = (n+1) / (n+2) for n >= 0.

use previous term and starting value.
12 problems Warmup Practice Mixed Review Assessment
Problem 61

Interpret the recursive sequence definition a_1=10; a_n=a_(n-1)+3 as a function definition.

Open in simulator
Problem 62

Interpret the recursive sequence definition a_0=50; a_n=0.8a_(n-1) as a function definition.

Problem 63

Interpret the recursive sequence definition a_1=2; a_n=2a_(n-1) as a function definition.

Problem 64

Interpret the recursive sequence definition a_1=100; a_n=a_(n-1)-5 as a function definition.

Problem 65

Interpret the recursive sequence definition a_0=81; a_n=a_(n-1)/3 as a function definition.

Problem 66

Interpret the recursive sequence definition a_1=64; a_n=(1/2)a_(n-1) as a function definition.

Problem 67

Interpret the recursive sequence definition a_0=25; a_n=a_(n-1)-2 as a function definition.

Problem 68

Interpret the recursive sequence definition a_1=3; a_n=-2a_(n-1) as a function definition.

Problem 69

Interpret the recursive sequence definition a_1=0.5; a_n=a_(n-1)+1.5 as a function definition.

Problem 70

Interpret the recursive sequence definition a_0=1; a_n=2a_(n-1)+1 as a function definition.

Problem 71

Interpret the recursive sequence definition a_0=10; a_n=a_(n-1)-0.25 as a function definition.

Problem 72

Interpret the recursive sequence definition a_1=16; a_n=a_(n-1)/(-4) as a function definition.

recognize same sequence from different rules.
12 problems Warmup Practice Mixed Review Assessment
Problem 73

Decide whether a_n=5+2(n-1) and a_1=5; a_n=a_(n-1)+2 define the same sequence.

Problem 74

Decide whether a_n=3(2)^(n-1) and a_1=3; a_n=2a_(n-1) define the same sequence.

Problem 75

Decide whether a_n=4+3n for n starts at 1 and a_1=4; a_n=a_(n-1)+3 define the same sequence.

Problem 76

Decide whether a_n = 10 + 5(n-1) and a_1 = 10; a_n = a_(n-1) + 5 define the same sequence.

Problem 77

Decide whether a_n = 7 - 3(n-1) and a_1 = 7; a_n = a_(n-1) - 3 define the same sequence.

Open in simulator
Problem 78

Decide whether a_n = 2 + 4(n-1) and a_1 = 5; a_n = a_(n-1) + 4 define the same sequence.

Problem 79

Decide whether a_n = 10 - 2n for n starts at 1 and a_1 = 5; a_n = a_(n-1) - 2 define the same sequence.

Problem 80

Decide whether a_n = 6 + 3(n-1) and a_1 = 6; a_n = a_(n-1) + 5 define the same sequence.

Problem 81

Decide whether a_n = 5 * 3^(n-1) and a_1 = 5; a_n = 3 * a_(n-1) define the same sequence.

Problem 82

Decide whether a_n = 10 * (1/2)^(n-1) and a_1 = 10; a_n = (1/2) * a_(n-1) define the same sequence.

Problem 83

Decide whether a_n = 4 * 2^(n-1) and a_1 = 8; a_n = 2 * a_(n-1) define the same sequence.

Problem 84

Decide whether a_n = 2 * 5^(n-1) and a_1 = 2; a_n = 4 * a_(n-1) define the same sequence.

assign integer inputs to listed outputs.
12 problems Warmup Practice Mixed Review Assessment
Problem 85

Can the finite list 8, 11, 14 be modeled as a sequence function? State the input assignment.

Problem 86

Can the finite list 5, 5, 5, 5 be modeled as a sequence function? State the input assignment.

Problem 87

Can the finite list missing second term between 4 and 10 be modeled as a sequence function? State the input assignment.

Problem 88

Can the finite list 1, 3, 5, 7 be modeled as a sequence function? State the input assignment.

Problem 89

Can the finite list 10, 7, 4, 1 be modeled as a sequence function? State the input assignment.

Problem 90

Can the finite list -2, -4, -6 be modeled as a sequence function? State the input assignment.

Problem 91

Can the finite list 0, 5, 10, 15 be modeled as a sequence function? State the input assignment.

Problem 92

Can the finite list 10, 20, 10, 30 be modeled as a sequence function? State the input assignment.

Problem 93

Can the finite list 0.5, 1.0, 1.5, 2.0 be modeled as a sequence function? State the input assignment.

Problem 94

Can the finite list 2, 4, 6, 8, 10 be modeled as a sequence function? State the input assignment.

Problem 95

Can the finite list 3, -1, 2, -4 be modeled as a sequence function? State the input assignment.

Problem 96

Can the finite list 7, 1, 9, 2 be modeled as a sequence function? State the input assignment.

Open in simulator
list output values for discrete inputs.
12 problems Warmup Practice Mixed Review Assessment
Problem 97

Determine the range of the sequence from table n:1,2,3,4 and a_n:5,8,11,14.

Problem 98

Determine the range of the sequence from points (0,10),(1,5),(2,5),(3,1).

Problem 99

Determine the range of the sequence from first five terms are 3,6,12,24,48.

Problem 100

Determine the range of the sequence from the terms are 7, 14, 21, 28, 35.

Problem 101

Determine the range of the sequence from table n:1,2,3 and a_n:10,7,4.

Problem 102

Determine the range of the sequence from points (1, -2), (2, 0), (3, 2), (4, 0), (5, -2).

Problem 103

Determine the range of the sequence from a_n = 2n + 1 for n = 1, 2, 3, 4.

Problem 104

Determine the range of the sequence from a_n = n^2 - 1 for n = 0, 1, 2, 3.

Open in simulator
Problem 105

Determine the range of the sequence from the first four prime numbers.

Problem 106

Determine the range of the sequence from the sequence is -1, 0, 1, 0, -1.

Problem 107

Determine the range of the sequence from table n:1,2,3,4,5 and a_n:0.5,1.0,1.5,2.0,2.5.

Problem 108

Determine the range of the sequence from a_n = 1/n for n = 1, 2, 3, 4.

connect discrete input to real situation.
12 problems Warmup Practice Mixed Review Assessment
Problem 109

Interpret the sequence a_n=12+4(n-1) in the context seats in row n of a theater.

Problem 110

Interpret the sequence a_0=100; a_n=0.9a_(n-1) in the context value after n years.

Problem 111

Interpret the sequence a_n=20+5(n-1) in the context practice minutes in week n.

Open in simulator
Problem 112

Interpret the sequence a_n = 50 + 10(n-1) in the context pages read on day n.

Problem 113

Interpret the sequence a_n = 300 - 25(n-1) in the context remaining miles on a trip on day n.

Problem 114

Interpret the sequence a_0 = 50; a_n = 1.05 * a_(n-1) in the context population after n years.

Problem 115

Interpret the sequence a_0 = 2000; a_n = 0.8 * a_(n-1) in the context amount of medication in bloodstream after n hours.

Problem 116

Interpret the sequence a_n = 100 + 7n in the context cost of a service after n months.

Problem 117

Interpret the sequence a_n = 1000 - 50n in the context money in a savings account after n withdrawals.

Problem 118

Interpret the sequence a_n = 10 * (2)^(n-1) in the context number of bacteria in a petri dish on day n.

Problem 119

Interpret the sequence a_n = 64 * (0.5)^(n-1) in the context radioactive substance remaining after n periods.

Problem 120

Interpret the sequence a_n = 5 + 3n in the context number of items produced in batch n.

identify duplicate input or mismatched term number.
12 problems Warmup Practice Mixed Review Assessment
Problem 121

Detect the invalid sequence-function representation ordered pairs (1,4),(2,7),(2,9),(3,12).

Problem 122

Detect the invalid sequence-function representation table says a_1=5, a_2=8, a_2=11.

Problem 123

Detect the invalid sequence-function representation graph connects sequence points with a solid line for number of rows.

Problem 124

Detect the invalid sequence-function representation ordered pairs (1, 10), (2, 20), (1, 15), (3, 30).

Problem 125

Detect the invalid sequence-function representation a table defines a_n where a_5 = 25 and a_5 = 30.

Problem 126

Detect the invalid sequence-function representation a mapping diagram shows input 'day 4' mapping to '10 apples' and '12 apples'.

Problem 127

Detect the invalid sequence-function representation the sequence is defined as a_k = k^2 for k=1,2,3. but also states a_3 = 8 and a_3 = 9.

Open in simulator
Problem 128

Detect the invalid sequence-function representation a graph plots points (1, 5), (2, 8), (2, 12), (3, 15).

Problem 129

Detect the invalid sequence-function representation a graph showing the number of customers entering a store each hour connects the hourly points with a solid line.

Problem 130

Detect the invalid sequence-function representation a function P(t) describes the number of people attending a concert, and its graph is a continuous curve.

Problem 131

Detect the invalid sequence-function representation a table lists the number of cars sold per month, and a note says 'a smooth curve can be drawn through these points to estimate sales between months'.

Problem 132

Detect the invalid sequence-function representation a sequence showing the number of steps completed in a process is represented by a continuous function S(x).

distinguish discrete domain from continuous interpolation.
12 problems Warmup Practice Mixed Review Assessment
Problem 133

Explain why the sequence number of seats in row n should not be treated as continuous.

Problem 134

Explain why the sequence number of people after each generation should not be treated as continuous.

Problem 135

Explain why the sequence weekly practice totals should not be treated as continuous.

Problem 136

Explain why the sequence number of books in a library's collection at the end of year n should not be treated as continuous.

Problem 137

Explain why the sequence number of cars passing a checkpoint each hour should not be treated as continuous.

Problem 138

Explain why the sequence daily high temperature for day n should not be treated as continuous.

Problem 139

Explain why the sequence number of students enrolled in grade n should not be treated as continuous.

Problem 140

Explain why the sequence number of times a specific event occurs per month should not be treated as continuous.

Problem 141

Explain why the sequence population of a city at the beginning of each decade should not be treated as continuous.

Problem 142

Explain why the sequence number of items in a shopping cart after adding item n should not be treated as continuous.

Problem 143

Explain why the sequence number of goals scored by a team in game n should not be treated as continuous.

Open in simulator
Problem 144

Explain why the sequence number of steps taken on floor n of a building should not be treated as continuous.