Difference between revisions of "TI-BASIC:Abs"

From Learn @ Cemetech
Jump to navigationJump to search
(Initial automated import)
 
(formatting)
 
(One intermediate revision by one other user not shown)
Line 17: Line 17:
  
 
abs(''x'') returns the absolute value of the real number ''x''. Also works on a list or matrix of real numbers.
 
abs(''x'') returns the absolute value of the real number ''x''. Also works on a list or matrix of real numbers.
 
+
<div style="background: #FFF; border: 1px dashed #DDD; padding-left:1em; margin: 1em 0 1em 0; font-family:Arial Unicode MS; color: #000; letter-spacing:1.2pt;">
 
  abs(3)
 
  abs(3)
 
       3
 
       3
Line 23: Line 23:
 
  abs(‾3)
 
  abs(‾3)
 
       3
 
       3
 
+
</div>
 
For complex numbers, abs(''z'') returns the absolute value (also known as the complex modulus, norm, or a hundred other terms) of the complex number ''z''. If ''z'' is represented as ''x''+i''y'' where x and y are both real, abs(''z'') returns √(''x''²+''y''²). Also works on a list of complex numbers.
 
For complex numbers, abs(''z'') returns the absolute value (also known as the complex modulus, norm, or a hundred other terms) of the complex number ''z''. If ''z'' is represented as ''x''+i''y'' where x and y are both real, abs(''z'') returns √(''x''²+''y''²). Also works on a list of complex numbers.
 
+
<div style="background: #FFF; border: 1px dashed #DDD; padding-left:1em; margin: 1em 0 1em 0; font-family:Arial Unicode MS; color: #000; letter-spacing:1.2pt;">
 
  abs(3+4i)
 
  abs(3+4i)
 
       5
 
       5
 
+
</div>
 
= Optimization =
 
= Optimization =
  
 
The abs( command, used properly, may be a smaller method of testing if a variable is in some range. For example:
 
The abs( command, used properly, may be a smaller method of testing if a variable is in some range. For example:
 
+
<div style="background: #FFF; border: 1px dashed #DDD; padding-left:1em; margin: 1em 0 1em 0; font-family:Arial Unicode MS; color: #000; letter-spacing:1.2pt;">
 
  :If 10<X and X<20
 
  :If 10<X and X<20
 
  can be
 
  can be
 
  :If 5>abs(X-15
 
  :If 5>abs(X-15
 
+
</div>
  
 
In general, the first number, A, in the expression A>abs(X-B) should be half the length of the range, half of 10 in this case, and the second number, B, should be the midpoint of the range (here, 15).
 
In general, the first number, A, in the expression A>abs(X-B) should be half the length of the range, half of 10 in this case, and the second number, B, should be the midpoint of the range (here, 15).
  
 
This can be taken to extreme degrees. For example, the following code uses abs( three times to test if X is the [[TI-BASIC:Getkey|GetKey]] keycode of one of the keys 1, 2, 3, 4, 5, 6, 7, 8, or 9:
 
This can be taken to extreme degrees. For example, the following code uses abs( three times to test if X is the [[TI-BASIC:Getkey|GetKey]] keycode of one of the keys 1, 2, 3, 4, 5, 6, 7, 8, or 9:
 
+
<div style="background: #FFF; border: 1px dashed #DDD; padding-left:1em; margin: 1em 0 1em 0; font-family:Arial Unicode MS; color: #000; letter-spacing:1.2pt;">
 
  :If 2>abs(5-abs(5-abs(X-83
 
  :If 2>abs(5-abs(5-abs(X-83
  
 
+
</div>
 
------
 
------
  
Line 55: Line 55:
 
* [[TI-BASIC:Imag|Imag(]]
 
* [[TI-BASIC:Imag|Imag(]]
 
* [[TI-BASIC:Conj|Conj(]]
 
* [[TI-BASIC:Conj|Conj(]]
* [[TI-BASIC:R►Pr(|R►Pr(]][[Category:TI-BASIC]]
+
* [[TI-BASIC:R_Pr|R►Pr(]][[Category:TI-BASIC]]
 
[[Category:TIBD]]
 
[[Category:TIBD]]

Latest revision as of 02:25, 27 November 2017

ABS.GIF

Command Summary

Returns the absolute value of a real number, and the complex absolute value of a complex number.

Command Syntax

abs(value)

Menu Location

Press:

  1. MATH to access the Math menu.
  2. RIGHT to access the NUM submenu.
  3. ENTER to select abs(.

Alternatively, press:

  1. MATH to access the Math menu.
  2. RIGHT twice to access the CPX (complex) submenu.
  3. 5 to select abs(, or use arrows.

Calculator Compatibility

TI-83/84/+/SE

Token Size

1 byte

abs(x) returns the absolute value of the real number x. Also works on a list or matrix of real numbers.

abs(3)
     3
     
abs(‾3)
     3

For complex numbers, abs(z) returns the absolute value (also known as the complex modulus, norm, or a hundred other terms) of the complex number z. If z is represented as x+iy where x and y are both real, abs(z) returns √(x²+y²). Also works on a list of complex numbers.

abs(3+4i)
     5

Optimization

The abs( command, used properly, may be a smaller method of testing if a variable is in some range. For example:

:If 10<X and X<20
can be
:If 5>abs(X-15

In general, the first number, A, in the expression A>abs(X-B) should be half the length of the range, half of 10 in this case, and the second number, B, should be the midpoint of the range (here, 15).

This can be taken to extreme degrees. For example, the following code uses abs( three times to test if X is the GetKey keycode of one of the keys 1, 2, 3, 4, 5, 6, 7, 8, or 9:

:If 2>abs(5-abs(5-abs(X-83

For complex numbers given by a separate real and complex part, abs(X+iY) can be optimized to R►Pr(X,Y).

Related Commands