Ask Your Question
0

Simplify an expression in symbolic matrix

asked 1 year ago

updated 1 year ago

I have the following vector: (-(q + 1/q)*q^2 + q^3 + q, 0, 0, 0, 0, 0, 0, 0) Which command should I use to make the above vector simplify to (0, 0, 0, 0, 0, 0, 0, 0) I tried .simplify_full and .simplify_rational, but it didn't work.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 1 year ago

Max Alekseyev gravatar image

updated 1 year ago

First off, .simplify_full() does work for me - like in this example:

q = var('q')
v = vector( (-(q + 1/q)*q^2 + q^3 + q, 0, 0, 0, 0, 0, 0, 0) )
print( v.simplify_full() )

Alternatively, you can explicitly apply .simplify_full() to each element:

print( v.apply_map(lambda t: t.full_simplify()) )
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

1 follower

Stats

Asked: 1 year ago

Seen: 167 times

Last updated: Sep 04 '23