Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Mistake in description of TnI: States that TnI means "the inversion of the transposition" - formula shows it to be the other way around, transposition of the inversion
I think Inversion process is not properly described:
[1,2,3], "T11" -> [0,1,2] (ok for me)
So, if inversion(I) subtract each element of the list from twelve., how would:
[1,2,3], "T11I" -> [8,9,10] ?
First:
[1,2,3], "T11" -> [0,1,2]
Then:
[0,1,2] -> "I" -> [(12-0)%12, (12-1)%12, (12-2)%12] -> [0, 11, 10] (sorted: [0,10,11], but no way to get [8,9,10])
Or not?