ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Programming :: Program Ideas :: Math Program Ideas
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  Account Info

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: Math Program Ideas
WackyYKurt88  Account Info
(Web Page)

Hey. So what kind of Advanced Math Classes are we talking here? I could help but I would need equations on what you are talking about then, I could send you the information you want and need to get started then you could do the rest.

Reply to this comment    29 December 2003, 02:39 GMT


Re: Re: Re: Math Program Ideas
Mike Rhodes  Account Info

Can I get some help on a midpoint and a distance formula

Reply to this comment    11 June 2004, 20:08 GMT

Re: Re: Re: Re: Math Program Ideas
Coolv  Account Info

What calc?

Reply to this comment    26 June 2004, 23:06 GMT


Re: Re: Re: Re: Re: Math Program Ideas
Bhtre124 Account Info
(Web Page)

He said he has a 83+ or 92

Reply to this comment    9 February 2008, 01:30 GMT

Re: Re: Re: Re: Math Program Ideas
brendan mccarthy  Account Info

like what? just use prompt, variables, and the correct equations too. right?

Reply to this comment    12 September 2004, 00:31 GMT

Re: Re: Re: Re: Math Program Ideas
smartgenius1  Account Info
(Web Page)

If You are looking for distance formula, and have a ti-89 then you could download mathwiz.
It has a program in it which figures out the distance, midpoint, slope, and the y-intercept formula for the line. All you do is type in two coordinates and everything else is done. Anything else?

Reply to this comment    19 September 2004, 00:58 GMT

Re: Re: Re: Re: Math Program Ideas
nathan90 Account Info

simple

DISTANCE
prompt A,B,C,D
disp (sqrt((A-C)^2-(B-D)^2))

MIDPOINT
prompt A,B,C,D
disp (A-C)/2-(B-D)/2

Reply to this comment    24 October 2004, 22:25 GMT

Re: Re: Re: Re: Re: Math Program Ideas
chris w  Account Info

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: Math Program Ideas
Tuhitusan  Account Info

I tried using the program you suggested and all i recieved were errors. It is most likely my fault but there are symbols that are close to the ones you typed that confused me if it isn't too much trouble would you please specify how to type each character. It will most likely will be a pain but would be greatly appreciated
Thank you for your time

Reply to this comment    20 August 2005, 04:03 GMT


Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
Brandon Ragsdale  Account Info

the symbols are:
sqrt= the square root button.
L1-L2= list one and list two
^2= is the the number squared.
->= is the sto-> button
if you need it, i could write it for you.
ill email it to you if you need it.

Reply to this comment    13 October 2005, 16:38 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
chandragupta Account Info

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
chandragupta Account Info

P.S-
->frac displays the anwser as a fraction, it is found under Math:1
also, just so you under stand the program asks for two points, that is the (X,Y),(A,B)
if you type in the point and it displays "NO SLOPE", this is if the line is verticle and the slope involves dividing by zero.

Reply to this comment    6 December 2005, 02:34 GMT

Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
Carlos Cruz  Account Info

:Input "X=1",A
:Input "Y=1",B
:Input "X=2",C
:Input "Y=2",D
:C-A->X
:D-B->Y
:sqrt(X^2+Y^2)->
:ClrHome
:Disp "DISTANCE IS"
:Disp R
:Disp "MIDPOINT IS"
:(C+A)/2->X
:(B+D)/2->Y
:Disp {X,Y}
:Disp "SLOPE IS"
:if (C-A)=0
:Goto 1
:(D-B)/(C-A)->
:Disp S->Frac
:Stop
:Lbl 1
:Disp "THE SLOPE IS","UNDEFINED"

Reply to this comment    3 April 2006, 05:05 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
yellowPig Account Info

Wait a minute. What's R? You never assigned R a value. And sqrt(X^2+Y^2)->? You can't just store a value. You have to store it into something. Also the "stop" is not needed at all-you hadn't yet used Lbl. Anyway, you don't need to use the Goto function in the first place, and should avoid using it--it's just sloppy coding and can lead to lots of syntax errors in longer programs.

Reply to this comment    3 April 2006, 05:19 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
MRD-soft Account Info

I think the stop is needed here, otherwise the message would appear even if it isn't supposed to come.

Reply to this comment    9 May 2006, 12:53 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
stalepretzel  Account Info

