<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3ASeq_Mode</id>
	<title>TI-BASIC:Seq Mode - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://learn.cemetech.net/index.php?action=history&amp;feed=atom&amp;title=TI-BASIC%3ASeq_Mode"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Seq_Mode&amp;action=history"/>
	<updated>2026-05-14T00:07:21Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>http://learn.cemetech.net/index.php?title=TI-BASIC:Seq_Mode&amp;diff=797&amp;oldid=prev</id>
		<title>Maintenance script: Initial automated import</title>
		<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Seq_Mode&amp;diff=797&amp;oldid=prev"/>
		<updated>2016-02-24T18:19:07Z</updated>

		<summary type="html">&lt;p&gt;Initial automated import&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Template:TI-BASIC:Command&lt;br /&gt;
|picture=SEQ-MODE.GIF&lt;br /&gt;
|summary=Enables sequence graphing mode.&lt;br /&gt;
|syntax=Seq&lt;br /&gt;
|location=While editing a program, press:&lt;br /&gt;
# MODE to access the mode menu.&lt;br /&gt;
# Use arrows to select Seq.&lt;br /&gt;
|compatibility=TI-83/84/+/SE&lt;br /&gt;
|size=1 byte&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The Seq command enables [[TI-BASIC:Graphing_Mode#sequential|sequence]] graphing mode.&lt;br /&gt;
&lt;br /&gt;
Sequential mode is used for graphing sequences, which can be thought of as functions from the positive (or non-negative) integers. The TI-83 calculators let &amp;#039;&amp;#039;n&amp;#039;&amp;#039; be the independent variable in this situation, and the three sequences, instead of using subscripts, use the letters u, v, and w.&lt;br /&gt;
&lt;br /&gt;
One of the main advantages of sequential mode is that it allows recursive definitions: u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;) can be defined in terms of u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-1) and u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-2). For recursive definitions to work, an initial case must be defined: this is done using the variables u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min), v(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min), and w(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min). The constant &amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min is the initial case, for which the calculator will use a specific value rather than the formula.&lt;br /&gt;
&lt;br /&gt;
For example, say a bunny population starts out at 100 and doubles each year. We can describe this situation using the recursive definition u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;)=2u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-1) (this just says that the &amp;#039;&amp;#039;n&amp;#039;&amp;#039;th year population is twice the population of the previous year); then we set u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min)=100. Note that without u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min), the equation would be meaningless - without the initial population, we have no way to calculate any other population.&lt;br /&gt;
&lt;br /&gt;
When you&amp;#039;re using more than one previous value -- both u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-1) and u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-2)) -- you need more than one initial value, and then u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min) becomes a list.&lt;br /&gt;
&lt;br /&gt;
= Advanced Uses =&lt;br /&gt;
&lt;br /&gt;
Sequence graphing mode has several submodes that can be selected from the 2nd FORMAT screen. They are [[TI-BASIC:Time|Time]], [[TI-BASIC:Web|Web]], [[TI-BASIC:Uvaxes|UvAxes]], [[TI-BASIC:Uwaxes|UwAxes]], and [[TI-BASIC:Vwaxes|VwAxes]]. Sequences are still defined in the same way, but these modes control the way that they&amp;#039;re graphed.&lt;br /&gt;
&lt;br /&gt;
The [[TI-BASIC:System_Variables#window|window variables]] that apply to sequence mode are:&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Min&amp;#039;&amp;#039;&amp;#039; -- Determines the minimum &amp;#039;&amp;#039;n&amp;#039;&amp;#039;-value calculated for equations.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;n&amp;#039;&amp;#039;Max&amp;#039;&amp;#039;&amp;#039; -- Determines the maximum &amp;#039;&amp;#039;n&amp;#039;&amp;#039;-value calculated for equations.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;PlotStart&amp;#039;&amp;#039;&amp;#039; -- Determines the first value of &amp;#039;&amp;#039;n&amp;#039;&amp;#039; that is actually graphed.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;PlotStep&amp;#039;&amp;#039;&amp;#039; -- Determines the difference between consecutive &amp;#039;&amp;#039;graphed&amp;#039;&amp;#039; values of &amp;#039;&amp;#039;n&amp;#039;&amp;#039;.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Xmin&amp;#039;&amp;#039;&amp;#039; -- Determines the minimum X-value shown on the screen.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Xmax&amp;#039;&amp;#039;&amp;#039; -- Determines the maximum X-value shown on the screen.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Xscl&amp;#039;&amp;#039;&amp;#039; -- Determines the horizontal space between marks on the X-axis in [[TI-BASIC:Axeson|AxesOn]] mode or dots in [[TI-BASIC:Gridon|GridOn]] mode.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Ymin&amp;#039;&amp;#039;&amp;#039; -- Determines the minimum Y-value shown on the screen.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Ymax&amp;#039;&amp;#039;&amp;#039; -- Determines the maximum Y-value shown on the screen.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Yscl&amp;#039;&amp;#039;&amp;#039; -- Determines the vertical space between marks on the Y-axis in [[TI-BASIC:Axeson|AxesOn]] mode or dots in [[TI-BASIC:Gridon|GridOn]] mode.&lt;br /&gt;
&lt;br /&gt;
= Related Commands =&lt;br /&gt;
&lt;br /&gt;
* [[TI-BASIC:Func|Func]]&lt;br /&gt;
* [[TI-BASIC:Param|Param]]&lt;br /&gt;
* [[TI-BASIC:Polar_Mode|Polar]][[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>