ilikescience94 said:
Could you or someone elaborate slightly on the (3:3) notation you used?
It is probably not worth the effort trying to understand the notation as the method I outlined in #9 is more straightforward and the method mentioned by TheDuck in #8 is vastly superior again. For me it was just a curiosity that velocity addition could involve a method that involved finding all the possible permutations* of the velocities.
Your choice of (3:3) is not particularly instructive as there is only one unique way of choosing 3 items from a total of 3 items so that v(3:3) = (v1*v2*v3).
The first step of evaluating for example v(4:2) is to find all 6 unique ways of choosing a subset with 2 velocities from the total choice of 4 velocities with no repetitions, duplications and where order is not important. If we have a list of 4 velocities, (a,b,c,d), then this step can be automated by entering "subsets (a,b,c,d) with length 2" into
the Wolfram alpha website.
The result is: {a, b} | {a, c} | {a, d} | {b, c} | {b, d} | {c, d}
The final step is to multiply all the elements in each subset and then add all the subsets together so that:
v(4:2) = (a*b)+(a*c)+(a*d)+(b*c)+(b*d)+(c*d)
For v(3:2) there are 3 velocities (a,b,c) and the possible unique combinations are {a, b} | {a, c} | {b, c} so v(3:2) = (a*b)+(a*c)+(b*c).
I have already given an example for v(4:3) so hopefully that is enough to be going on with.
I am interested if your interest is mathematical or perhaps you are trying to create an algorithm for a software project? If that is the case, the simplest approach is probably to just iteratively apply the standard relativistic velocity addition one velocity at a time in a loop. A similar approach would work just fine in a spreadsheet.
*More precisely "combinations" rather than permutations.