Email news@statisticool.com to sign up to receive news and updates
Introduction to Random Exercise
3/6/16
(This is the version of the ideas and the article before Weighted Exercise existed. Enjoy!)
What
Random Exercise is my idea about using probability, specifically randomly generated numbers, to improve various aspects of your workout.
Why
Some workout routines can be, well, routine! That is, repetition can lead to a workout that is monotonous and boring, the same over and over. Being a member of a gym, I've observed people doing the same exercises, in the same order, for each workout session. Adding randomness to a workout breaks up the monotony, and allows one to react to and anticipate the unexpected, all while still getting a great workout. In addition, it is more realistic training for the real-life function of some activities, the martial arts for example, where one doesn't have the luxury of knowing what the opponent will do in advance. Incorporating randomness also helps the practitioner use his/her mind more instead of "zoning out".
How
Software that is ran on the computer, which displays text (and ideally sounds and possibly pictures) instructing the practicioner which exercise/technique (used interchangeably) to do. The Random Exercise program has the following "flow"

Some Points
- Exercise profiles can be saved and recalled
In my Profile menu I have a profile consisting of fencing footwork techniques I've learned (retreat, advance, lunge). Some other examples: a profile consisting of several dozen taijiquan techniques if you practice a certain taijiquan form, or a general martial arts profile that consists of three techniques (punch, kick, and knee).
The possibilities are endless! - Techniques to perform are chosen randomly
- Weight for each technique can be modified
For example, if you want to punch twice as much as kick, enter in a weight of 2 for punch, and 1 for kick. If you have knee in your profile, but aren't feeling up to doing knees that day, enter a weight of 0 for knee. - Time for total workout (in minutes) can be modified
- Time between exercises (in seconds) can be modified
I hope others enjoy and benefit from this idea.
Below is a the prototype program I created on my calculator:
probex()
Prgm
ClrIO
Dialog
DropDown "Load Profile:",{"Fencing","Add profile"},g
EndDlog
If g=1: Goto z
If g=2: Goto p
Lbl p
Input "Number of choices?",n
newList(n)->choices
(choices+1)/n->weights
Lbl a
For b,1,n
Input "Choice "&string(b)&":",c
c->choices[b]
EndFor
Goto m
Lbl z
If g=1: {retreat,advance,lunge}->choices
dim(choices)->n
(newList(n)+1)/n->weights
Lbl m
ClrIO
Input "Edit the weights? (Yes-1, No-0)",e
If e=1: Goto b
If e=0: Goto c
Lbl b
ClrIO
For d,1,n
Input "Weight "&string(d)&" ("&string(choices[d])&")"&":",f
f->weights[d]
EndFor
weights/(sum(weights))->weights
Goto c
Lbl c
weights->cweights
weights[1]->cweights[1]
For g,2,n
cweights[g-1]+weights[g]->cweights[g]
EndFor
ClrIO
Input "Number of trials:",t
Input "Delay:",delay
ClrIO
Output 50,80,"S T A R T"
For a,1,500
EndFor
ClrIO
For h,1,t
rand()->r
For i,1,n-1
If r > cweights[i] and r <= cweights[i+1]:choices[i+1]->out
If r > cweights[i] and r <= cweights[i+1]:Goto d
If r < cweights[1]:choices[1]->out
If r < cweights[1]:Goto d
EndFor
Lbl d
For a,1,delay
Endfor
ClrIO
Output 40,80,out
Output 60,80,string(h)&" out of "&string(t)
EndFor
ClrIO
Output 50,80,"F I N I S H E D"
EndPrgm
Please anonymously VOTE on the content you have just read:
Like:Dislike:
Standard exercise disclaimer: The material contained in this article is provided for informational purposes only. Before undertaking any form of exercise, you should consult with your physician. You should be aware if you engage in exercise you are doing so entirely at your own risk, including any present and/or future physical or psychological pain or injury that you may incur. The author of this content cannot assume any responsibility or liability for any injuries or losses that you may incur as a result of acting upon any information provided by this content, or any links to other exercise information found herein.
If you enjoyed any of my content, please consider supporting it in a variety of ways:
- PLEASE take a moment to check out two GoFundMe fundraisers I set up. The idea is to make it possible for me to pursue my passions. My goal is to be able to create free randomized educational worksheets and create poetry on a full-time basis. THANK YOU for your support!
- Email news@statisticool.com to sign up to receive news and updates
- Donate any amount via PayPal
- Take my Five Poem Challenge
- Subscribe to my YouTube channel
- Visit my Amazon author page
- Buy what you need on Amazon using my affiliate link
- Follow me on Twitter here
- Buy ad space on Statisticool.com
AFFILIATE LINK DISCLOSURE: Some links included on this page may be affiliate links. If you purchase a product or service with the affiliate link provided I may receive a small commission (at no additional charge to you). Thank you for the support!