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
- Host: GitHub
- URL: https://github.com/bubner/ti84-plus-ce-python
- Owner: bubner
- Created: 2025-01-31T10:15:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-24T12:35:26.000Z (about 1 year ago)
- Last Synced: 2025-03-24T13:31:07.549Z (about 1 year ago)
- Topics: python, ti-84-plus-ce
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.