Ask Your Question
1

Graphing inequality on a number line?

asked 2014-08-18 22:11:18 +0200

I can certainly get the solution set for $x^2 - 9 \geq 0$, but how do I get this solution set visualized on a number line?

edit retag flag offensive close merge delete

Comments

1-d plots are not implemented - see http://trac.sagemath.org/ticket/9793

kcrisman gravatar imagekcrisman ( 2014-08-19 00:14:01 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2014-08-19 00:44:46 +0200

tmonteil gravatar image

updated 2014-08-19 00:49:01 +0200

You can get the characteristic function of the solution set (which is a list of lists of symbolic elements) as follows:

sage: s = solve(x^2 - 9 >= 0, x)
sage: f = lambda t : min(1, sum([bool(i[0](t)) for i in s]))

and then plot it to see the solution set:

sage: plot(f,-10,10)

or even:

sage: plot(f,-10,10, fill='axis')
edit flag offensive delete link more

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: 2014-08-18 22:11:18 +0200

Seen: 540 times

Last updated: Aug 19 '14