Ask Your Question

MarioM's profile - activity

2024-03-15 12:42:02 +0200 received badge  Famous Question (source)
2024-03-15 12:42:02 +0200 received badge  Notable Question (source)
2023-11-10 23:02:05 +0200 received badge  Notable Question (source)
2023-04-26 07:55:57 +0200 received badge  Popular Question (source)
2021-06-12 07:13:42 +0200 received badge  Popular Question (source)
2020-11-10 23:18:20 +0200 received badge  Popular Question (source)
2019-01-09 01:03:52 +0200 asked a question Identity in a quotient Group

Hello everyone, I have the following groups

F3.<a1,b1,a2,b2,a3,b3> = FreeGroup()
H3 = F3.quotient([a1*b1/a1/b1*a2*b2/a2/b2*a3*b3/a3/b3])

Then I inject the variables to $H3$

H3.inject_variables()

Now when every element that I write have parent $H3$, but when I write the word a1*b1/a1/b1*a2*b2/a2/b2*a3*b3/a3/b3 this does not return the identity of $H3$, although if I put

a1*b1/a1/b1*a2*b2/a2/b2*a3*b3/a3/b3 == H3.one()

this is true. Does anyone know why this happen and how can I get sage to reduce this word to identity of $H3$?

2018-11-29 17:33:14 +0200 received badge  Scholar (source)
2018-11-29 16:50:57 +0200 commented answer remove_vertical_border_strip

Thank you Samuel, that should work.

2018-11-26 18:27:43 +0200 commented question remove_vertical_border_strip

When you use partitions a "border strip" is a partition which diagram has no two cell in the same column(horizontal) or not in the same row(vertical). In Sage with partitions you can do remove_horizontal_border_strip which returns the partitions obtained from self by removing an horizontal border strip of length k. For example Partition([5,3,1]).remove_horizontal_border_strip(1).list() [[5, 3], [5, 2, 1], [4, 3, 1]]

2018-11-26 03:40:52 +0200 asked a question remove_vertical_border_strip

Hello, I'm interested to know if there is a way to define the analoge of remove_horizontal_border_strip(k) which returns the partitions obtained from self by removing an horizontal border strip of length k.

For example:

Partition([5,3,1]).remove_horizontal_border_strip(1).list()
 [[5, 3], [5, 2, 1], [4, 3, 1]]

but for vertical border strip.

2018-09-04 16:38:43 +0200 commented answer subs a list with another list

Thank you!

2018-09-04 16:36:37 +0200 commented answer How to get a list of the combinations such that the elements are equal to some $n$

Thank you i will see the documentation

2018-09-04 06:33:34 +0200 asked a question subs a list with another list

I define

x = [var('x_%d' % k) for k in range(p)]
y = [var('y_%d' % k) for k in range(p)]
z =x + y
PRz = PolynomialRing(QQ,z)

with $p$ arbitrary, then I need new variables, to comare polynomials, define as:

t = [z[k] + 1/z[k] for k in range(p)]

Is there a way to substitute the list of variables $z$ with the list of varialbes $t$? The only way that I could do it was as

polynomial.subs(y_0 = t[0]/2, y_1 = t[1]/2, y_2 = t[2]/2, y_3 = t[3]/2)

But I want it for a general number of variables.

Thanks

2018-09-04 03:46:34 +0200 received badge  Supporter (source)
2018-09-04 03:45:31 +0200 asked a question How to get a list of the combinations such that the elements are equal to some $n$

I want a generalization of this kind

[(r1, ..., rk) for r1 in range(n+1) ... for rk in range(n+1) if r1 + ... + rk = n]

For a general number of $r$'s and any $n$

2018-07-06 02:30:36 +0200 asked a question How to skip a single loop iteration

I have the following code:

 for k in range(9):
    if k != 3:
        print(k)
    else:
        print(20)
        # i want to skip the next iteration

So I want to get: 0,1,2,20,5,6,7,8, here I skip the fourth iteration. I already try to use the command next(), but it doesn't give what I want

2018-06-20 05:58:05 +0200 received badge  Student (source)
2018-06-19 03:39:48 +0200 asked a question Direct sum for tensor product of CombinatorialFreeModule

Problem: Given a finite free resolution C of $\mathbb{Z}$ over $\mathbb{Z}G$ I would like to consider the free resolution $C \otimes C$. Then of course in this new resolution I'm going to have direct sums of tensor products. In sage I'm working with CombinatorialFreeModule, there is a way to defining a direct sum over CombinatorialFreeModule_Tensor?

Thanks in advance.

2018-06-18 00:11:40 +0200 asked a question syllables on symbolic expression

If I have a symbolic expression, is there a way to obtain, something like the syllables of this expression in the way as in elements of a FreeGroup?

2017-12-09 19:40:18 +0200 received badge  Editor (source)
2017-12-09 18:51:46 +0200 asked a question can sage identify poles in or out the unit disk

i want to calculate residues on the unit disk, but in the factorization of the functions i work with i have roots or poles in and out the unit disk but i'm interested only in the ones inside the unit disk.

f(t)=\frac{1}{t^{-1}(t-z_1)(t-z_2)}, |z_1|<1<|z_2|,

There is a way that sage identify the poles i want and work with those?