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
steve pitman  Account Info

Looking for someone to help program a application for my work itll be beneficial to more then just me. looking for simple interface, e6b flight calculator and some other calculations i need to perform my job easier. email me

     19 September 2010, 22:10 GMT

Re: Math Program Ideas
bobti83 Account Info

I recently got tired of doing the extra steps of finding slopes in Basic Algebra, so here is SLOPEFINDER for the TI-83 Plus:

ClrHome
Output(8,1,"SLOPEFINDER")
Input "X1:", A
Input "Y1:", B
Input "X2:", C
Input "Y2:", D
Output(7,1,"SLOPE IS:")
Output(8,1,(A-C)/(B-D))

     28 September 2010, 18:47 GMT

Decimals
Woodland Account Info

Hey, I use the TI-84+ and I am trying to create a program that will let me display more then 9 decimal places without scientific notations... How may I approach this? Fix 10+ results in errors...

     16 December 2010, 05:57 GMT

Re: Math Program Ideas
USCG89 Account Info

Can anyone help me in sharing or creating a program for the TI-84 Plus Silver edition that has to do with adding and subtracting time.
Thanks.

     8 March 2011, 21:32 GMT

Re: Math Program Ideas
mccontre Account Info

I am looking for a program that solves Catenary problems. I have looked in the archives but was unsuccessful.

     28 April 2011, 03:44 GMT

Re: Math Program Ideas
Sierpinski Account Info

I'm thinking of a program that can calculate pi but I just can't get it right. Any thoughts?

     11 May 2011, 01:26 GMT

Update to Pythagorean Theoreom
BluePhoenix Account Info

I have found a way to shorten the amount of math you have to do in order to solve the Pythagorean Theoreom using this program:

:Prompt A,B
:√(A²+B²)→C
:Disp"HYPOTENUSE IS",C
:

I hope it helps.

     22 September 2011, 19:29 GMT

Re: Math Program Ideas
Michael Scott  Account Info
(Web Page)

I have a request/need help. Maybe this program exists already, but I have searched and could not find one at all! First off, I am on a TI-84. I want a program that can write a quadratic function for a parabola. An equation in vertex form looks like y=a(x-h)^2+k. You would have to plug in the points you see on a parabola. In this case, I 3,2 and the vertex is 1,-2.

Does anyone have a way to do this? So you would just plug in the points via a prompt and it would show the completed equation. Is anyone here capable of such a task? One other thing that goes along with this is a little harder/ You would need to write a quadratic function in standard form for a parabola that passes though 3 points. Has anyone does this or can someone do this?

As a quick background on me, I understand how to code in python, c,and php. I am still getting used to the ti84/basic programming.

If someone can help with this it would be much appreciated. Just reply here or to supermike615@gmail.com

Thanks!

     28 November 2011, 05:24 GMT

Re: Math Program Ideas
Andrew Dalzon  Account Info

Anyone have an idea for a program that finds orthocenter on a Ti-84+Silver?

     13 December 2011, 05:45 GMT

Re: Math Program Ideas
Suiciden Account Info

I would really like a problem that gives exact radical fractions. Like, if you divide 2sqr5 for 3sqr4, there's it no problem that solves it. I'd like a program that show the exact answer: sqr5/3

     7 January 2012, 16:18 GMT

Re: Math Program Ideas
weilers484 Account Info

I have a TI-nSpire CAS and am looking for a program that will solve linear programming problems. Inputs would be the objective function, constraints (inequalities), whether you want to maximize or minimize the objective function. Then, push a button and whiz-buzz, the answer appears with the x-y coordinates of the vertices in the feasible region of the inequality graphs. Most computer programs use what is called the Simplex Method for solving these optimization problems and I just don't know enough about programming the nSpire or the Simplex Method to do this myself.

     25 February 2012, 00:18 GMT

Re: Math Program Ideas
weilers484 Account Info

DOes anybody know of , or written, a program for the TI-nSpire CAS that can maximize or minimize an objective function given it's constraints

     25 February 2012, 14:59 GMT

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

Hi, I am trying to get a group together to create an epic, all-encompassing high school physics app for the TI-83/84 family of calculators. In essence I plan it to be a rich, formula manager that will solve and manage equations for you. If you are interested, I am creating a site to share files and such on- you can contact me through the site listed in the URL field. Thanks!

     18 April 2012, 20:49 GMT

Re: Math Program Ideas
needtoknow Account Info

can anyone help me with how to write a program that could find a nth term in a recursive.

     28 April 2012, 17:50 GMT

Re: Math Program Ideas
OMlEGA  Account Info

Anyone for a Greene's theorem program??

     10 June 2012, 22:22 GMT

STAAR sheet
will hat  Account Info
(Web Page)

I am making a 9th. grade STAAR sheet that is totally interactive.

     7 September 2012, 15:48 GMT

Help, Please?!
Kyle Lanmon Account Info

I am trying to make a program that will tell me the equation of a line that passes through two points. I want to do it by finding the slope and then using the point-slope formula. If there is an easier way to do it, tell me! This code is not giving me the right answers.
Here is the code I have:

Input "X1=",A
Input "Y1=",B
Input "X2=",C
Input "Y2=",D
ClrHome
(D-B)/(C-A)->E
E*A->F
F+B->G
Output(4,1,"Y="
Output(4,3,E
Output(4,6,"X-"
Output(4,8,G

     16 September 2012, 04:07 GMT

Re: Math Program Ideas
arno callens Account Info

Hi there!

Is there a program that 'convert' a formula? (A=B*C => B=A/C)
But with more opportunities for longer formula's. It's just to check if I'm correct. Sometimes I could miss in it by distractibility ... :))

Thx A Lot!! (I hope this forum is still active ... ^^)

     20 November 2012, 16:59 GMT

Re: Math Program Ideas
noah bravo  Account Info

Who knows how to make a program for a polynomial function
for example
p(a+1)=5(a+1)-(a+1)^2 + 3(a+1)^3
=...
=...
=...
=3a^3 + 8a^2 + 12a + 7

     10 February 2013, 20:40 GMT

Re: Math Program Ideas
Bill Guthrie  Account Info

I'm attempting to write a program involving solving elements of a curve. I'm new to programming and after reading 2 books on the subject I'm still having trouble getting off the ground with it. I'd like to set it up something like
1. Length of Curve
2. Tangent Distance
3. Chord Length
4. External Distance
5. Middle Ordinate
I'm using a TI84 plus C and any help will be greatly appreciated. thanks in advance.

     27 July 2013, 19:19 GMT

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

"Eureka the solver" a Borland program from the early 90's. It would be nice if this software could be converted to TI calculators
Especially the solver functionality is brilliant.
The graphing function could be integrated with the already available graphing on the TI calculators.

It is by far the most compact and most complete package of math solver functionality that i have ever seen.

Others have more and look better but consume hundreds of megabytes. This one was created to fit on a diskette (<1.44mb) leaving out graphing and some other already availaible functionality might reduce the size to TI84 compatible size.

     28 January 2014, 12:00 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.

  Copyright © 1996-2012, the ticalc.org project. All rights reserved. | Contact Us | Disclaimer