<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3ASequences_and_Recursive_Patterns</id>
	<title>English:Sequences and Recursive Patterns - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3ASequences_and_Recursive_Patterns"/>
	<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Sequences_and_Recursive_Patterns&amp;action=history"/>
	<updated>2026-08-13T15:02:17Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in MOOCsWiki Staging</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://staging.moocwiki.org/index.php?title=English:Sequences_and_Recursive_Patterns&amp;diff=43868&amp;oldid=prev</id>
		<title>Glanz: aiMOOC über GPT aiMOOC Action erstellt</title>
		<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Sequences_and_Recursive_Patterns&amp;diff=43868&amp;oldid=prev"/>
		<updated>2026-08-12T08:14:45Z</updated>

		<summary type="html">&lt;p&gt;aiMOOC über GPT aiMOOC Action erstellt&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{T}}&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Sequences and Recursive Patterns]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;sequence&amp;#039;&amp;#039;&amp;#039; is an ordered list of terms. Each term has a position, so changing the order usually changes the sequence. You already meet sequences when you count by equal steps, double a quantity, arrange tiles in growing figures, or follow a rule that tells you what comes next.&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;recursive pattern&amp;#039;&amp;#039;&amp;#039; gives one or more starting terms and then explains how to create each new term from earlier terms. For example, start with 4 and add 3 each time: 4, 7, 10, 13, 16, ... . The starting value matters because the instruction &amp;quot;add 3&amp;quot; alone could describe many different sequences.&lt;br /&gt;
