You are not logged in.
Hello, is there a method to least to greatest sorting of numbers when figuring out frequency and percentage? There has to be a faster way without picking from a big table of numbers.
Thank you.
Offline
hi survival,
How have you got the numbers? If they are in a digital format then, yes, a spreadsheet will re-order them and most modern calculators will too. There are also algorithms that can be used to sort them; the easiest to understand is called a bubble sort, which will probably to the job.
But if all you have is a paper list then no such method. You would have to do it the long way I fear.
Bob
Children are not defined by school ...........The Fonz
You cannot teach a man anything; you can only help him find it within himself..........Galileo Galilei
Sometimes I deliberately make mistakes, just to test you! …………….Bob
Offline
The heapsort is logarithmic. Bubblesort and Shellsort are Big-O squared.
The quicksort is logarthmic too I think. The heapsort was fun to program once I did
it in VisualBasic because it was faster than the built-in method provided by the
software collection.
igloo myrtilles fourmis
Offline
Thanks, I guess I will go with the method of picking them out.
Offline
Post them over here and I will sort them for you.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline