Ask Your Question
2

Testing inequalities in sage

asked 2013-07-26 08:22:04 +0200

ensaba gravatar image

updated 2023-01-09 23:59:42 +0200

tmonteil gravatar image

I wanted to show if: $$ |a+b| \leq |a| + |b|$$

So I wrote this in sage:

var('a','b')
eqn1=abs(a+b)
eqn2=abs(a)+abs(b)
bool(eqn1<=eqn2)

The result is False.

I had expected the result to be True. What is the correct way to test this in sage?

Thank you in advance for any help provided.

edit retag flag offensive close merge delete

Comments

Interesting, $bool(abs(a) >= a)$ is $True$, but $bool(abs(a+b) >= (a+b))$ is $False$. Weird.

rickhg12hs gravatar imagerickhg12hs ( 2013-07-26 16:43:32 +0200 )edit

Also, assume(a<0,b>0) results in false too: http://pastebin.com/7Gg5xMA8

ensaba gravatar imageensaba ( 2013-07-26 17:00:46 +0200 )edit

If it can't be determined whether a relation holds, `False` will be returned.

Eviatar Bach gravatar imageEviatar Bach ( 2013-07-26 21:54:52 +0200 )edit

This is disturbing: $$assume(a, 'real')$$ $$assume(b, 'real')$$ $$bool(sqrt((a+b)^2) == sqrt(a^2) + sqrt(b^2))$$ is $$True$$ ????

rickhg12hs gravatar imagerickhg12hs ( 2013-07-26 22:59:43 +0200 )edit

@eviatar-bach returning False in case can't be determined whether a relation holds seems to me unwise ; This should be changed to a tristate-answer, whatever the third state is

jack77 gravatar imagejack77 ( 2013-07-27 20:49:32 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2013-07-31 10:43:47 +0200

tmonteil gravatar image

updated 2017-04-20 00:54:59 +0200

As explained in this answer, there is currently no way for Sage to say "I do not know the result", hence the answer 'False', which means 'False or Unknown'.

EDIT See trac ticket 17700

edit flag offensive delete link more

Comments

2

but it should!

jack77 gravatar imagejack77 ( 2013-07-31 20:31:28 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

3 followers

Stats

Asked: 2013-07-26 08:22:04 +0200

Seen: 1,078 times

Last updated: Apr 20 '17