&lt;br /&gt;
In this aiMOOC, you will learn to recognize, describe, compare, extend, graph, and create sequences. You will also learn why an explicit rule and a recursive rule can describe the same pattern in different ways. The course is designed for Grades 7–8 and connects arithmetic, algebra, geometry, data representation, and computational thinking.&lt;br /&gt;
&lt;br /&gt;
[[File:Arithmetic sequence.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
The graph above is a Wikimedia Commons visualization of an arithmetic sequence. Notice that the terms are shown as separate points because a sequence is indexed by specific positions.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=_cbQ9Ahr7y8|500|center}}&lt;br /&gt;
&lt;br /&gt;
The video introduces the idea of finding rules in number patterns. While you watch, ask yourself: What operation changes one term into the next, and is that operation the same every time?&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Learning Goals ==&lt;br /&gt;
&lt;br /&gt;
By the end of the course, you should be able to identify a sequence from its terms, describe a recursive rule in words and symbols, find missing or later terms, distinguish additive from multiplicative patterns, compare recursive and explicit descriptions, organize a sequence in a table, graph sequence terms as discrete points, and explain your reasoning clearly.&lt;br /&gt;
&lt;br /&gt;
A useful habit is to test a proposed rule against &amp;#039;&amp;#039;&amp;#039;every given transition&amp;#039;&amp;#039;&amp;#039;, not only the first one. Several rules can sometimes fit a short list, so good mathematical explanations state the rule and show why it works.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Understanding Sequences =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Terms, Positions, and Notation ==&lt;br /&gt;
&lt;br /&gt;
A sequence can be written as&lt;br /&gt;
&lt;br /&gt;
2, 5, 8, 11, 14, ...&lt;br /&gt;
&lt;br /&gt;
The first term is 2, the second term is 5, and so on. Mathematicians often use notation such as &amp;#039;&amp;#039;&amp;#039;a₁, a₂, a₃, ...&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;a_1, a_2, a_3, ...&amp;#039;&amp;#039;&amp;#039; to label the terms. The symbol &amp;#039;&amp;#039;&amp;#039;a_n&amp;#039;&amp;#039;&amp;#039; means &amp;quot;the term in position n.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A table makes the relationship between position and term easy to see:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
! Position n&lt;br /&gt;
! Term a_n&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| 2&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| 5&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| 11&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| 14&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The position numbers 1, 2, 3, 4, ... form the input values. The sequence terms form the output values. This connection prepares you for work with [[English:Function|functions]] and [[English:Coordinate plane|coordinate graphs]].&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Look for Changes Between Terms ==&lt;br /&gt;
&lt;br /&gt;
One of the fastest ways to investigate a sequence is to compare neighboring terms. For 6, 10, 14, 18, ... the change is +4 each time. For 81, 27, 9, 3, ... each term is one third of the previous term.&lt;br /&gt;
&lt;br /&gt;
Do not assume that every pattern uses only addition. A sequence might use subtraction, multiplication, division, alternating operations, or a rule involving two previous terms. Some patterns depend on the position number rather than only on the previous term.&lt;br /&gt;
&lt;br /&gt;
When a sequence is short, more than one rule may be possible. For example, many different formulas could begin 1, 2, 3. In school problems, you usually look for the simplest rule that fits all given information unless the problem states another condition.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Arithmetic Sequences =&lt;br /&gt;
&lt;br /&gt;
An &amp;#039;&amp;#039;&amp;#039;arithmetic sequence&amp;#039;&amp;#039;&amp;#039; changes by the same amount from one term to the next. This constant amount is called the &amp;#039;&amp;#039;&amp;#039;common difference&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
For the sequence&lt;br /&gt;
&lt;br /&gt;
5, 8, 11, 14, 17, ...&lt;br /&gt;
&lt;br /&gt;
the common difference is 3 because each term is 3 more than the previous term.&lt;br /&gt;
&lt;br /&gt;
A recursive description is:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Start with 5. Add 3 to get each next term.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
In symbols, this can be written as:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;a_1 = 5&amp;#039;&amp;#039;&amp;#039; and &amp;#039;&amp;#039;&amp;#039;a_n = a_{n-1} + 3&amp;#039;&amp;#039;&amp;#039; for later terms.&lt;br /&gt;
&lt;br /&gt;
The part &amp;#039;&amp;#039;&amp;#039;a_{n-1}&amp;#039;&amp;#039;&amp;#039; means &amp;quot;the previous term.&amp;quot; The recursive rule tells you how to move forward one step at a time.&lt;br /&gt;
&lt;br /&gt;
[[File:Arithmetic sequence.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=_cooC3yG_p0|500|center}}&lt;br /&gt;
&lt;br /&gt;
This video focuses on arithmetic sequences. As you watch, compare the verbal idea &amp;quot;same change each time&amp;quot; with the algebraic idea of a constant common difference.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Increasing and Decreasing Arithmetic Patterns ==&lt;br /&gt;
&lt;br /&gt;
The common difference can be positive, zero, or negative.&lt;br /&gt;
&lt;br /&gt;
For 12, 17, 22, 27, ... the common difference is 5.&lt;br /&gt;
&lt;br /&gt;
For 30, 24, 18, 12, ... the common difference is -6.&lt;br /&gt;
&lt;br /&gt;
For 9, 9, 9, 9, ... the common difference is 0.&lt;br /&gt;
&lt;br /&gt;
A decreasing sequence is not automatically geometric. You need to check whether the difference is constant, the ratio is constant, or another rule is operating.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== From Recursive to Explicit Rules ==&lt;br /&gt;
&lt;br /&gt;
A recursive rule is useful when you want to generate terms one after another. An &amp;#039;&amp;#039;&amp;#039;explicit rule&amp;#039;&amp;#039;&amp;#039; gives a term directly from its position.&lt;br /&gt;
&lt;br /&gt;
For the arithmetic sequence 5, 8, 11, 14, ...:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Recursive rule:&amp;#039;&amp;#039;&amp;#039; start at 5 and add 3 each time.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Explicit rule:&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;a_n = 5 + 3(n - 1)&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Why does this work? The first term needs zero additions of 3. The second term needs one addition. The nth term needs n - 1 additions.&lt;br /&gt;
&lt;br /&gt;
For an arithmetic sequence with first term a_1 and common difference d, the general pattern is:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;a_n = a_1 + (n - 1)d&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
You do not have to memorize this without understanding it. Rebuilding it from &amp;quot;first term plus repeated equal changes&amp;quot; is often more reliable.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Geometric Sequences =&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;geometric sequence&amp;#039;&amp;#039;&amp;#039; is formed by multiplying each term by the same nonzero factor. That factor is called the &amp;#039;&amp;#039;&amp;#039;common ratio&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
For the sequence&lt;br /&gt;
&lt;br /&gt;
3, 6, 12, 24, 48, ...&lt;br /&gt;
&lt;br /&gt;
the common ratio is 2.&lt;br /&gt;
&lt;br /&gt;
A recursive description is:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Start with 3. Multiply by 2 to get each next term.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
In symbols:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;a_1 = 3&amp;#039;&amp;#039;&amp;#039; and &amp;#039;&amp;#039;&amp;#039;a_n = 2a_{n-1}&amp;#039;&amp;#039;&amp;#039; for later terms.&lt;br /&gt;
&lt;br /&gt;
[[File:Geometric sequence.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=pXo0bG4iAyg|500|center}}&lt;br /&gt;
&lt;br /&gt;
The video introduces geometric sequences. Compare the graph of geometric growth with the more even step-by-step growth of an arithmetic sequence.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Ratios and Repeated Multiplication ==&lt;br /&gt;
&lt;br /&gt;
To test whether a nonzero sequence is geometric, divide each term by the previous term and check whether the ratio is constant.&lt;br /&gt;
&lt;br /&gt;
For 80, 40, 20, 10, ... the ratio is one half.&lt;br /&gt;
&lt;br /&gt;
For 5, 15, 45, 135, ... the ratio is 3.&lt;br /&gt;
&lt;br /&gt;
Repeated multiplication can create growth or decay much faster than repeated addition. This difference becomes important in later studies of [[English:Exponential growth|exponential growth]].&lt;br /&gt;
&lt;br /&gt;
An explicit rule for the geometric sequence 3, 6, 12, 24, ... is:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;a_n = 3 · 2^(n - 1)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Here, the exponent records how many times the common ratio has been used.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Recursive Patterns =&lt;br /&gt;
&lt;br /&gt;
A recursive rule has two essential parts: &amp;#039;&amp;#039;&amp;#039;initial information&amp;#039;&amp;#039;&amp;#039; and a &amp;#039;&amp;#039;&amp;#039;rule for producing later terms&amp;#039;&amp;#039;&amp;#039;. If either part is missing, the sequence may not be determined.&lt;br /&gt;
&lt;br /&gt;
Suppose the rule says &amp;quot;multiply the previous term by 2.&amp;quot; Starting with 1 gives 1, 2, 4, 8, ... . Starting with 5 gives 5, 10, 20, 40, ... . The same operation creates different sequences because the starting terms differ.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=KRFiAlo7t1E|500|center}}&lt;br /&gt;
&lt;br /&gt;
This Khan Academy video compares explicit and recursive definitions. Some notation is more advanced than you need, but the central idea is useful: a recursive rule builds from earlier terms, while an explicit rule jumps directly to a chosen position.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Recursion with More Than One Previous Term ==&lt;br /&gt;
&lt;br /&gt;
Some recursive sequences depend on two or more earlier terms. The [[English:Fibonacci sequence|Fibonacci sequence]] is a famous example. One common version begins:&lt;br /&gt;
&lt;br /&gt;
0, 1, 1, 2, 3, 5, 8, 13, 21, ...&lt;br /&gt;
&lt;br /&gt;
After the two starting terms, each new term is the sum of the previous two:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;F_n = F_{n-1} + F_{n-2}&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
You need two starting terms because the rule looks back two positions. Some books start the Fibonacci sequence with 1, 1 instead of 0, 1; both conventions lead to the familiar continuing terms 1, 2, 3, 5, 8, ...&lt;br /&gt;
&lt;br /&gt;
[[File:First members of Fibonacci sequence.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=MTf90nyB55Y|500|center}}&lt;br /&gt;
&lt;br /&gt;
The video visualizes Fibonacci numbers and other patterns. Use it as a reminder that a sequence can be represented numerically, geometrically, or graphically.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== A Visual Fibonacci Construction ==&lt;br /&gt;
&lt;br /&gt;
A common visual construction places squares with side lengths 1, 1, 2, 3, 5, 8, ... next to one another and draws quarter-circle arcs through them. This creates a &amp;#039;&amp;#039;&amp;#039;Fibonacci spiral approximation&amp;#039;&amp;#039;&amp;#039;. It is a model built from Fibonacci-sized squares; it should not be confused with the exact logarithmic golden spiral.&lt;br /&gt;
&lt;br /&gt;
[[File:FibonacciSpiral.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Patterns related to Fibonacci numbers occur in some arrangements in nature, including spiral counts in certain plants. You should be careful with broad claims: not every natural spiral is a Fibonacci spiral, and seeing a spiral shape alone does not prove a Fibonacci relationship.&lt;br /&gt;
&lt;br /&gt;
[[File:Fibonacci spiral.jpg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
The sunflower image above provides a real-world prompt for investigation. Instead of simply saying &amp;quot;nature uses Fibonacci,&amp;quot; count visible spiral families, record your method, and compare your observations with classmates.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Other Growing Patterns =&lt;br /&gt;
&lt;br /&gt;
Not every sequence is arithmetic or geometric. Consider the square numbers:&lt;br /&gt;
&lt;br /&gt;
1, 4, 9, 16, 25, 36, ...&lt;br /&gt;
&lt;br /&gt;
The first differences are 3, 5, 7, 9, 11, ... . These differences are not constant, so the sequence is not arithmetic. However, the differences themselves increase by a constant amount. Such patterns lead to &amp;#039;&amp;#039;&amp;#039;quadratic sequences&amp;#039;&amp;#039;&amp;#039;, which you will study more deeply in later algebra.&lt;br /&gt;
&lt;br /&gt;
[[File:Quadratic sequence.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Another common type is an alternating pattern. For example:&lt;br /&gt;
&lt;br /&gt;
2, 5, 3, 6, 4, 7, ...&lt;br /&gt;
&lt;br /&gt;
One way to describe this is to alternate +3 and -2. When a rule alternates, write the repeating cycle clearly and test it across several transitions.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Shape Patterns and Tables ==&lt;br /&gt;
&lt;br /&gt;
Sequences are not only lists of numbers. Suppose a growing tile figure uses 4 tiles in Stage 1, 7 tiles in Stage 2, 10 tiles in Stage 3, and 13 tiles in Stage 4. The tile counts form an arithmetic sequence with common difference 3.&lt;br /&gt;
&lt;br /&gt;
A table can connect a diagram to algebra:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
! Stage&lt;br /&gt;
! Number of tiles&lt;br /&gt;
! Change from previous stage&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| 4&lt;br /&gt;
| Starting stage&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| 7&lt;br /&gt;
| Add 3&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| 10&lt;br /&gt;
| Add 3&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| 13&lt;br /&gt;
| Add 3&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
When you build or draw the figures, identify which tiles stay the same and which tiles are added at each step. That visual structure often explains the recursive rule.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Representing Sequences on a Graph =&lt;br /&gt;
&lt;br /&gt;
A sequence can be graphed by plotting each position and its term value as an ordered pair. For 2, 5, 8, 11, ... you plot:&lt;br /&gt;
&lt;br /&gt;
(1, 2), (2, 5), (3, 8), (4, 11), ...&lt;br /&gt;
&lt;br /&gt;
The horizontal coordinate shows the term position, and the vertical coordinate shows the term value. Because the sequence is defined only at its term positions, the graph is usually shown as separate points rather than one continuous line.&lt;br /&gt;
&lt;br /&gt;
Arithmetic sequences produce points that line up along a straight line when position is plotted against term value. Geometric sequences generally create a curved pattern because equal multiplication does not create equal vertical changes.&lt;br /&gt;
&lt;br /&gt;
Graphing helps you compare growth rates. Two sequences may begin with similar values but separate quickly if one grows by repeated addition and the other by repeated multiplication.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=a37pYSmcU7c|500|center}}&lt;br /&gt;
&lt;br /&gt;
This video connects a geometric sequence in recursive form to its graph. Focus on how each term becomes one plotted point.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Solving Sequence Problems =&lt;br /&gt;
&lt;br /&gt;
A strong strategy is to move through four questions.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What changes?&amp;#039;&amp;#039;&amp;#039; Compute differences, ratios, or another relationship between terms.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Is the change consistent?&amp;#039;&amp;#039;&amp;#039; Test the rule across every transition you were given.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What information starts the sequence?&amp;#039;&amp;#039;&amp;#039; State the first term, or the required first several terms.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Can you explain and verify?&amp;#039;&amp;#039;&amp;#039; Generate several terms from your rule and compare them with the original sequence.&lt;br /&gt;
&lt;br /&gt;
For example, consider 7, 12, 17, 22, ...&lt;br /&gt;
&lt;br /&gt;
The change is +5 each time, so the sequence is arithmetic. A recursive rule is &amp;quot;start with 7 and add 5.&amp;quot; The next terms are 27 and 32. An explicit rule is &amp;#039;&amp;#039;&amp;#039;a_n = 7 + 5(n - 1)&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Now consider 2, 6, 18, 54, ...&lt;br /&gt;
&lt;br /&gt;
The ratio is 3 each time, so the sequence is geometric. A recursive rule is &amp;quot;start with 2 and multiply by 3.&amp;quot; The next term is 162.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Missing Terms ==&lt;br /&gt;
&lt;br /&gt;
For a missing-term problem such as&lt;br /&gt;
&lt;br /&gt;
14, 19, __, 29, 34&lt;br /&gt;
&lt;br /&gt;
the visible differences suggest +5, so the missing term is 24.&lt;br /&gt;
&lt;br /&gt;
For&lt;br /&gt;
&lt;br /&gt;
4, 12, __, 108&lt;br /&gt;
&lt;br /&gt;
the ratio suggests ×3, so the missing term is 36.&lt;br /&gt;
&lt;br /&gt;
Always verify the completed sequence. A single guess based only on the first pair of terms is not enough.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Comparing Two Rules ==&lt;br /&gt;
&lt;br /&gt;
Suppose Sequence A starts at 10 and adds 4 each step, while Sequence B starts at 2 and doubles each step.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
! Position&lt;br /&gt;
! Sequence A&lt;br /&gt;
! Sequence B&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| 10&lt;br /&gt;
| 2&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| 14&lt;br /&gt;
| 4&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| 18&lt;br /&gt;
| 8&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| 22&lt;br /&gt;
| 16&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| 26&lt;br /&gt;
| 32&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
At first, Sequence A is larger. By Position 5, Sequence B is larger. This comparison shows why you should not judge long-term behavior from only one or two terms.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Recursive Thinking and Computing =&lt;br /&gt;
&lt;br /&gt;
Recursion is also an idea in [[English:Computer science|computer science]]. A program can generate a sequence by storing earlier terms and repeatedly applying a rule. A simple loop can do the same job for many school-level patterns.&lt;br /&gt;
&lt;br /&gt;
For example, a program could start with 5, display it, add 3, display the new value, and repeat. For Fibonacci numbers, the program needs to keep track of two previous values before creating the next one.&lt;br /&gt;
&lt;br /&gt;
The mathematical skill is the same: clearly identify the starting data, the repeated rule, and the stopping condition. This is a useful bridge between [[English:Algebra|algebra]] and [[English:Algorithm|algorithms]].&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Common Errors and How to Fix Them =&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Error: Giving only the operation.&amp;#039;&amp;#039;&amp;#039; &amp;quot;Add 4&amp;quot; is incomplete as a recursive definition because it does not state a starting term. Fix it by saying, for example, &amp;quot;Start with 3 and add 4 each time.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Error: Checking only one step.&amp;#039;&amp;#039;&amp;#039; A rule that explains 2 to 6 may fail for 6 to 11. Test every available transition.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Error: Confusing difference and ratio.&amp;#039;&amp;#039;&amp;#039; For 3, 6, 12, 24, the differences change but the ratio remains 2. Use subtraction to test arithmetic patterns and division to test geometric patterns.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Error: Treating a sequence graph as continuous.&amp;#039;&amp;#039;&amp;#039; A sequence usually has isolated term positions. Unless a context says otherwise, do not assume values between positions belong to the sequence.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Error: Assuming a pattern is unique.&amp;#039;&amp;#039;&amp;#039; A short list can fit many possible rules. State the rule you are using and why it is reasonable in context.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Interactive Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Quiz: Test Your Knowledge ==&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What makes a sequence arithmetic?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(The same amount is added or subtracted each step)&lt;br /&gt;
(!The same number is squared each step)&lt;br /&gt;
(!The terms must always increase)&lt;br /&gt;
(!Every term must be even)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What information is required for a recursive rule?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A starting value and a rule for later terms)&lt;br /&gt;
(!Only the final term)&lt;br /&gt;
(!Only a graph title)&lt;br /&gt;
(!A list with no rule)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which rule describes 4 9 14 19?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Start with 4 and add 5 each time)&lt;br /&gt;
(!Start with 4 and multiply by 5 each time)&lt;br /&gt;
(!Start with 4 and subtract 5 each time)&lt;br /&gt;
(!Start with 4 and add 4 each time)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which sequence is geometric?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(3 6 12 24)&lt;br /&gt;
(!3 6 9 12)&lt;br /&gt;
(!2 5 9 14)&lt;br /&gt;
(!10 9 7 4)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is the common difference in 18 13 8 3?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Negative five)&lt;br /&gt;
(!Positive five)&lt;br /&gt;
(!Negative three)&lt;br /&gt;
(!Positive three)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is the next term in 2 6 18 54?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(162)&lt;br /&gt;
(!108)&lt;br /&gt;
(!72)&lt;br /&gt;
(!58)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;How is each new Fibonacci term formed after the starting terms?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Add the two previous terms)&lt;br /&gt;
(!Multiply the two previous terms)&lt;br /&gt;
(!Subtract one from the previous term)&lt;br /&gt;
(!Double the first term)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Why are sequence graphs usually shown as separate points?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(The sequence is defined at specific term positions)&lt;br /&gt;
(!All sequences have negative values)&lt;br /&gt;
(!Graphs cannot show addition)&lt;br /&gt;
(!Every sequence has only four terms)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is an advantage of an explicit rule?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(It can give a chosen term directly from its position)&lt;br /&gt;
(!It removes the need for a first term in every pattern)&lt;br /&gt;
(!It guarantees that all sequences are arithmetic)&lt;br /&gt;
(!It changes a geometric sequence into an arithmetic one)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which action best checks a proposed sequence rule?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Test the rule across all given transitions)&lt;br /&gt;
(!Use only the first two terms)&lt;br /&gt;
(!Choose the rule with the longest wording)&lt;br /&gt;
(!Ignore any term that does not fit)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Memory Game ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;memo-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Sequence || An ordered list of terms&lt;br /&gt;
|-&lt;br /&gt;
| Recursion || A method that builds later terms from earlier ones&lt;br /&gt;
|-&lt;br /&gt;
| Difference || The amount found by subtracting consecutive terms&lt;br /&gt;
|-&lt;br /&gt;
| Ratio || The factor found by dividing consecutive nonzero terms&lt;br /&gt;
|-&lt;br /&gt;
| Explicit || A rule that gives a term from its position&lt;br /&gt;
|-&lt;br /&gt;
| Fibonacci || A pattern in which each later term is the sum of the previous two&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Drag and Drop ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;lueckentext-quiz&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Match the correct terms.&lt;br /&gt;
! Topic&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Arithmetic pattern&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Same additive change from term to term&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Geometric pattern&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Same multiplicative factor from term to term&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Recursive rule&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Uses earlier terms to produce later terms&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Explicit rule&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Uses position to find a term directly&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Discrete graph&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Shows separate points for sequence positions&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Crossword Puzzle ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;kreuzwort-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Sequence || What is an ordered list of mathematical terms called?&lt;br /&gt;
|-&lt;br /&gt;
| Recursive || What word describes a rule that builds a new term from earlier terms?&lt;br /&gt;
|-&lt;br /&gt;
| Arithmetic || What kind of sequence has a constant difference?&lt;br /&gt;
|-&lt;br /&gt;
| Geometric || What kind of sequence has a constant ratio?&lt;br /&gt;
|-&lt;br /&gt;
| Difference || What do you call the constant additive change in an arithmetic sequence?&lt;br /&gt;
|-&lt;br /&gt;
| Fibonacci || Which famous sequence adds the previous two terms to make the next?&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== LearningApps ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://learningapps.org/index.php?s=Sequences+and+Recursive+Patterns &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Cloze Text ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;quiz display=simple&amp;gt;&lt;br /&gt;
{&amp;#039;&amp;#039;&amp;#039;Complete the text.&amp;#039;&amp;#039;&amp;#039;&amp;lt;br&amp;gt;&lt;br /&gt;
|type=&amp;quot;{}&amp;quot;}&lt;br /&gt;
A mathematical { sequence } is an ordered list of terms. An arithmetic sequence has a constant { difference } between consecutive terms. A geometric sequence has a constant { ratio } between consecutive nonzero terms. A recursive description needs at least one { starting } value as well as a rule for later terms. An explicit rule uses the term&amp;#039;s { position } to calculate its value directly. In the Fibonacci sequence, each later term is the { sum } of the previous two terms. When a sequence is graphed, its terms are usually shown as { discrete } points. A good rule should be tested against { every } given transition.&lt;br /&gt;
&amp;lt;/quiz&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Open-Ended Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Easy ===&lt;br /&gt;
# [[English:Sequence Hunt|Sequence Hunt]]: Find three sequences in your school day, home, games, schedules, or designs; record at least six terms for each and explain what makes each example a sequence.&lt;br /&gt;
# [[English:Pattern Poster|Pattern Poster]]: Create a one-page poster that shows one arithmetic pattern with numbers, arrows, a recursive rule, and a small graph.&lt;br /&gt;
# [[English:Human Sequence|Human Sequence]]: Work with classmates to act out a recursive rule in which each person receives a value, applies the rule, and passes the next value along; record where mistakes are most likely to happen.&lt;br /&gt;
# [[English:Photo Pattern|Photo Pattern]]: Take or create a photo of a growing visual pattern, label four stages, count the objects in each stage, and describe the number sequence in clear English.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Standard ===&lt;br /&gt;
# [[English:Sequence Interview|Sequence Interview]]: Interview a family member, teacher, craftsperson, coder, musician, or athlete about a repeated pattern used in their work or hobby; translate the pattern into a sequence and explain where the model fits or fails.&lt;br /&gt;
# [[English:Arithmetic and Geometric Video|Arithmetic and Geometric Video]]: Produce a two-minute teaching video that compares an additive pattern with a multiplicative pattern using your own examples, tables, and spoken explanations.&lt;br /&gt;
# [[English:Recursive Spreadsheet|Recursive Spreadsheet]]: Use a spreadsheet to generate at least twenty terms of a recursive sequence, graph the results, and explain how changing the starting value changes the pattern.&lt;br /&gt;
# [[English:Fibonacci Investigation|Fibonacci Investigation]]: Examine a pine cone, sunflower image, leaf arrangement, or another safe natural object; count visible structures carefully, document your method with images or sketches, and explain whether the evidence supports a Fibonacci-related claim.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Advanced ===&lt;br /&gt;
# [[English:Rule Comparison Project|Rule Comparison Project]]: Create two sequences that begin with similar values but follow different recursive rules; find when one overtakes the other and justify your conclusion with a table, graph, and algebra.&lt;br /&gt;
# [[English:Multiple Rules Challenge|Multiple Rules Challenge]]: Start with a short list of four terms and invent two different mathematically valid rules that reproduce those terms; extend both rules and explain why a short pattern does not always determine a unique future.&lt;br /&gt;
# [[English:Algorithm Design|Algorithm Design]]: Write pseudocode or a simple program that generates an arithmetic, geometric, or Fibonacci-type sequence; test it with several starting values and explain the role of initialization and repetition.&lt;br /&gt;
# [[English:Mathematics Field Visit|Mathematics Field Visit]]: Visit a library, science museum, technology center, garden, architecture site, or mathematics display where repeated patterns can be observed; collect notes or permitted images and create a report that separates measured evidence from assumptions.&lt;br /&gt;
&lt;br /&gt;
{{:Open Task - Create a MOOC}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Learning Assessment =&lt;br /&gt;
&lt;br /&gt;
# [[English:Model a Savings Plan|Model a Savings Plan]]: A student saves the same extra amount each week; build a recursive rule and an explicit rule for the total, explain the meaning of each part, and compare which rule is more efficient for finding Week 20.&lt;br /&gt;
# [[English:Compare Growth Rules|Compare Growth Rules]]: Given one arithmetic and one geometric sequence with different starting values, determine when their order changes, support your conclusion with a table or graph, and explain why the faster-growing rule eventually dominates in your example.&lt;br /&gt;
# [[English:Diagnose a Mistake|Diagnose a Mistake]]: A classmate says that 4, 8, 12, 16 is geometric because the numbers increase regularly; identify the error, show the correct classification, and describe a reliable test for future problems.&lt;br /&gt;
# [[English:Design from a Diagram|Design from a Diagram]]: Create or analyze a growing tile figure, record the first five term values, write a recursive rule, and justify how the visible growth in the figure matches the numerical rule.&lt;br /&gt;
# [[English:Translate Representations|Translate Representations]]: Start from a recursive rule and produce a term list, a table, a graph, and a verbal explanation; then identify what information is easiest to see in each representation.&lt;br /&gt;
# [[English:Evaluate a Pattern Claim|Evaluate a Pattern Claim]]: Investigate a claim that a real object follows a Fibonacci or other recursive pattern, collect measurable evidence, and write a conclusion that clearly distinguishes observation from interpretation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Evidence of Learning =&lt;br /&gt;
&lt;br /&gt;
Important &amp;#039;&amp;#039;&amp;#039;knowledge&amp;#039;&amp;#039;&amp;#039; includes understanding sequence position, recursive rules, starting values, common differences, common ratios, explicit rules, Fibonacci-type recursions, and discrete sequence graphs.&lt;br /&gt;
&lt;br /&gt;
Important &amp;#039;&amp;#039;&amp;#039;skills&amp;#039;&amp;#039;&amp;#039; include calculating differences and ratios, extending patterns, writing and interpreting recursive rules, converting between words, tables, formulas, and graphs, checking a rule against evidence, and explaining why a classification is valid.&lt;br /&gt;
&lt;br /&gt;
Useful &amp;#039;&amp;#039;&amp;#039;products&amp;#039;&amp;#039;&amp;#039; include a correctly labeled sequence table, a graph with discrete points, a visual pattern model, a short teaching video, a spreadsheet or program that generates terms, and a written comparison of two sequence rules.&lt;br /&gt;
&lt;br /&gt;
Strong &amp;#039;&amp;#039;&amp;#039;transfer&amp;#039;&amp;#039;&amp;#039; is shown when you can recognize sequence structures in a new context, decide which mathematical model is reasonable, use technology appropriately, and state the limits of your model instead of forcing every pattern into an arithmetic, geometric, or Fibonacci category.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= OERs on the Topic =&lt;br /&gt;
&lt;br /&gt;
The English Wikipedia article on mathematical sequences provides a broad reference for the idea of ordered terms, notation, and many types of sequences.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://en.m.wikipedia.org/wiki/Sequence_(mathematics) &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Linked Learning Areas =&lt;br /&gt;
&lt;br /&gt;
Sequences connect arithmetic patterns to algebraic rules, graphs, functions, geometric designs, data tables, and algorithms. Understanding how a repeated process creates later values prepares you for linear functions, exponential growth, mathematical modeling, and programming.&lt;br /&gt;
&lt;br /&gt;
{| align=center&lt;br /&gt;
{{:D-Tab}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;[[English:Sequences and Recursive Patterns|Sequences and Recursive Patterns]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# [[English:Sequence|Sequence]]&lt;br /&gt;
# [[English:Arithmetic sequence|Arithmetic sequence]]&lt;br /&gt;
# [[English:Geometric sequence|Geometric sequence]]&lt;br /&gt;
# [[English:Recurrence relation|Recurrence relation]]&lt;br /&gt;
# [[English:Fibonacci sequence|Fibonacci sequence]]&lt;br /&gt;
# [[English:Algebraic expression|Algebraic expression]]&lt;br /&gt;
# [[English:Coordinate plane|Coordinate plane]]&lt;br /&gt;
# [[English:Function|Function]]&lt;br /&gt;
# [[English:Algorithm|Algorithm]]&lt;br /&gt;
# [[English:Mathematical modeling|Mathematical modeling]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Mathematics]]&lt;br /&gt;
[[Category:Algebra]]&lt;br /&gt;
[[Category:Grades 7-8]]&lt;br /&gt;
[[Category:Number patterns]]&lt;br /&gt;
[[Category:Sequences]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= aiMOOC Projects =&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Sequences and Recursive Patterns]]&lt;br /&gt;
[[Category:Mathematics]]&lt;br /&gt;
[[Category:Algebra]]&lt;br /&gt;
[[Category:Grades 7-8]]&lt;br /&gt;
[[Category:Number patterns]]&lt;br /&gt;
[[Category:Sequences]]&lt;br /&gt;
[[Category:AI_MOOC]]&lt;br /&gt;
[[Category:GPT aiMOOC]]&lt;br /&gt;
{{MT}}&lt;/div&gt;</summary>
		<author><name>Glanz</name></author>
	</entry>
</feed>