|
221 | 221 | finite Weyl group to make it more uniform with :class:`SymmetricGroup`.
|
222 | 222 | Added ability to compute the conjugacy classes.
|
223 | 223 |
|
| 224 | +- Amrutha P, Shriya M, Divya Aggarwal (2022-08-16): Added Multimajor Index. |
| 225 | +
|
224 | 226 | Classes and methods
|
225 | 227 | ===================
|
226 | 228 | """
|
227 | 229 |
|
228 | 230 | # ****************************************************************************
|
229 | 231 | # Copyright (C) 2007 Mike Hansen <[email protected]>
|
| 232 | +# 2022 Amrutha P <[email protected]> |
| 233 | +# 2022 Shriya M <[email protected]> |
| 234 | +# 2022 Divya Aggarwal <[email protected]> |
| 235 | +# |
230 | 236 | #
|
231 | 237 | # This program is free software: you can redistribute it and/or modify
|
232 | 238 | # it under the terms of the GNU General Public License as published by
|
@@ -3365,6 +3371,52 @@ def major_index(self, final_descent=False) -> Integer:
|
3365 | 3371 | descents = self.descents(final_descent)
|
3366 | 3372 | return sum(descents)
|
3367 | 3373 |
|
| 3374 | + def multi_major_index(self, composition): |
| 3375 | + r""" |
| 3376 | + Return the multimajor index of this permutation with respect to ``composition``. |
| 3377 | +
|
| 3378 | + INPUT: |
| 3379 | +
|
| 3380 | + - ``composition`` -- a composition of the :meth:`size` of this permutation |
| 3381 | +
|
| 3382 | + EXAMPLES:: |
| 3383 | +
|
| 3384 | + sage: p = Permutation([5, 6, 2, 1, 3, 7, 4]) |
| 3385 | + sage: p.multi_major_index([3, 2, 2]) |
| 3386 | + [2, 0, 1] |
| 3387 | + sage: p.multi_major_index([7]) == [p.major_index()] |
| 3388 | + True |
| 3389 | + sage: p.multi_major_index([1]*7) |
| 3390 | + [0, 0, 0, 0, 0, 0, 0] |
| 3391 | + sage: Permutation([]).multi_major_index([]) |
| 3392 | + [] |
| 3393 | +
|
| 3394 | + TESTS:: |
| 3395 | +
|
| 3396 | + sage: p.multi_major_index([1, 3, 3, 7]) |
| 3397 | + Traceback (most recent call last): |
| 3398 | + ... |
| 3399 | + ValueError: size of the composition should be equal to size of the permutation |
| 3400 | +
|
| 3401 | + REFERENCES: |
| 3402 | +
|
| 3403 | + - [JS2000]_ |
| 3404 | + """ |
| 3405 | + composition = Composition(composition) |
| 3406 | + if self.size() != composition.size(): |
| 3407 | + raise ValueError("size of the composition should be equal to size of the permutation") |
| 3408 | + descents = self.descents() |
| 3409 | + partial_sum = [0] + composition.partial_sums() |
| 3410 | + multimajor_index = [] |
| 3411 | + for j in range(1, len(partial_sum)): |
| 3412 | + a = partial_sum[j-1] |
| 3413 | + b = partial_sum[j] |
| 3414 | + from bisect import bisect_right, bisect_left |
| 3415 | + start = bisect_right(descents, a) |
| 3416 | + end = bisect_left(descents, b) |
| 3417 | + multimajor_index.append(sum(descents[start: end])-(end-start)*a) |
| 3418 | + return multimajor_index |
| 3419 | + |
3368 | 3420 | def imajor_index(self, final_descent=False) -> Integer:
|
3369 | 3421 | """
|
3370 | 3422 | Return the inverse major index of the permutation ``self``, which is
|
|
0 commit comments