ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Programming :: Upcoming Programs :: Upcoming TI-86 Math Programs
Upcoming TI-86 Math Programs

Post updates on your projects here, or give other authors your feedback on their works in progress.

When posting about an upcoming program of yours, please include a link to any relevant information (screen shots, etc.) in the URL field.

To have an entry removed, please Contact Us.

  Reply to this item

Re: Upcoming TI-86 Math Programs
Euler  Account Info

For those interested, I have released a somewhat powerful [beta] computer algebra system for the 86. So far, +, -, *, /, ^, ln, and log functions are fully supported with an experimental sine function. Of course, without a full compliment of trig and hyperbolic functions, it is not as powerful as the other functions. Look for a full trig/hyberbolic release soon and elementary Calculus, e.g. symbolic differentiation, conservative limits, etc. shortly thereafter. The 2.2 version is posted, but will require a separate download for the updated frontend [minor bug fix]. I appologize for the inconvenience. Check it out.

     23 August 2000, 09:17 GMT

Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

Where is it? I looked in the TI-86 Math and couldn't find it.

     20 May 2003, 23:44 GMT


Re: Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

Never mind. I found it in the BASIC math progs.

     2 July 2003, 14:21 GMT


Re: Re: Upcoming TI-86 Math Programs
Steven Z  Account Info
(Web Page)

Where is the updated frontend?

     22 February 2004, 22:43 GMT

Simultaneous Equations Solver
Matt A  Account Info

Tonight I have uploaded my program to solve simultaneous equations. It is only 418 bytes and can theoretically solve for infinite variables. Yes, I realize that there is a built in solver for this in the calculator, but you can't quite get there from any shells that I know of. Check it out,

-matt

     10 November 2000, 01:33 GMT

Re: Simultaneous Equations Solver
Dan Henneberger  Account Info

Cool

     27 January 2001, 00:11 GMT


Re: Simultaneous Equations Solver
burntfuse  Account Info

You can't get to the TI-OS simultaneous equation solver directly from a shell, but you can exit the shell and then go into it. If that takes too long, might even be possible to make a "shortcut" program that calls the simultaneous equation solver code in the ROM.

     14 May 2003, 02:43 GMT

Re: Upcoming TI-86 Math Programs
Dan Henneberger  Account Info

I am creating a good math program

its called Aalpha


Give me some ideas
thanks

     27 January 2001, 00:12 GMT


Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

We need to know what it does before telling you what you should add.

     14 May 2003, 02:43 GMT

Re: Upcoming TI-86 Math Programs
Synapse  Account Info
(Web Page)

i am finishing a 3d grapher in ti86-basic
check my site for updates
if anyone is doing a 3d grapher in asm, tell me!

     20 March 2001, 16:48 GMT


Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

I didn't write one myself, but I found an assembly 3d-grapher, called graph3d, on ticalc.org.

     14 May 2003, 02:36 GMT

Re: Upcoming TI-86 Math Programs
Bradford5 Account Info

I'm working on a math program in assembly for TI-86. I don't know how to do opertations(addition, subtraction, multiplication,....etc.) can someone help me?????

Bradford5

     14 June 2001, 03:45 GMT

Re: Re: Upcoming TI-86 Math Programs
Michael Schuld  Account Info
(Web Page)

To add two numbers in asm you have to first load at east one of them into the a register and the otehr into any other single letter register. This is for small numbers. Larger ones use paired registers and the first one would then have to be hl. then you use the code:

add a,b

this adds a and b and stores the result in a

sub a,b

subtracts b from a and stores the result to a

if you dont know what registers are there is a great tutorial on this site and many others all over the internet. http://www.asm86.cwc.net has a good one.

     20 June 2001, 23:24 GMT


Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

If you want to do math with floating point numbers, there are ROM calls that will do those for you. The equates are in ti86math.inc. You'll need to move the numbers into the OP memory locations. Look at a programming tutorial or something if you don't understand this.

     14 May 2003, 02:37 GMT

New vary handy program for all math types
Michael Schuld  Account Info
(Web Page)

I have completed a program in the basic language called AllMath so far it has these categories:
Algebra:
Ratios
Simplify Radicals
Factor Trinomials (still has a few bugs)
Coordinate Info
Quadratic Solver
Simultaneous Linear Equations
Prime Factors

Geometry:
Surface Area/Lateral Area/Volume/Area of everything
Sectors/Arcs
Regular N-Gon area and perimeter
(uses side,radius, or apothem to find both)
Regular N-Gon angles and # of diagonals

I am working on version 1 of the ASM one and i will be fixing the trinomial factoring in version 2. Currently the BASIC version uses 10.7k Its pretty big and im hoping the asm can shorten it a little (well a lot.) Does anyone have any ideas on what else would be very useful?

     21 June 2001, 21:56 GMT


Re: New vary handy program for all math types
burntfuse  Account Info

Trig identities might be good too.

     14 May 2003, 02:41 GMT

Re: Upcoming TI-86 Math Programs
Wade Tisthammer  Account Info
(Web Page)

I'm coming up with a new and improved Calculus Toolkit.

Here's what it'll do:

The program will feature a tangent line finder (of both explicit and implicit functions), Newton’s method of solving equations and finding zeros, Riemann sums (left-hand sums, right-hand sums, and trapezoid, midpoint, and Simpson’s method plus the option to compute the actual area), differentiate rational functions, analyzing polynomials (find their integrals, derivatives, critical points, and more), Taylor series, find centroid, point analyzer (calculus info of a specific point, including first derivative, second derivative, critical point info, and the tangent line), and a limit finder.

Nice huh?

Alas, methinks it'll get less downloads than the much inferior “Calculus Cheater”

     4 August 2001, 04:12 GMT

Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

I'm writing an assembly program that solves for almost all common geometric formulas, contains a library of them, and also has some utilities. It will come in about 23 programs, one for each formula, and a menu system. I've already got a basic version of this, which I've uploaded about a month ago. (Hasn't appeared yet). The name of this will be Util, version 3.0.

     31 December 2002, 22:48 GMT


Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

I'm not going to finish this prog. I'm instead working on CMath, an assembly program in multiple modules with info on most areas of math.

     24 June 2003, 02:43 GMT

Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

I'm writing an assembly "pretty print" program for the TI-86. I'm almost done writing the code, but because of the complexity, debugging will be almost impossible, so I'll need help. If you're interested in helping with debugging, please e-mail me at straney@umbi.umd.edu.

     14 May 2003, 02:40 GMT


Re: Re: Upcoming TI-86 Math Programs
burntfuse  Account Info

Never mind. I've got debuggers.

     20 June 2003, 19:47 GMT

1  2  3  

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