Ask Your Question

ianncunha's profile - activity

2021-06-08 23:52:17 +0200 received badge  Popular Question (source)
2020-09-05 18:32:53 +0200 received badge  Popular Question (source)
2019-05-13 19:52:54 +0200 commented answer Infinite polynomial ring with several index

Yeah, I thought of that. But I would like to know if there is any way to put a function (or something) that returns in the form x_a_b, for a infinite set.

By the way, is easy (but not so good-looking) to define like

def z(a,b):
    z=var('z_%d_%d' %(i,j))
    return z
2019-05-13 19:41:31 +0200 commented question Infinite polynomial ring with several index

Nice! If you can send it to me it would be great!

2019-05-11 22:53:24 +0200 received badge  Nice Question (source)
2019-05-10 20:54:43 +0200 asked a question Infinite polynomial ring with several index

I know it's easy to create a infinite polynomial ring:

R.<y>=InfinitePolynomialRing(ZZ)

But how can I make a infinite polynomial ring with variables indexed by pairs, like x_(a,b)?

2019-05-07 20:25:27 +0200 received badge  Scholar (source)
2019-05-07 20:25:23 +0200 received badge  Supporter (source)
2018-03-11 10:53:15 +0200 received badge  Student (source)
2018-03-10 19:06:19 +0200 commented answer Cant find matrix kernel

Nice! Thak you!

2018-03-10 10:40:36 +0200 asked a question Cant find matrix kernel

I have a symbolic matrix at the start and I use the determinant to find roots, ok. But when I input some solution of the determinant equation in the matrix again, sage is not able to find the kernel (null space). Here's my atempt:

A=matrix([[x^2,-1.75*x,0],[-1.75*x,x^2,2.07*i*x^2+4.65*i],[0,2.07*i*x^2+-4.65*i,x^2]])
sol=solve(A.det(),x,solution_dict=True)
A.subs(x=sol[0][x]).right_kernel_matrix()

My output is simple:

[]