<?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%3AGraphing_Mode</id>
	<title>TI-BASIC:Graphing 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%3AGraphing_Mode"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Graphing_Mode&amp;action=history"/>
	<updated>2026-04-30T07:08:51Z</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:Graphing_Mode&amp;diff=682&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:Graphing_Mode&amp;diff=682&amp;oldid=prev"/>
		<updated>2016-02-24T18:13:20Z</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;The TI-83 series of graphing calculators can graph equations in four modes: function mode, parametric mode, polar mode, and sequential mode.&lt;br /&gt;
&lt;br /&gt;
Since this website is primarily aimed at calculator programmers, rather than all calculator users, this information may not have many immediate applications, since graphing equations isn&amp;#039;t often useful in programs. However, math programs may require information such as this, and in general, the better you understand all the features of your calculator, the better you&amp;#039;ll be able to program it.&lt;br /&gt;
&lt;br /&gt;
The four graphing modes are enabled with the [[TI-BASIC:Func|Func]], [[TI-BASIC:Param|Param]], [[TI-BASIC:Polar_Mode|Polar]], and [[TI-BASIC:Seq_Mode|Seq]] commands.&lt;br /&gt;
&lt;br /&gt;
= [[TI-BASIC:Func|Function Mode]] &amp;lt;span id=&amp;quot; function&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
In function mode, you can graph equations where y (the vertical coordinate) is a function of x (the horizontal coordinate). This mode is most commonly discussed in algebra and single-variable calculus courses. Many curves, such as a parabola, have simple expressions when written in the form y=f(x).&lt;br /&gt;
&lt;br /&gt;
However, in function mode, many expressions cannot be graphed at all. For example, a circle can&amp;#039;t be easily graphed in function mode, since for some x-values, there are two y-values. Using two functions, you can achieve a circle, but it will still require a friendly graphing window to display perfectly.&lt;br /&gt;
&lt;br /&gt;
Many calculator features are specifically targeted at function mode graphing. For example, two graphing styles (see [[TI-BASIC:Graphstyle|GraphStyle(]]) can be only used with function mode. The [[TI-BASIC:Drawf|DrawF]] command draws a function on the graph screen.&lt;br /&gt;
&lt;br /&gt;
= [[TI-BASIC:Param|Parametric Mode]] &amp;lt;span id=&amp;quot; parametric&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
Parametric mode is in many ways a generalization of function mode. Instead of writing y as a function of x, both x and y are written as a function of a parameter t (hence the name, parametric mode). You can easily see that equations in function mode are just a special case of equations in parametric mode: if you set x equal to t, then writing y=f(t) is equivalent to writing y=f(x). Of course, graphing a function this way on a calculator will be slightly slower than doing it in function mode directly, because of the overhead.&lt;br /&gt;
&lt;br /&gt;
Parametric mode allows you the greatest freedom of all the possible graphing modes - nearly every curve you could encounter can be expressed in parametric form. &lt;br /&gt;
&lt;br /&gt;
In mathematics, the parameter t is commonly allowed to take on all values from negative to positive infinity. However, this would be impossible to do on a calculator, since the equation would never stop graphing (unlike function mode, there&amp;#039;s no easy way to check for which values of t the equation will go off the screen and there&amp;#039;s no need to graph it). Instead, the calculator has [[TI-BASIC:System_Variables|window variables]] Tmin, Tmax, and Tstep: it will evaluate the parameter at every value from Tmin to Tmax, increasing by Tstep each time, and &amp;#039;connect the dots&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
Polar mode, which you&amp;#039;ll read about in the next section, is also a special case of parametric mode: To graph r=f(θ), you can instead graph x=f(t)cos(t) and y=f(t)sin(t), with t graphed over the same interval as θ.&lt;br /&gt;
&lt;br /&gt;
= [[TI-BASIC:Polar_Mode|Polar Mode]] &amp;lt;span id=&amp;quot; polar&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
Unlike the previous modes, polar mode doesn&amp;#039;t use the more common (x,y) coordinates. Instead, the coordinates (r,θ) are used, where θ is the counterclockwise angle made with the positive x-axis, and r is the distance away from the origin (the point (0,0)). Although it&amp;#039;s possible to translate from one system to the other, polar coordinates are more useful for some expressions (and, of course, less useful for others). &lt;br /&gt;
&lt;br /&gt;
In particular, they&amp;#039;re very good at graphing anything circle-related. The equation for a circle in polar mode is just r=1 (or any other number, for a circle of different radius). &lt;br /&gt;
&lt;br /&gt;
Like in parametric mode, the parameter θ uses the window variables θmin, θmax, and θstep to determine which points are graphed. A common situation is θmin=0, θmax=2π: in [[TI-BASIC:Radian_Mode|Radian]] mode, this corresponds to going all the way around the circle. Of course, you could use [[TI-BASIC:Degree_Mode|Degree]] mode and set θmax to be 360, but this is uncommon in mathematics.&lt;br /&gt;
&lt;br /&gt;
= [[TI-BASIC:Seq_Mode|Sequential Mode]] &amp;lt;span id=&amp;quot; sequential&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; =&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 more generally in terms of u(&amp;#039;&amp;#039;n&amp;#039;&amp;#039;-k) for any k. 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 (for example, 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.[[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>