That's correct. Without the stop, it would tell you the slope then inform you that the slope really doesn't exist... also, the goto part is fine... it could be replaced with if then else, but that would be more memory consuming. True, long programs may be confusing with thousands of gotos, but they are generally less efficient if other methods are used.

Reply to this comment    29 January 2007, 02:33 GMT

Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
Vminch Account Info

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: Re: Re: Re: Re: Re: Math Program Ideas
Vminch Account Info

You could do slope with it too.

Reply to this comment    10 May 2007, 00:39 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
jeb623 Account Info

How do you get = sign on calc for...
:if D=0
send to bboy623@gmail.com

Reply to this comment    16 November 2007, 22:27 GMT


Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
Bhtre124 Account Info
(Web Page)

you press 2nd MATH and enter

Reply to this comment    9 February 2008, 01:31 GMT

Re: Re: Re: Re: Re: Math Program Ideas
Anthony Gomez  Account Info
(Web Page)

i was looking at this and i noticed that the formula was wrong and that it should be the sqrt (a minus c)^2 + (b minus d)^2

Reply to this comment    14 March 2006, 03:31 GMT

Re: Re: Re: Re: Re: Math Program Ideas
natedog1  Account Info

I like this one, but most teachers want an exact answer, so I leave out the out and then write it in radical form.

Reply to this comment    30 May 2006, 14:59 GMT


Re: Re: Re: Re: Re: Math Program Ideas
Groene07 Account Info

: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

Re: Re: Re: Re: Re: Re: Math Program Ideas
Vminch Account Info

Now this is what I'm talking about!!! Perfect! Under 450b / RAM I bet and works for sure. A bit excessive on the paranthesis, but it's a good way to find bugs in programs quickly.

Reply to this comment    10 May 2007, 13:11 GMT


Re: Re: Re: Re: Re: Re: Math Program Ideas
goto Account Info

Why not display the results all at once?

Reply to this comment    8 March 2008, 05:40 GMT

Re: Re: Re: Re: Math Program Ideas
seo k.s  Account Info

mm

Reply to this comment    1 December 2004, 13:55 GMT

Re: Re: Re: Re: Math Program Ideas
Sunny Dattani  Account Info
(Web Page)

hey i made some programs which u might need give me a reply and i could load em um to the site

Reply to this comment    4 April 2005, 22:58 GMT


Re: Re: Re: Re: Re: Math Program Ideas
hobbit2 Account Info

I'm hoping its what I'm looking for

Reply to this comment    18 May 2005, 05:38 GMT


Re: Re: Re: Re: Re: Re: Math Program Ideas
Squishy74  Account Info
(Web Page)

I made a couple programs on the 83+SE. The series of programs are called "mathcheat.zip" in the archive. Hit it up, it's really useful for basic/"advanced" math classes, Geometry, Algebra, and Algebra II. Sooner or later, I'll make one for Calculus as that's what I'll be taking in school next.

Reply to this comment    5 August 2005, 01:58 GMT

Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
joaquin evans  Account Info

HEY can you email them to me?MY email is jackpiser@hotmail.com

Reply to this comment    18 November 2005, 06:36 GMT

Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
General.Weaks  Account Info

send me copies of the programs you made plz. I would really appreciat them kind sir. thank you for your generosity :-)

Reply to this comment    17 April 2006, 23:11 GMT

Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
General.Weaks  Account Info

can you send them to me in a attached email file plz kind sure. i would really appreciate them. :-) also can you email me the text source code for the programs to im currently taking computer sci 1 and i could use that to even more help to figure out this basic programming stuff! :-) my email address is fisher724@hotmail.com

Reply to this comment    17 April 2006, 23:15 GMT


Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
jeb623 Account Info

Can you email me the program at
bboy623@gmail.com

Reply to this comment    16 November 2007, 22:26 GMT

Re: Re: Re: Re: Math Program Ideas
Tucker Holmquist  Account Info

I have a program on my calculator that works for midpoint distance and quadratic formula with imaginary numbers.i can send it to just gimme ur email address

Reply to this comment    6 October 2005, 16:38 GMT

Re: Re: Re: Re: Re: Math Program Ideas
joaquin evans  Account Info

HEy can yoyu seed them to me ? thanks email jackpiser@hotmail.com

Reply to this comment    18 November 2005, 06:38 GMT

