<?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%3AInverse</id>
	<title>TI-BASIC:Inverse - 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%3AInverse"/>
	<link rel="alternate" type="text/html" href="http://learn.cemetech.net/index.php?title=TI-BASIC:Inverse&amp;action=history"/>
	<updated>2026-04-17T18:55:23Z</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:Inverse&amp;diff=1211&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:Inverse&amp;diff=1211&amp;oldid=prev"/>
		<updated>2016-02-24T18:40: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;{{Template:TI-BASIC:Command&lt;br /&gt;
|picture=INVERSE.GIF&lt;br /&gt;
|summary=Returns the reciprocal of a number (1 divided by the number). For matrices, finds the matrix inverse.&lt;br /&gt;
|syntax=&amp;#039;&amp;#039;value&amp;#039;&amp;#039;ֿ¹&lt;br /&gt;
|location=Press [&amp;#039;&amp;#039;x&amp;#039;&amp;#039;ֿ¹]&lt;br /&gt;
|compatibility=TI-83/84/+/SE&lt;br /&gt;
|size=1 byte&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The ֿ¹ command returns the reciprocal of a number, equivalent to dividing 1 by the number (although reciprocals are sometimes more convenient to type). It also works for lists, by calculating the reciprocal of each element. &lt;br /&gt;
&lt;br /&gt;
The ֿ¹ command can also be used on matrices, but it is the matrix inverse that is computed, not the reciprocal of each element. If [A] is an N by N (square) matrix, then [A]ֿ¹ is the N by N matrix such that [A][A]ֿ¹=[A]ֿ¹[A] is the identity matrix. ֿ¹ does not work on non-square matrices.&lt;br /&gt;
&lt;br /&gt;
 4ֿ¹&lt;br /&gt;
 		.25&lt;br /&gt;
 {1,2,3}ֿ¹&lt;br /&gt;
 		{1 .5 .3333333333}&lt;br /&gt;
 [[3,2][4,3]]ֿ¹&lt;br /&gt;
 		[[3  -2]&lt;br /&gt;
 		 [-4 3 ]]&lt;br /&gt;
&lt;br /&gt;
Much like the number 0 does not have a reciprocal, some square matrices do not have inverses (they are called singular matrices) and you&amp;#039;ll get an error when you try to invert them.&lt;br /&gt;
&lt;br /&gt;
= Optimization =&lt;br /&gt;
&lt;br /&gt;
Writing Aֿ¹B instead of B/A is sometimes beneficial when B is a complicated expression, because it allows you to take off closing parentheses of B. For example:&lt;br /&gt;
&lt;br /&gt;
 :(P+√(P²-4Q))/2&lt;br /&gt;
 can be&lt;br /&gt;
 :2ֿ¹(P+√(P²-4Q&lt;br /&gt;
&lt;br /&gt;
This may be slower than dividing. There are also situations in which this optimization might lose precision, especially when the number being divided is large:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 7fPart(4292/7&lt;br /&gt;
 		1&lt;br /&gt;
 7fPart(7ֿ¹4292&lt;br /&gt;
 		.9999999999&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Error Conditions =&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;[[TI-BASIC:Errors#divideby0|ERR:DIVIDE BY 0]]&amp;#039;&amp;#039;&amp;#039; is thrown when trying to take the reciprocal of 0.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;[[TI-BASIC:Errors#singularmat|ERR:SINGULAR MAT]]&amp;#039;&amp;#039;&amp;#039; is thrown when trying to invert a singular matrix.&lt;br /&gt;
&lt;br /&gt;
= Related Commands =&lt;br /&gt;
&lt;br /&gt;
* [[TI-BASIC:2|²]]&lt;br /&gt;
* [[TI-BASIC:3|³]][[Category:TI-BASIC]]&lt;br /&gt;
[[Category:TIBD]]&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>