| Name | Description | Size | Visibility | ||
|---|---|---|---|---|---|
|
Defines function prime(lower, upper) that finds all prime values from lower limit to upper limit.
|
384 Bytes | Public |
|
||
|
This script will take a number in any base (2-16), and convert it to another base (2-16).
Method: First, it converts all numbers (regardless of the goal) to base 10. Then it will either return the base 10 value it that is the goal, or converts to the target base.
Because a crucial part of this script is to convert all numbers to base 10, the script will return the base 10 conversion AND the desired conversion, if base 10 is not the goal nor the initial base.
This script has two functions defined, convert_to_10 and convert_from_10. These two functions are helper functions that do the mathematical computation converting numbers to and from base 10.
|
1.62 KB | Public |
|
||
|
Defines function converse(a,b,c). Input 3 sides of a triangle to determine if a triangle is a right triangle, acute, or obtuse.
|
176 Bytes | Public |
|
||
|
Use function diceroll(n) to roll n number of dice. This function will report how many of each side is rolled.
|
623 Bytes | Public |
|
||
|
|
218 Bytes | Public |
|
||
|
This script will allow you to draw n-number of cards from a standard 52 deck of cards.
Use the function draw_cards(n) to drawn cards until all 52 cards have been drawn.
To reset the deck. Use function reset() to put all drawn cards back into the deck.
|
937 Bytes | Public |
|
||
|
|
2.04 KB | Public |
|
||
|
This script will allow you to approximate a solution to a differential equation using Euler’s method.
When inputting your dy/dx you must explicitly define every operation
Examples of inputting different dy/dx are below:
if dy/dx = 2x/y then input 2*x/y
if dy/dx = 0.5x+y then input 0.5*x+y
Watch a tutorial at : https://youtu.be/Q9BwmdPH9-M?si=O26JjlLRm4A3En69
|
2.85 KB | Public |
|
||
|
|
125 Bytes | Public |
|
||
|
Use function flipcoin(n) to flip n number of coins. Get total number of heads and tails from each n number flips.
|
284 Bytes | Public |
|
||
|
|
104 Bytes | Public |
|
||
|
|
256 Bytes | Public |
|
||
|
|
178 Bytes | Public |
|
||
|
This script runs automatically. If loaded to your calculator you not import it to your shell automatically.
Calculates a Leftriemannsum of a set of points.
First input your x-values in a list
Example: 1,2,3,4
Then input your y-values in a list
Example: 1,4,9,16
See sum, and graph.
|
1.12 KB | Public |
|
||
|
|
1.75 KB | Public |
|
||
|
|
1.12 KB | Public |
|
||
|
This script takes two points and compute the slope between two points
|
270 Bytes | Public |
|
||
|
|
125 Bytes | Public |
|
||
|
This script will allow you to generate a slope field for a given dy/dx on the x and y axes [-3, 3].
When inputting your dy/dx you must explicitly define every operation
Examples of inputting different slopes are below:
if dy/dx = 2x/y then input 2*x/y
if dy/dx = 0.5x+y then input 0.5*x+y
Watch a tutorial at https://www.youtube.com/watch?v=bT391K229Bs
|
2.75 KB | Public |
|
||
|
|
238 Bytes | Public |
|