Cutting a string at 'n' positions in any order will yield same cut pieces. Is there any standard mathematical proof which supports this ?
For example say "elephantsinforest" is the string.
Cutting the string at id cut positions in increasing order (5,9,12) yields {eleph, ants, inf, orest} chunks.
If we consider string id cut positions in a random order (9, 5, 12) yields {eleph, ants, inf, orest} chunks.
If we consider string id cut positions in decreasing order (12, 9, 5) yields {eleph, ants, inf, orest} chunks.
So whatever the cut id position ordering, we ultimately end up with same set of cut string chunks. How can we prove this mathematically? Can any one suggest how to prove this mathematically or are there any standard exisiting proofs for the given context ?