Convert to Scientific notation on TI-89

Dec 30, 2004
12,553
2
76
Most of the equations I use I don't need/want engineering notation. It's a nuisance to change between Normal and Engineering 6x a day for different classes/homeworks. IE, I don't want eng/sci notation for complex conjugates, but it is helpful when solving equations involving some fraction of c.

I just get tired of counting all the zeros on a 9 digit number. Any suggestions?
 

degibson

Golden Member
Mar 21, 2008
1,389
0
0
Get another calculator: Leave one TI-89 in normal mode and the other in engineering.
 

rage2050a

Junior Member
Jun 21, 2017
1
0
6
format(ans(1), "e")
will print the value in engineering format like "12.345E3".

format(ans(1), "s")
will print the value in engineering format like "1.2345E4".

I have the "s" one in my custom menu by executing the program below.

:custmenu()
:prgm
:
:Custom
:Title "Any"
: Item "format(ans(1),"&char(34)&"s"&char(34)&")"
:EndCustm
:
:EndPrgm