Ask Your Question
0

Filtering an expression: keeping only term with even power

asked 2012-10-22 19:26:25 +0200

Nicolas Essis-Breton gravatar image

updated 2012-10-22 20:27:36 +0200

In the expression $$ x^2 y^2+x y^2+x^3y + 5 x^4 y^4 $$ I would like to keep only the term where the variables have even power $$ x^2y^2+5 x^4 y^4 $$

Is there a way to do it?

I look into this post.
But once I get the operands, I don't see how to analyze the variable exponent.

edit retag flag offensive close merge delete

3 Answers

Sort by ยป oldest newest most voted
1

answered 2012-10-22 20:30:05 +0200

achrzesz gravatar image

updated 2012-10-23 03:12:59 +0200

Is that what you need?

var('x y');
p=(5*x^2*y^2+x*y^2+x^3*y+x^4*y^4).polynomial(QQ)          
sum([v[0]*v[1] for v in p if forall(v[1].exponents()[0],lambda x:is_even(x))[0]])
#x^4*y^4 + 5*x^2*y^2
edit flag offensive delete link more

Comments

@archrzesz Exactly what I want, thank you. Is there a way to keep the coefficient of each monomial? For example, return $5 x^4 y^4$.

Nicolas Essis-Breton gravatar imageNicolas Essis-Breton ( 2012-10-22 20:42:54 +0200 )edit

I've edited my answer according to the Nicolas request. Notice that my answer works for many variables. Just change var and p.

achrzesz gravatar imageachrzesz ( 2012-10-23 03:14:50 +0200 )edit

@achrzesz Very flexible approach. Thank you.

Nicolas Essis-Breton gravatar imageNicolas Essis-Breton ( 2012-10-23 07:35:57 +0200 )edit
2

answered 2012-10-23 04:27:21 +0200

calc314 gravatar image

The following also works, although it might not be as flexible as the answer by @achrzesz, which handles things nicely.

x, y = var('x, y')
f(x,y)=x^2*y^2-4*x^2*y+2*y^2+4*x*y^4-3*x^4*y^6
g(x,y)=(f(x,y)+f(-x,y))/2
h(x,y)=(g(x,y)+g(x,-y))/2
h
edit flag offensive delete link more
1

answered 2012-10-22 20:46:14 +0200

calc314 gravatar image

updated 2012-10-22 20:47:32 +0200

Here is an answer using the list command and some list comprehensions.

var('x y')
R.<x,y>=PolynomialRing(RR)
q=x^2*y^2+x+x^2*y+y^2
terms=list(q)
ans=[t[0]*t[1] for t in terms if (t[1].degree(x) % 2)==0 and (t[1].degree(y) % 2==0)]
sum(ans)

This will also keep the coefficients.

edit flag offensive delete link more

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: 2012-10-22 19:26:25 +0200

Seen: 433 times

Last updated: Oct 23 '12