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
TI-Trizo911  Account Info

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  Account Info
(Web Page)

sorry for my stupidity, but what is the difference for assembly and basic?

     17 April 2006, 02:03 GMT


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

and what is the asmcomp function do (i did exactly what it said in the manual and it returned a syntax error).

     20 April 2006, 03:52 GMT


Re: Re: Re: Math Program Ideas
Jonah Scheinerman Account Info
(Web Page)

Assembly (ASM) is a language compiled on the computer and then sent to the calc where it cannot be edited. It is faster but potentially more dangerous. Here the on calc functions:
AsmPrgm: First line of an ASM prgm
AsmComp(prgmname,prgmname2): This compiles an ASM program on the calc and stores it in to the prgmname2.
Asm(prgmname2): This runs a compiled ASM program.

     9 February 2007, 17:00 GMT

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

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

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

Does anybody have a program for a 73 to find the GCF of two numbers?

     26 April 2006, 14:46 GMT

Vectors
Terra Account Info

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

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

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

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

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

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

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

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

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

i need a program that reverses the digits of any number

ex: 321 to 123

     8 September 2006, 20:51 GMT


Re: reverse
SagazLegend  Account Info

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

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

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

Re: Re: Math Program Ideas
matrixman16 Account Info

Also if anyone knows any websites that give just pure code and not downloadable programs, please post it up

     13 October 2006, 20:09 GMT


Re: Re: Math Program Ideas
Jonah Scheinerman Account Info
(Web Page)

I think this should work.
I'm gonna check it on my calc.

ClrHome
Disp "AX+Y=B"
Disp "CX+Y=D"
Prompt A,B,C,D
B-D→θ
A-C→Z
C/A→X
AX→W
B-W→Y
ClrHome
Disp "X=",X
Disp "Y=",Y

-----
3.1415926535897932384 62643383279502884197
169399375105820974944 59230781640628620899

     1 December 2006, 03:04 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