Determine domain and range of linear equation?
I was able to determine obtain this easily with, Wolfram Alpha: http://www.wolframalpha.com/input/?i=...
Is it possible with Sage 5.9?
I was able to determine obtain this easily with, Wolfram Alpha: http://www.wolframalpha.com/input/?i=...
Is it possible with Sage 5.9?
Though it is not created for that purpose, you can use interval arithmetics:
sage: f(x) = abs(x) - 4
sage: a = RIF(-infinity,infinity) ; a
[-infinity .. +infinity]
sage: a.parent()
Real Interval Field with 53 bits of precision
sage: f(a)
[-4.0000000000000000 .. +infinity]
Here you get the exact result, but note that in general, you will only get an interval that contains the image of the function.
Whoops! Stupid answer deleted. :-/
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-06-22 17:08:35 +0100
Seen: 1,764 times
Last updated: Jun 23 '13