Re: Re: Re: Re: Re: Math Program Ideas
matt kerfoot  Account Info

can you send me them and the quadratic formula please , need quadratic by tuesday night

Reply to this comment    22 November 2005, 03:46 GMT

Re: Re: Re: Re: Re: Math Program Ideas
General.Weaks  Account Info

can you send them to me in a attached email file plz kind sure. i would really appreciate them. :-) also can you email me the text source code for the programs to im currently taking computer sci 1 and i could use that to even more help to figure out this basic programming stuff! :-) my email address is fisher724@hotmail.com

Reply to this comment    17 April 2006, 23:17 GMT


Re: Re: Re: Re: Re: Re: Math Program Ideas
yellowPig Account Info

can't you just write a program like that?

Reply to this comment    2 May 2006, 05:23 GMT


Re: Re: Re: Re: Re: Re: Re: Math Program Ideas
Daniel Wojnar  Account Info

exactly!

Reply to this comment    18 August 2006, 00:00 GMT

Re: Re: Re: Re: Re: Math Program Ideas
Sunceirrae  Account Info

I really need a midpoint, distance and any new basic programing for a TI-83 plus. I am new at learning how to program my TI. please e-mail me with programs
lewis121@cox.net

Reply to this comment    19 September 2006, 15:07 GMT


Re: Re: Re: Re: Re: Math Program Ideas
sg_18 Account Info

can I get the quadratic formula please?
chica.loco@gmail.com
thanks!

Reply to this comment    9 October 2007, 00:22 GMT

Re: Re: Re: Re: Math Program Ideas
ron2005brown  Account Info
(Web Page)

i have a program called XYhelper. i will post it.

Reply to this comment    11 October 2005, 00:06 GMT

Re: Re: Re: Re: Math Program Ideas
bmcdon0954 Account Info

I have made a functional quadratic formula program that finds real and imaginary roots (although it requires a small amount of thinking). The script goes as fallows:

REMINDER: Use the negative (-) sign when needed. Don't always use subtraction sign. Also all i's represent the value i not the letter. The value i is the 2nd function of the (.) key. In the script SQROOT means the square root function which is the 2nd function of the x^2 key.

:Disp "A"
:Input A
:Disp "B"
:Input B
:Disp "C"
:Input C
:(B^2+(-4*A*C))->F
:If F<0
:Then
:Disp "A + OR - SQROOT(B)i"
:Disp "OVER C"
:Disp -B,abs(f),(2*A)
:Else
:Disp "A + OR - SQROOT(B)"
:Disp "OVER C"
:Disp -B,F,(2*A)
:Disp "SIMPLIFY?"
:Disp "YES=1 NO=2"
:Prompt P
:If P=1
:Then
:(-B+SQROOT(F))/(2*A)->D
:(-B-SQROOT(F))/(2*A)->E
:Disp D,E
:Else
:End

Questions, comments, or problems email bmcdon07@yahoo.com

Reply to this comment    9 November 2005, 21:30 GMT

Re: Re: Re: Re: Re: Math Program Ideas
matt kerfoot  Account Info

will you E-mail me all the formulas that you know, and just a quadratic formula not including imaginary numbers plaese.my email is kerfoot36@aol.com

Thank you

Reply to this comment    20 November 2005, 17:50 GMT

Re: Re: Re: Re: Re: Math Program Ideas
Joi Mobley  Account Info

Is this program for an TI-83, because when I tried to do the A+ or -SQROOT(B) it said Error:Syntax?

Reply to this comment    16 December 2005, 01:30 GMT

Re: Re: Re: Re: Re: Math Program Ideas
Daniel Zamler  Account Info

I need to know how to put in an equals sign and a greater than sign if anyone can help

Reply to this comment    17 February 2006, 02:19 GMT


Did you check the manual?
Radical-Pi Account Info

2nd-Math-1
Equals sign

2nd-Math-3
Greater than sign

Reply to this comment    18 February 2006, 01:03 GMT


Re: Did you check the manual?
Daniel Zamler  Account Info

thanks

Reply to this comment    2 March 2006, 22:16 GMT

Re: Re: Re: Re: Re: Math Program Ideas
Daniel Zamler  Account Info

in the 12th line it says abs(f) does that mean the letter f or is their something special to it?

Reply to this comment    2 March 2006, 21:48 GMT