First time here? Check out the FAQ!

Ask Your Question
1

Order of variable for simplification

asked 3 years ago

Studentaaaaaaaa gravatar image

updated 3 years ago

Let's say I have two variables x, q. When I use simplify_full(), how do I make sure the final expression is ordered as monomial of X instead of q? For example, let f=q^2+x+1, g=qx+1. Somehow if I use simplify_full() to simplify fg, then the monomial is of the following form (expression in terms of x)q^3+(expression in terms of x)q^2...

But actually I regard x as the variable, q as power of prime number. So I wish to order the expression like: (expression in terms of q)X^2+(expression in terms of q)X+(expression in terms of q)

Thanks!

Preview: (hide)

Comments

Welcome to Ask Sage! Thank you for your question.

slelievre gravatar imageslelievre ( 3 years ago )

Ideally, add the simplest example illustrating your question.

slelievre gravatar imageslelievre ( 3 years ago )

@slelievre Thanks! I just edited the question.

Studentaaaaaaaa gravatar imageStudentaaaaaaaa ( 3 years ago )

Great. You might even include the code you have so far.

slelievre gravatar imageslelievre ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 3 years ago

eric_g gravatar image

I guess you should use

(f*g).expand().collect(x)

See x.collect? for more information.

Preview: (hide)
link

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: 3 years ago

Seen: 196 times

Last updated: Nov 17 '21