Math Program Ideas
|
Post your ideas for new math programs here, or build on ideas posted by other visitors.
|
|
Reply to this item
|
Base Conversion-- HELP!!
|
Flexico8191
|
My base conversion program eliminates the values of many digits of a number greater than (E14)-1. I've tried several ways of compensating, but none work well enough. ANY IDEAS???
|
|
3 June 2004, 02:26 GMT
|
|
HELP
|
Tim Molloy
|
I am making a program for the TI-83+ to convert scientific notation to decimal notation. I am done writing the program, except that I can't figure out how to let the calculator give an answer that is longer than 10 digits. Right now, if the answer is longer than 10 digits, it will round it or it will put it back into scientific notation. If anyone knows how to bybass the stupid rule, please respond or email me. If you want a shot to try and bybass it, I'll email you the program.
Tim
tim0808@rushpost.com
|
|
24 June 2004, 05:31 GMT
|
|
Re: Math Program Ideas
|
Wesley Transue
|
Can anyone help me? I need a program that does the gamma function of an input number. Thank you.
|
|
24 June 2004, 14:06 GMT
|
|
Re: Math Program Ideas
|
AVM Mathew
|
Hello Everyone,
"FINDING THE BINOMIAL COEFFIECIENTS"
>
>
>
> INPUT" ENTER THE GREATEST NUMBER", G
>
> INPUT " ENTER THE LOWEST NUMBER", L
>
> CALCULATION
>
> G-L= A
>
> G!/(A!*L!) = B
>
> DISP" ANSWER", B
>
|
|
30 June 2004, 15:05 GMT
|
|
SYNTHATIC DIVISION
|
AVM Mathew
|
PROMPT A, B, C, D
INPUT "DIVIDE BY THE NUMBER", F
1*A =F
F*E =G
B+G =H
H*E =I
C+I =J
J*E =K
D+K =L
DISP "A", F
DISP "B", H
DISP "C", J
DISP "D", L
|
|
30 June 2004, 15:14 GMT
|
|
Re: Math Program Ideas
|
AVM Mathew
|
HOLA EVERYONE,
PROGRAMS COMMING SOON!!!!!!!!!!!!!
|
|
30 June 2004, 15:25 GMT
|
|
PH CONCENTRATION
|
AVM Mathew
|
PH CONCENTRATION
INPUT " HYDROGEN CONCENTRATION:",H
-LOG(H)-> A
DISP "PH LEVEL", A
ANOTHER PROGRAM
INPUT "PH:", B
-1*B -> C
10^C -> E
DISP "HYDROGEN CONCENTRATION", E
|
|
30 June 2004, 16:05 GMT
|
|
Re: Math Program Ideas
|
AVM Mathew
(Web Page)
|
HELLO EVERYONE,
INPUT "B", B
-B/(2A)->V
DISP " VERTEX",V
|
|
30 June 2004, 16:09 GMT
|
|
FINDING THE BALANCE FOR COMPOUND INTEREST
|
AVM Mathew
|
INPUT "PRINCIPLE:", P
INPUT "INTEREST", R
INPUT "N", N
INPUT "TIME:",T
R/N -> B
P(1+B)^N^T ->K
DISP "BALANCE
|
|
30 June 2004, 16:26 GMT
|
|
FINDING THE BALANCE FOR COMPOUND INTEREST
|
AVM Mathew
|
INPUT "PRINCIPLE:", P
INPUT "INTEREST", R
INPUT "N", N
INPUT "TIME:",T
R/N -> B
P(1+B)^N^T ->K
DISP "BALANCE", K
EXAMPLE:
A SUM OF $9000 IS INVESTED AT AN ANNUAL INTEREST RATE OF 8.5%, COMPOUNDED ANNUALY. FIND THE BALANCE IN THE ACCOUNT AFTER 3YRS.
ANSWER: $11,495.60
|
|
30 June 2004, 16:33 GMT
|
|
FINDING CONTINUOUS COMP INT
|
AVM Mathew
|
PROMPT P, I, T
Pe^R^T -> U
DISP" CONTINOUS COMPOUNDING BALANCE IS", U
|
|
30 June 2004, 16:43 GMT
|
|
Prt programs
|
AVM Mathew
|
HELLO,,
INPUT "PRINCIPLE:", P
INPUT "INTEREST", R
INPUT "TIME:",T
PRT -> I
DISP "EARN",->I
"FINDING INTEREST RATE"
PROMPT P, R, T
PT -> N
R/N ->I
DISP "INTEREST", I
FLOAT
"FINDING TIME"
PROMPT P, R, I
PI -> S
R/S -> T
DISP "TIME", T
FLOAT
***************************
* "VERY SIMPLE PROGRAMS" *
* *
* "TRY ON U R CALCULATER" *
***************************
|
|
1 July 2004, 14:44 GMT
|
|
Re: Math Program Ideas
|
Bob Leonard
|
I had made a rather impressive stats prgram for my AP stats class back in 2002. It contained definitions, equations, and also solvers to automatically give you the answer to just about anything youneeded. However, sence then I think the program has dissapeared. I now, on the request of my old Stats teacher, intend on reviving it. I have a few new ideas to make it better like a new sub program to handle the text and make it much easier to read and using a getkey to scroll up and down through stats defintions. I also plan on using a new subpragram that isessentually just a better version of the menu command. All the text will be done in a test(...) format and the test(...) synatxs will be covered in the subprograms as to add eficiency. However I want to ask if anyone knows of a ti basic compiler that works with a notpad or some other test editor so that I would be able to copy and past stats definitions from the internet. Please respond if you have any extra ideas, comments, or it you could heklp with finding a ti-basic compiler that would run on the PC and has cup-past capability.
-BOB
|
|
7 July 2004, 00:45 GMT
|
|
Integer relations
|
Whammer1980
|
Hi!
I have just begun my adventure into the Integer Relations world. I have implemented the LLL-algorithm as described in the Handbook of Applied Cryptography on my TI-89. A bit slow though, but hey, it's written basic :-)
I have read a little about the PSLQ algorithm. That would be a nifty thing to have for my TI-89. Have anyone seen that implemented for the TI-89?
If not, I would like a little help with the implementation. Sofar, I have only found descriptions of the algorithm and no source code :-(
However I read somewhere that the PSLQ algorithm requires an enormous numerical precission, maybe even hundreds of digits. Will that not be a problem?
---
Best regards
Jes Hansen
|
|
13 July 2004, 08:10 GMT
|
|
LONG DIVISION
|
AVM Mathew
|
VERY SYMBOL
EX: 10X^3+31X^2+17X+31 LONG DIVISION
INPUT "A" , A 10
INPUT "B" , B 17
INPUT "C" , C 31
INPUT "D" , D 5
INPUT "DIV BY A", E 2
INPUT "DIV BY B", F 5
A / F -> G
10 / 2 = 5
G * B -> H
5* 5 = 25
B - H -> I
31 - 25 = 6
I / A -> J
6 / 2 = 4
J * B -> K
4 * 5 = 15
K - C -> L
17 - 15 = 2
L / A -> M
2 / 2 = 1
M * B -> N
1 * 5 = 5
D - N -> O
5-5 = 0
|
|
22 July 2004, 14:53 GMT
|
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
You can change the number of comments per page in Account Preferences.
|