<?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%3AE_Ten</id>
	<title>TI-BASIC:E Ten - 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%3AE_Ten"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:E_Ten&amp;action=history"/>
	<updated>2026-05-29T15:54:29Z</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:E_Ten&amp;diff=493&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:E_Ten&amp;diff=493&amp;oldid=prev"/>
		<updated>2016-02-24T18:04:13Z</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=E.GIF&lt;br /&gt;
|summary=The [[TI-BASIC:Size_75%}}E[[/size|Size_75%}}E[[/size]] symbol is used for entering numbers in scientific notation.&lt;br /&gt;
|syntax=&amp;#039;&amp;#039;mantissa&amp;#039;&amp;#039; &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; &amp;#039;&amp;#039;exponent&amp;#039;&amp;#039;&lt;br /&gt;
|location=Press [2nd][EE] to paste the &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; command.&lt;br /&gt;
|compatibility=TI-83/84/+/SE&lt;br /&gt;
|size=1 byte&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; symbol is used for entering numbers in scientific notation: it&amp;#039;s short for *10^. This means that in many cases, its function is identical to that of the [[TI-BASIC:Ten_Exponent|10^(]] command (aside from the parenthesis). However, the exponent of &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; is limited to constant integer values ‾99 to 99.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; symbol is used in display by the calculator for large numbers, or when in [[TI-BASIC:Sci|Sci]] (scientific) or [[TI-BASIC:Eng|Eng]] (engineering) mode.&lt;br /&gt;
&lt;br /&gt;
Unlike the exponent of &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;, the mantissa (a special term for the A in A*10^B, in scientific notation) isn&amp;#039;t limited in variable type: it can be a constant, a real or complex variable or expression, a list, a matrix, or even omitted entirely (and then it will be assumed to equal 1). The reason for this versatility is simple: internally, only the exponent is taken to be an actual argument for this command. The rest of the calculation is done through implied multiplication.&lt;br /&gt;
&lt;br /&gt;
{{Template:TI-BASIC:Prgm-code&lt;br /&gt;
|code=&lt;br /&gt;
5[[TI-BASIC:Size_75%}}E[[/size|Size_75%}}E[[/size]]3&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; background:transparent;&amp;quot;&amp;gt;..................&amp;lt;/span&amp;gt;5000&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;‾5&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; background:transparent;&amp;quot;&amp;gt;..................&amp;lt;/span&amp;gt;.00001&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
= Advanced Uses =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;99 and -&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;99 are often used for negative and positive infinity because the TI-83 series of calculators doesn&amp;#039;t have an infinity symbol. Commands that often need to use infinity include [[TI-BASIC:Solve|Solve(]], [[TI-BASIC:Fnint|FnInt(]], [[TI-BASIC:Normalcdf|Normalcdf(]] (and the other distributions), and many others. The error introduced in this way is usually irrelevant, because it&amp;#039;s less than the minimum calculator precision, anyway: &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;99 is mindbogglingly huge.&lt;br /&gt;
&lt;br /&gt;
= Optimization =&lt;br /&gt;
&lt;br /&gt;
Don&amp;#039;t add the mantissa when it&amp;#039;s 1: &lt;br /&gt;
&lt;br /&gt;
{{Template:TI-BASIC:Prgm-code&lt;br /&gt;
|code=&lt;br /&gt;
1[[TI-BASIC:Size_75%}}E[[/size|Size_75%}}E[[/size]]5&lt;br /&gt;
should be&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;5&lt;br /&gt;
]]&lt;br /&gt;
&lt;br /&gt;
In addition, &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;2 or &amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt;3 can be used as shorthand ways of writing 100 and 1000 respectively. This could be continued, in theory, for higher powers of 10, but those aren&amp;#039;t necessary as often.&lt;br /&gt;
&lt;br /&gt;
= Command Timings =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-size: 75%&amp;quot;&amp;gt;E&amp;lt;/span&amp;gt; is much faster than using the [[TI-BASIC:Ten_Exponent|10^(]] command or typing out 10^. The drawback, of course, is that it&amp;#039;s limited to constant values.&lt;br /&gt;
&lt;br /&gt;
= Related Commands =&lt;br /&gt;
&lt;br /&gt;
* [[TI-BASIC:Power|^]]&lt;br /&gt;
* [[TI-BASIC:Ten_Exponent|10^(]]&lt;br /&gt;
* [[TI-BASIC:E_Exponent|e^(]][[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>