An open API service indexing awesome lists of open source software.

https://github.com/bubner/ti84-plus-ce-python

Python scripts for the TI-84 Plus CE Python
https://github.com/bubner/ti84-plus-ce-python

python ti-84-plus-ce

Last synced: about 1 year ago
JSON representation

Python scripts for the TI-84 Plus CE Python

Awesome Lists containing this project

README

          

# ti84-plus-ce-python

A small collection of Python programs and files to run/stored on the TI-84 Plus CE Python graphing calculator.

To install, drag and drop the desired Python scripts onto the calculator using the TI Connect CE software.

## Programs

### MATHF
A collection of general math functions.

To use, run the program and select the desired function from the *vars* menu.

| Function | Description |
| --- | --- |
| `factors(n)` | Returns a list of factors of `n`. |
| `fib(n)` | Returns the Fibonacci sequence up to `n`. |
| `pascal_row(n)` | Returns the `n`th row of Pascal's triangle. |
| `pascal(n)` | Returns Pascal's triangle up to `n` rows. |
| `binomial_expansion(n)` | Returns the symbolic binomial expansion of `(a + b)^n`. |
| `solve_quadratic(a, b, c)` | Returns the real or complex solutions to the quadratic equation `ax^2 + bx + c = 0`. |
| `fraction(n, d)` | Returns the fraction `n/d` in simplest form. |
| `radical(a, d)` | Returns the simplest form of a radical expression `sqrt(a)/d`. |

### POLYDIV
Performs synthetic or long polynomial division.

To use, run the program and select the desired division method with *1* or *2*.
Enter the coefficients (including the constant term) of the dividend and divisor polynomials when prompted.

### TRIANGLE
Solves triangles with the cosine and sine rules.

### TRIGREF
Collection of trigonometric identities in comments.

### CALCREF
Collection of common differentiation and integration rules in comments.

### UNITCIRCLE
Unit circle of length 1 with display and angle lookup/conversion.