Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

coefficient() with composite variable

Say I have something like this:

var('a','b','c')
test=b*a + c*a + 3*a + b + c

I can find that the coefficient of 'a' is (b+c+3) using:

test.coefficient(a,1)

However, I am interested in find the coefficient of ab (which in this case would just be 1). I tried

test.coefficient(a*b,1)

but it just returns zero. Is something like this possible?