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
|
TI-Trizo911
|
Can someone plz streer me in the rght direction for solving simotanious equations and also simple one variable equations. Such as 2x-5=11. i want the program to prompt me for the equation then solve it.
thanks
|
|
10 April 2006, 19:33 GMT
|
|
Re: Math Program Ideas
|
cool776
(Web Page)
|
sorry for my stupidity, but what is the difference for assembly and basic?
|
|
17 April 2006, 02:03 GMT
|
|
Re: Math Program Ideas
|
cool776
(Web Page)
|
does anyone have a program or other way to simplify radicals like 8 = 22
|
|
17 April 2006, 02:07 GMT
|
|
Re: Math Program Ideas
|
singermarina
|
Hi everyone....I'm looking for programs dealing with sequences and series for Calculus BC....any ideas?
Thanks
|
|
17 April 2006, 22:47 GMT
|
|
Finding GCF
|
moser
|
Does anybody have a program for a 73 that can find GCF of two numbers? I am supposed to right one for a class.
|
|
26 April 2006, 14:25 GMT
|
|
Finding GCF
|
moser
|
Does anybody have a program for a 73 to find the GCF of two numbers?
|
|
26 April 2006, 14:46 GMT
|
|
Vectors
|
Terra
|
I like to use TI-BASIC, and I was wondering how dou you make vectors with BASIC.
HELP!!!!! lbrogan2@gmail.com
|
|
27 April 2006, 02:54 GMT
|
|
Re: Math Program Ideas
|
Homer Simpson
|
Does anyone have any easy programs that could help with the SAT. Plus, if you have programs to figure out angles and sides using law of sines.
PS- Could you type it out so that it is step by step, I'm a beginner and I don't have the wire to upload the program from the Archive.
|
|
21 May 2006, 05:41 GMT
|
|
Re: Math Program Ideas
|
Homer Simpson
|
Does anyone have any easy programs for TI-83 Plus that would help with the SAT. Plus, if you have any programs that can find sides and angles using laws of sine.
PS - Could you please type it out like step by step. I'm a beginner and don't have the wire to upload the programs from the archive.
Thanks
|
|
21 May 2006, 05:48 GMT
|
|
|
|
|
Re: Re: Math Program Ideas
|
yellowPig
|
I'm not going to type out the whole thing. But here's a start, and I'm sure you can figure out the rest.
Normally, I'd use a menu function, but you said you're a beginner, so I'm going to show you how to do one program for each function.
Input "angle A", A
Input "angle B", B
Input "side B ", E
(E/sin(B))sin(A)->F
Disp "side A"
Disp A
You can input other things and output other things, using either if-then statements or separate programs. I would recommend the former, although if you don't want to write programs that long, then just create like nine different programs.
You can use the law of cosines, too.
|
|
30 May 2006, 02:52 GMT
|
|
Re: Math Program Ideas
|
Felipe Salazar
|
I been trying to figure out how to be able to scroll right of the prgrmIO screen, because sometimes when an list is displayed in my program it does not display completely and part of it is right of the screen (which I cant scroll to).
Browsing through old posts here,I saw someone that also asked this a while ago but no one answered. Hopefully someone can answer this to me... I mean I am sure this happens to a lot of people but somehow they seem to know the answer. Thanks in advance.
|
|
7 July 2006, 19:41 GMT
|
|
Re: Math Program Ideas
|
chemman1
|
Hello everybody!
I would be very pleased if someone directs me towards the mathematical techniques that are used to solve puzzles.
|
|
28 July 2006, 09:06 GMT
|
|
Re: Math Program Ideas
|
PaintBaller52
|
Does anybody have and/or know how to make a program that alows me to divide a trinomial by a binomial?
|
|
31 July 2006, 23:56 GMT
|
|
Re: Math Program Ideas
|
b GONZALEZ
|
I need some help, I'm trying to see if there's a way to write a program that reads feet and inches (fractions).
|
|
29 August 2006, 13:03 GMT
|
|
Re: Math Program Ideas
|
axonn
|
i was wondering
if there is any way to make a program that will reverse the digits of any number
ex: 3425 becomes 5243
|
|
8 September 2006, 20:41 GMT
|
|
reverse
|
axonn
|
i need a program that reverses the digits of any number
ex: 321 to 123
|
|
8 September 2006, 20:51 GMT
|
|
|
|
|
Re: reverse
|
SagazLegend
|
Took me a good 10 minutes, not to hard...
Clrhome
1->T
1->M
0->C
Input "Number",A
While A/M>1
M*10->M
C+1->C
If C>16
Stop (Because then you'd get an error, not enuf space on screen to fit 17 chars. you can add stuff here if you want like an error message)
End
For(J,1,C+1
iPart(A/M->L
A-L*M->A
M/10->M
L->L1(J
End
For(J,C+1,2,-1
Output(8,T,L1(J
T+1->T
End
Pause
Stop (Optional)
|
|
18 May 2007, 00:28 GMT
|
|
Re: Math Program Ideas
|
kahloon94
|
Good program for distance, slope, midpoint.
:ClrHome
:Disp "(x1,y1)"
:Disp "Enter x1"
:Input A
:Disp "Enter y1"
:Input B
:Disp "(x2,y2)"
:Disp "Enter x2"
:Input C
:Disp "Enter y2"
:Input D
:(A+C)/2 STO E
:(B+D)/2 STO F
:Disp "X Is",E
:Disp "Y Is",F
:Pause
:(B-D)STO G
:(A-C)STO H
:If H=0
:Then
:Disp "Infinite Slope"
:Goto A
:End
:(G/H)STO I
:Disp "Slope Is",I
:Lbl A
:SQRT((H*H)+(G*G))STO J
:Disp "Distnace is",J
|
|
9 September 2006, 14:52 GMT
|
|
Re: Math Program Ideas
|
matrixman16
|
Can anyone post the code for a program that solves systems algebraically by substitution and Elimination for two equations. For example:
3x + y=15
2x + y=11
|
|
13 October 2006, 19:58 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.
|