- Math Finder
- 12 Sep 2020 04:42:47 pm Permalink
- Last edited by jake01756 on 22 Nov 2020 11:48:44 pm; edited 14 times in total
Math Finder v0.75
Math Finder is a program for the TI 84 Plus CE that can find the volumes and surface areas of geometric shapes. It is still under heavy development but I thought I would share my progress with the Cemetech community. It is written entirely in TI-Basic to ensure that it would work on all OS versions. Originally I was going to write it using ICE Compiler but after consideration I wrote it in TI-Basic. This decision would pay off after TI decided on a whim to remove ASM support. A TI-Nspire CX II/TI-Nspire CX II CAS port might be possible and might happen someday. But that might be far off because of the lack of good programming on it. That lack would require a significant change in the program.
Now for some eye candy:


Screenshots will not be updated as frequently as the program.
It is important to note that it is still a work in progress, as you may have noticed in the gif where the quit option on the main menu throws an error. There were many errors in that one recording, most of which have been fixed. If there are any issues or bugs that you find, please reply below with a explanation. I do plan to continue development, make improvements, and fix bugs.
This is my first project post on Cemetech, so I hope I did everything right.
TODO
Revamp Main Menu - ✅ Done
Replace uppercase text with lowercase text. (74%)
Add surface area functionality to existing formulas.
Add more formulas
Add more screenshots.
Fix errors
Important
(85%)
Add slope formula. - ✅ Done
Rewrite old code.
Update pyramid section. - ✅ Done
Add least common multiple. - ✅ Done
Add greatest common denominator. - ✅ Done
Import newly created icon. - ✅ Done
Features
Finds the volumes of Cylinders, Rectangular Prisms, Cubes, Pyramids, and with more to come.
Finds the surface areas of Rectangular Prisms, Pyramids, Cubes, Cylinders, and with more to come.
Includes Distance, Midpoint, and Slope formulas.
Compatible with your favorite shells! The program even has a Cesium icon.
Compatible with all OS versions 5.3 or newer. (Math Finder might be compatible with OS 5.2.2 but that would significantly degrade your experience.)
Just a reminder before you download, this program is still in beta.
The current version of Math Finder is v0.75 and contains numerous improvements over v0.74.
Download:
http://ceme.tech/DL2028
https://github.com/jake01756/Math-Finder
The GitHub Link may be more up to date then the Cemetech Archives.
Have any feature suggestions? Please leave a comment below, and they might get added.
Here is a small snippet of code:
Code:
I hope you enjoy using Math Finder.
This project is currently on hold.
Math Finder is a program for the TI 84 Plus CE that can find the volumes and surface areas of geometric shapes. It is still under heavy development but I thought I would share my progress with the Cemetech community. It is written entirely in TI-Basic to ensure that it would work on all OS versions. Originally I was going to write it using ICE Compiler but after consideration I wrote it in TI-Basic. This decision would pay off after TI decided on a whim to remove ASM support. A TI-Nspire CX II/TI-Nspire CX II CAS port might be possible and might happen someday. But that might be far off because of the lack of good programming on it. That lack would require a significant change in the program.
Now for some eye candy:



Screenshots will not be updated as frequently as the program.
It is important to note that it is still a work in progress, as you may have noticed in the gif where the quit option on the main menu throws an error. There were many errors in that one recording, most of which have been fixed. If there are any issues or bugs that you find, please reply below with a explanation. I do plan to continue development, make improvements, and fix bugs.
This is my first project post on Cemetech, so I hope I did everything right.
TODO















Features







Just a reminder before you download, this program is still in beta.
The current version of Math Finder is v0.75 and contains numerous improvements over v0.74.
Download:


The GitHub Link may be more up to date then the Cemetech Archives.
Have any feature suggestions? Please leave a comment below, and they might get added.
Here is a small snippet of code:
Code:
Lbl 3
Menu("Cube","Volume",56,"Surface Area",57,"Back",85
Lbl 56
Disp "Cube - v=a*a*a OR"
Disp "V=A^3"
Input "Edge?",A
A^3->V
Disp "Volume is",V
Pause
Menu("Do another?","Yes",56,"No",3)
Lbl 57
Disp "Cube - sa=6A^2"
Input "Edge?",A
6*A^2->V
Disp "Surface Area is",V
Pause
Menu("Do another?","Yes",57,"No",3)
I hope you enjoy using Math Finder.
This project is currently on hold.