Type in a list with numbers (like "5, 7, 9, 4, 3, 2, 1, 0, 11, 12, 6, 3, 4, 3, 2, 6" or "8.4+9.4+14.2+5.6+8.3+9.0+10.2") and the mean absolute deviation (mad for short) and mean will be calculated.
I reused the beginning code of https://scratch.mit.edu/projects/1168571636 for the list setup. Mean is a method of averaging that involves adding up a list of numbers, then dividing the sum by the number of numbers. Mad is a measure of variation that involves taking the mean of a list of numbers, then finding the difference between the mean and each number, then finding the mean of all those differences. I made this because calculating mad for schoolwork is a pain.