Convert and Calculate Dimensions with Ti-89

  • Thread starter Thread starter Matthew2046
  • Start date Start date
  • Tags Tags
    Program Ti-89
Click For Summary
SUMMARY

The forum discussion centers on creating a program for the TI-89 calculator that can add and subtract dimensions in the ff.iiss format and convert these dimensions to decimal feet. A user provided a basic algorithm for converting ff.iiss to decimal feet, utilizing the iPart() and fPart() functions for integer and fractional parts, respectively. The example given demonstrates converting 10.0608 (10 feet 6 and a half inches) to 10.5416 in decimal feet. This solution addresses the need for accurate dimension calculations on the TI-89.

PREREQUISITES
  • Understanding of TI-89 calculator functions, specifically iPart() and fPart()
  • Familiarity with the ff.iiss dimension format
  • Basic programming concepts for algorithm development
  • Knowledge of decimal conversions in measurement
NEXT STEPS
  • Research how to implement custom programs on the TI-89 calculator
  • Learn about the TI-89 programming language syntax and functions
  • Explore advanced algorithms for converting between measurement formats
  • Study the principles of numerical methods for accurate calculations
USEFUL FOR

This discussion is beneficial for TI-89 users, mathematics educators, and anyone involved in engineering or construction who requires precise dimension calculations and conversions.

Matthew2046
Messages
1
Reaction score
0
I was wondering if anyone here has a program for their ti-89 that can add and subtract dimension in ff.iiss format. Also it would be great if you could convert ff.iiss to decimal feet and vise versa.

For example I would want to enter in 10.0608 (10 feet 6 and a half inches) and convert it to decimal feet and get the answer of 10.5416. I would also like to be able to add and subtract dimensions in the same ff.iiss format.

Does anyone have a program that can do this? I would try and make one but have no idea how to even start.

Thank you for the help.
 
Engineering news on Phys.org
Welcome to PF.
I do not have ti-89 but here is one basic algorithm.

x = ff.iiss ' the input
ft = Integ(x) ' build decimal feet in ft

x = 100 * Fract(x) ' shift two digits left
ft = ft + Integ(x) / 12

x = 100 * Fract(x) ' shift two digits left
ft = ft + x / 192 ' decimal feet result, 12*16 = 192

Edit; On Ti 89 use the iPart() and fPart() functions for the integer and fractional part functions.
 
Last edited:

Similar threads

  • · Replies 6 ·
Replies
6
Views
6K
  • · Replies 5 ·
Replies
5
Views
7K
  • · Replies 1 ·
Replies
1
Views
8K
  • · Replies 1 ·
Replies
1
Views
17K
  • · Replies 1 ·
Replies
1
Views
5K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 8 ·
Replies
8
Views
9K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
4K