| |

Base 10->Base N
This program converts numbers in base 10 to any
other base. The results are displayed and also stored in list
variable L0. |
 |
 |
Note: Because of limitations
on what can be displayed, digits for bases larger than 10 are not
displayed using letters as is the custom normally. For example, the
hexadecimal result 8A9C would be displayed as {8,10,9,13}. It is up to the
user to convert to letters. |
 |

Base N->Base 10

HCF Finder
This program finds the highest common factor of two
numbers. |
|
 |
|
 |

Num Sequences
This program creates a list containing the most
commonly used sequences in mathematics classrooms: the squares, triangular
numbers, Fibonacci numbers and the primes. The list can be of any length
wanted but memory may become a problem for very long choices and the time
increases fairly drastically beyond 100. |
|
 |
Note: The primes are
represented by placing a 1 (prime) or a 0 (non-prime) next to the number.
Matrix M0 is used as temporary storage for the
list, and is deleted once finished. |
 |

Prime?
This program checks to see if a number is
prime. If not then the first factor found is displayed. |
|
 |

Prime factors

Prime List
This program creates a list of prime numbers,
storing them into list variable L0. It is a fairly time consuming process
so you need to be patient. To see the list you need to change into the
List Catalogue and EDIT list L0. |

 |

 |

|