First time here? Check out the FAQ!

Ask Your Question
1

Finding the coefficient of multivariable generating function

asked 1 year ago

jacop gravatar image

I want to find the coefficient of [a3b3c3] in the expansion of [1(a+a21(a+a2)+b+b21(b+b2)+c+c21(c+c2))](1)

I have made research on internet about coefficient of this multivariable generating function, but could not find something valuable. Can you help me to calculate the coefficent using Sagemath ?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 1 year ago

Max Alekseyev gravatar image

updated 1 year ago

For example:

myprec = 10
def f(z):
    t = (z + z^2).add_bigoh(myprec)
    return t/(1-t)

R.<a,b,c> = PowerSeriesRing(QQ,default_prec=myprec)
g = (1-(f(a)+f(b)+f(c)))^(-1)
print( g.coefficients()[a^3*b^3*c^3] )

For small degrees, default_prec= and .add_bigoh() are not really needed but they will speed up things / save memory when degrees of interest are large.

Preview: (hide)
link

Comments

thanks a lot

jacop gravatar imagejacop ( 1 year ago )

@Max Alekseyev , i want to add something. Assume that i want to calculate g = (1-x(f(a)+f(b)+f(c)))^(-1) where print( g.coefficients()[x^9a^3b^3c^3] ). It did not work, how can i handle it ?

jacop gravatar imagejacop ( 1 year ago )

You need to define x first. E.g.:

K.<x> = QQ[]
R.<a,b,c> = PowerSeriesRing(K,default_prec=myprec)
g = (1-x*(f(a)+f(b)+f(c)))^(-1)
Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 1 year ago

Seen: 222 times

Last updated: Aug 10 '23