The ∠ Command

We're glad you came by, but you might find what you're looking for elsewhere.

TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it.

Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope.

angle-symbol.png

Command Summary

Used in entering a vector in polar, cylindrical, or spherical format, or a complex number in polar form.

Command Syntax

[r,∠θ]
[r,∠θ,z]
[r,∠θ,∠φ]
(rθ)

Menu Location

  • Press 2nd MATH to enter the MATH menu.
  • Press 2 to enter the Angle submenu.
  • Press 7 to select ∠.

Calculator Compatibility

This command works on all calculators.

Token Size

1 byte

The ∠ operator is used for alternate forms of entering vectors or complex numbers. It will be used for output depending on the Complex Format and Vector Format mode settings, but you can always use it in an expression.

For vectors (which are just 1x2 or 1x3 matrices, as far as ∠ is concerned):

  • [r,∠θ] is equivalent to [r*cos(θ),r*sin(θ)]
  • [r,∠θ,z] is equivalent to [r*cos(θ),r*sin(θ),z]
  • [r,∠θ,∠φ] is equivalent to [r*cos(θ)*sin(φ),r*sin(θ)*sin(φ),r*cos(φ)]

These have to be row vectors — you can't use column vectors with ∠.

For complex numbers, (r∠θ) is equivalent to r*(cos(θ)+i*sin(θ)). You have to have the parentheses there, and both r and θ must be real numbers or expressions.

Error Conditions

260 - Domain error happens when complex numbers are used in the vector notation.

580 - Invalid polar complex happens when the values of r and θ in the complex number notation are invalid.

640 - Invalid vector syntax happens when the ∠ mark is misplaced in the vector notation.

Related Commands

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Noncommercial 2.5 License.