calc0002
Joined: 01 Oct 2008 Posts: 4
|
Posted: October 3, 2008 9:39 AM Post subject: Re: Programming a function in the TI-89-the distance formula |
|
|
| eboccuzzi wrote: | I need help programming the distance formula into my TI-89.
The TI website didn't help much.
Thank you,
Ed Boccuzzi |
This should work:
| Code: | distance(x,y,xx,yy)
Func
Return sqrt((xx-x)^2+(yy-y)^2)
EndFunc
|
Replace sqrt with the square root symbol on the calculator. |
|