Search
Personal Menu
Personal Menu
Free Shipping on watch orders over $99!
Please sign in or create an account with CASIO to access MicroPython programs.
PLEASE READ:
By downloading and using these sample programs, you acknowledge and agree to the SOFTWARE LICENSE AGREEMENT and GNU General Public License. If you do not agree to these terms, do not download these sample programs.
A simple quadratic formula program that will find the roots of any equation with a discriminant that is positive.
Enter the coordinates of any two points. The program will output the slope, y-intercept, and the equation of the line in slope-intercept form.
Given an endpoint and a midpoint, the program will find the other endpoint.
Find the Greatest Common Divisor and the Lowest Common Multiple between any two numbers using an iterative search.
This program will find any roots regardless of the discriminant being positive or negative.
This program gives the user a choice in finding the midpoint given endpoints, or the second endpoint given an endpoint and a midpoint.
Find the midpoint between any two points on the coordinate plane.
This program finds all of the prime factors of any number entered, displayed as a list.
This program is a Reiman sum generator. It will give the value under a curve using the left, right, midpoint, and trapezoid approximations. This is a useful program for first-year calculus students.
This program runs the Collatz Conjecture. If a number is even, it will divide by two. If it is odd, it will multiply by three and add one. The conjecture says that all numbers will eventually go to one. This program will show the Collatz values and also how many iterations it took to reach one as well as the largest value it reaches.