How do I create a TI-89 program to calculate vector magnitudes?

  • Context: Calculators 
  • Thread starter Thread starter Peppino
  • Start date Start date
  • Tags Tags
    Programs Ti-89
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 10K views
Peppino
Messages
39
Reaction score
0
I would like to make a program for which you give two vectors, A and B, and it returns (A^2 + B^2)^0.5. How can I do this?
 
Physics news on Phys.org
Go here

http://education.ti.com/guidebooks/graphing/89ti/TI89TitaniumGuidebook_Part2_EN.pdf

and scroll down the left hand column table of contents until you get to Programming. Then open up that section of the manual with a click. Step through the introduction page by page and it will show you how to enter and later run a program or function of your own.
 
Last edited by a moderator:
If you just want a simple program...

:Prompt a,b
:Disp (a^2-b^2)^.5

Now, that is the most basic version, and not very good looking, but it will get the job done.