|
Math Program Ideas
|
|
Post your ideas for new math programs here, or build on ideas posted by other visitors.
|
|
|
Reply to this item
|
|
Re: Math Program Ideas
|
Harrington ricks
|
|
I would like someone to make a math program for numerical analysis for advanced math classes. I do know this would be an easy program to make, although, I need to know how to start it and if someone could show me how to start it, I could make one and then put it on the site. I have a TI-83 or TI-92 Plus. So if you have any ideas, contact me asap.
|
|
Reply to this comment
|
27 December 2003, 20:09 GMT
|
|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
|
Re: Re: Re: Re: Re: Math Program Ideas
|
chris w
|
|
another option, with both formulas in one BASIC program for the ti-83+
Prompt L1,L2
Menu( "welcome", "midpoint",MP, "distance", DI, "exit",X)
Lbl MP
DelVar L3
(L1(1)+L2(1))/2 -> L3(1)
(L1(2)+L2(1))/2 -> L3(2)
Disp L3
Stop
Lbl DI
sqrt( (L1(1)-L2(1))^2 + (L1(2)-L2(2))^2) ->D
ClrHome
Output( 1,1,D)
Output( 2,1,"sqrt(")
Output( 2,3,D^2)
Stop
Lbl X
Stop
It may be a bit long, but it gets the job done well.
Note: the spaces are not part of the program
|
|
Reply to this comment
|
8 April 2005, 22:33 GMT
|
|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |

 |
|
Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
|
chandragupta
|
|
Here it the program I wrote for slope, midpoint, and distance. not that yours wont work, i just think that mine is a little easier to understand for beginners. it is as follows:
:disp "(x,y),(a,b)"
:prompt X,Y,A,B
:B-Y->C
:A-X->D
:if D=0
:then
:disp "NO SLOPE"
:Else
:Disp "SLOPE"
:Disp C/D ->frac
:End
:sqrt(C^2+D^2)->E
:Disp "DISTANCE",E ->frac
:((X+A)/2)->F
:((B+Y)/2)->G
:Disp "MIDPOINT (X,Y)",F,G
Thats all there is to it
|
|
Reply to this comment
|
6 December 2005, 02:30 GMT
|
|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
|
Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
|
Vminch
|
|
Dude, all you need to get MP and DI is the same 4 prompts.
So:
::"DIST
:ClrHome
:Prompt X,Y,Z,T
:(Write your own formulas, I have a science fair project I should be working on... Find both DI and MP with them.)
:round(D,5)->D
:round(M,5)->M
:Disp D,M
:Pausde
:End
Gets the job done nicely, not pretty, but efficient. You can even cut out the round func and make a cool
:Output(5,1,"Distance:")
:Output(5,11,D)
:--- Same thing on the next line for Midpoint
|
|
Reply to this comment
|
10 May 2007, 00:36 GMT
|
|
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |
 |

 |
|
Re: Re: Re: Re: Re: Math Program Ideas
|
Groene07
|
|
:I'm not saying anyones ideas here are not the best way to go about this program,but i made one without having to input A,B,C,or D more than once. After typing in the X and Y values it will display The distance, and when you press enter it displays the Mid-point, and finally with another press of the enter button it will display the slope as well. (MADE ON TI 84+)
Lbl A
Prompt A,B,C,D
Sqrt((B-A)^2+(D-C)^2)->A
((A+B)/2)->B
((C+D)/2)->C
(D-C)/(B-A)->D
ClrHome
Disp "DISTANCE"
Disp A
Pause
ClrHome
Disp "MID POINT"
Disp B,C
Pause
ClrHome
Disp "SLOPE"
Disp D
Goto 1 (NOTE:The goto 1 is referring to another part of the larger program itself and if you made this by itself i would have it go to Lbl A.)
|
|
Reply to this comment
|
23 March 2007, 15:36 GMT
|
|
|