Ask Your Question
0

comparing Expressions in python

asked 12 years ago

SLOtoSF gravatar image

updated 10 years ago

FrédéricC gravatar image

Hi,

I have an Expression I want to compare:

var('x,y')
x+y == x+y

But this does not return True. Why?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 12 years ago

DSM gravatar image

updated 12 years ago

It works for me:

sage: var("x, y")
(x, y)
sage: x+y == x+y
x + y == x + y
sage: bool(x+y == x+y)
True
sage: if (x+y == x+y):
....:     print 'yep!'
....:     
yep!

Unless you mean that you want bool to be automatically applied to every equation? Since Sage follows the convention that "False" means "I couldn't see how to prove this was true", this would mean that pretty much every equation would automatically be False from the get-go and so you couldn't do anything with it. For example, (x-2)*(x+3) == 0 would be False (x could be 9, after all).

Preview: (hide)
link

Comments

Thanks! I didn't know about bool(). What is the advantage of not automatically applying it?

SLOtoSF gravatar imageSLOtoSF ( 12 years ago )

@SLOtoSF: apparently I didn't explain well enough -- that's what my last paragraph was trying to explain. If you automatically applied it, you could never manipulate an equation because it'd be a bool instantly. No substitutions, no simplifications, nothing.

DSM gravatar imageDSM ( 12 years ago )

I see. Totally makes sense. Thanks.

SLOtoSF gravatar imageSLOtoSF ( 12 years 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: 12 years ago

Seen: 862 times

Last updated: Oct 28 '12